@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------------------------------------------------
   Design tokens
--------------------------------------------------- */
:root {
  /* Brand colors — sampled/derived from the ProLawn logo */
  --c-brand-950: #022916;   /* logo background green */
  --c-brand-900: #06341c;
  --c-brand-800: #0b4a27;
  --c-brand-700: #0f5c30;
  --c-brand-600: #15803d;   /* primary interactive green (AA on white) */
  --c-brand-500: #1f9d4c;
  --c-brand-400: #3bb868;
  --c-gold-600:  #b3811f;
  --c-gold-500:  #c9962c;

  --c-ink:    #0b1f14;
  --c-muted:  #4b5d53;
  --c-muted-2:#6b7d73;

  --c-bg:       #ffffff;
  --c-bg-soft:  #f3f8f4;
  --c-bg-soft-2:#eaf3ec;
  --c-surface:  #ffffff;
  --c-border:   #e0e9e3;

  --c-on-brand: #ffffff;

  --font-head: 'Barlow Semi Condensed', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(3, 20, 11, 0.06), 0 1px 1px rgba(3,20,11,0.04);
  --shadow-md: 0 8px 24px rgba(3, 20, 11, 0.10);
  --shadow-lg: 0 20px 48px rgba(3, 20, 11, 0.16);

  --container: 1180px;
  --dur-fast: 150ms;
  --dur-med: 250ms;
  --ease: cubic-bezier(.4,0,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------
   Reset & base
--------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; margin: 0; color: var(--c-brand-950); }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--c-gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

section { padding-block: var(--space-9); }
@media (max-width: 720px) {
  section { padding-block: var(--space-7); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--c-brand-600);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--c-gold-500);
  display: inline-block;
}

.section-head {
  max-width: 620px;
  margin-bottom: var(--space-7);
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-head p { margin-top: var(--space-3); color: var(--c-muted); font-size: 17px; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------------------------------------------------
   Buttons
--------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15.5px;
  border: 2px solid transparent;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary {
  background: var(--c-gold-500);
  color: var(--c-brand-950);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #d9a739; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

.btn-solid {
  background: var(--c-brand-600);
  color: #fff;
}
.btn-solid:hover { background: var(--c-brand-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ---------------------------------------------------
   Header / Nav
--------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-5);
  padding-block: var(--space-3);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-self: start;
}
.brand img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: var(--space-4);
  white-space: nowrap;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--c-ink);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.nav-links a:hover { color: var(--c-brand-600); border-color: var(--c-gold-500); }

.nav-actions { display: flex; align-items: center; gap: var(--space-4); justify-self: end; white-space: nowrap; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-brand-800);
  white-space: nowrap;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--c-brand-600); flex: none; }
.nav-links .nav-phone-mobile-only { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--c-brand-950);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #fff;
    padding: var(--space-4) var(--space-5) var(--space-6);
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease);
    white-space: normal;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 4px; border-bottom: 1px solid var(--c-border); }
  .nav-links .nav-phone-mobile-only { display: flex; margin-top: var(--space-2); }
  .nav-actions .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 460px) {
  .nav-actions .btn { padding: 12px 18px; font-size: 14.5px; }
}

/* ---------------------------------------------------
   Hero
--------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero picture, .hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(2,41,22,0.92) 0%, rgba(2,41,22,0.78) 32%, rgba(2,41,22,0.42) 62%, rgba(2,41,22,0.30) 100%),
    linear-gradient(0deg, rgba(2,41,22,0.55), rgba(2,41,22,0));
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-9);
}
.hero-content { max-width: 640px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: var(--space-5);
}
.hero-badge svg { width: 16px; height: 16px; color: var(--c-gold-500); }
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 60px);
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-gold-500);
}
.hero-sub {
  margin-top: var(--space-4);
  font-size: 18px;
  color: rgba(255,255,255,0.86);
  max-width: 520px;
}
.hero-ctas {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero-meta {
  margin-top: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5) var(--space-7);
}
.hero-meta div { display: flex; align-items: center; gap: var(--space-2); font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.92); }
.hero-meta svg { width: 19px; height: 19px; color: var(--c-gold-500); flex: none; }

/* ---------------------------------------------------
   Trust strip
--------------------------------------------------- */
.trust-strip {
  background: var(--c-brand-950);
  padding-block: var(--space-6);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  color: #fff;
}
.trust-item .ic {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}
.trust-item svg { width: 22px; height: 22px; color: var(--c-gold-500); }
.trust-item strong { display: block; font-size: 15px; font-weight: 700; }
.trust-item span { font-size: 13.5px; color: rgba(255,255,255,0.68); }

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------
   Services
--------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .thumb { height: 190px; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: var(--space-5); }
.service-card .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: var(--c-bg-soft-2);
  margin-top: -48px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--c-border);
}
.service-card .ic svg { width: 24px; height: 24px; color: var(--c-brand-600); }
.service-card h3 { font-size: 21px; margin-top: var(--space-4); }
.service-card p { margin-top: var(--space-2); color: var(--c-muted); font-size: 15px; }
.service-card ul { margin-top: var(--space-4); display: flex; flex-direction: column; gap: 8px; }
.service-card li { display: flex; gap: 8px; align-items: flex-start; font-size: 14.5px; color: var(--c-ink); }
.service-card li svg { width: 17px; height: 17px; color: var(--c-brand-600); flex: none; margin-top: 2px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   Before / After
--------------------------------------------------- */
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ba-panel { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ba-panel img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}
.ba-tag.before { background: rgba(11,15,13,0.72); }
.ba-tag.after { background: var(--c-brand-600); }

@media (max-width: 720px) {
  .ba-wrap { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   Gallery
--------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: var(--space-3);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  grid-column: span 3;
  grid-row: span 2;
}
.gallery-item.wide { grid-column: span 4; }
.gallery-item.tall { grid-row: span 3; }
.gallery-item.narrow { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(2,20,11,0.86), rgba(2,20,11,0));
  color: #fff;
}
.gallery-caption .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  margin-bottom: 6px;
}
.gallery-caption .label.before { background: rgba(255,255,255,0.18); }
.gallery-caption .label.after { background: var(--c-brand-600); }
.gallery-caption strong { display: block; font-size: 14.5px; font-weight: 700; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item, .gallery-item.wide, .gallery-item.narrow { grid-column: span 1; grid-row: span 2; }
}

.gallery-grid.condensed {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: unset;
}
.gallery-grid.condensed .gallery-item {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 4 / 5;
}

@media (max-width: 720px) {
  .gallery-grid.condensed { grid-template-columns: 1fr; }
  .gallery-grid.condensed .gallery-item { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------
   About
--------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
}
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-badge {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge svg { width: 30px; height: 30px; color: var(--c-brand-600); flex: none; }
.about-badge strong { display: block; font-size: 15px; color: var(--c-brand-950); }
.about-badge span { font-size: 13px; color: var(--c-muted); }

.about-list { margin-top: var(--space-6); display: grid; gap: var(--space-4); }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list .ic {
  flex: none; width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--c-bg-soft-2);
  border: 1px solid var(--c-border);
}
.about-list svg { width: 19px; height: 19px; color: var(--c-brand-600); }
.about-list strong { display: block; font-size: 15.5px; color: var(--c-brand-950); }
.about-list p { font-size: 14.5px; color: var(--c-muted); margin-top: 2px; }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   Service area
--------------------------------------------------- */
.area-section { background: var(--c-brand-950); color: #fff; }
.area-section .eyebrow { color: var(--c-gold-500); }
.area-section .section-head h2 { color: #fff; }
.area-section .section-head p { color: rgba(255,255,255,0.72); }
.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-5); }
.area-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
}
.area-chips svg { width: 15px; height: 15px; color: var(--c-gold-500); }
.area-counties { margin-top: var(--space-5); color: rgba(255,255,255,0.72); font-size: 14.5px; }
.area-counties strong { color: #fff; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.05); }

@media (max-width: 900px) {
  .area-wrap { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   Quote / Contact
--------------------------------------------------- */
.quote-section { background: var(--c-bg-soft); }
.quote-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.quote-side {
  background: var(--c-brand-950);
  color: #fff;
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-side h2 { color: #fff; font-size: 28px; }
.quote-side p { color: rgba(255,255,255,0.76); margin-top: var(--space-3); font-size: 15px; }
.quote-contact { margin-top: var(--space-7); display: grid; gap: var(--space-4); }
.quote-contact a, .quote-contact div { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.quote-contact svg { width: 20px; height: 20px; color: var(--c-gold-500); flex: none; }
.quote-form { padding: var(--space-7); }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--c-brand-950); }
.field .req { color: var(--c-gold-600); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-border);
  background: #fff;
  color: var(--c-ink);
  font-size: 15px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--c-brand-600);
  box-shadow: 0 0 0 4px rgba(21,128,61,0.14);
  outline: none;
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field-error {
  display: none;
  align-items: center;
  gap: 6px;
  color: #b42318;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}
.field-error svg { width: 15px; height: 15px; flex: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b42318; }
.field.invalid .field-error { display: flex; }

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  margin-bottom: var(--space-4);
}
.form-alert svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.form-alert.success { background: #ecfdf3; color: #05603a; border: 1px solid #a6e9c5; }
.form-alert.error { background: #fef3f2; color: #b42318; border: 1px solid #fda29b; }
.form-alert.show { display: flex; }

@media (max-width: 900px) {
  .quote-wrap { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
.site-footer {
  background: #04170d;
  color: rgba(255,255,255,0.72);
  padding-block: var(--space-8) var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-7);
}
.footer-mark { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-4); }
.footer-mark img { height: 40px; width: 40px; background: #fff; border-radius: 50%; padding: 2px; }
.footer-mark span { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: #fff; letter-spacing: .01em; }
.footer-mark span em { font-style: normal; color: var(--c-gold-500); }
.footer-brand p { font-size: 14.5px; max-width: 320px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: var(--space-4); font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14.5px; transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover { color: var(--c-gold-500); }
.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* ---------------------------------------------------
   Utilities
--------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-brand-950);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
