/* ==========================================================================
   ELEVATED ROOFING PARTNERS — main.css
   CSS Variables, Reset, Typography, Utilities
   Light Theme — Accessible & Modern for 45+ ICP
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (BRAND TOKENS)
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors — Light, Clean & Professional */
  --color-bg:           #FAFAF8;    /* main page background — warm white */
  --color-bg-alt:       #F0EDE8;    /* alternating section — warm cream */
  --color-surface:      #FFFFFF;    /* cards, elevated surfaces */
  --color-charcoal:     #151517;    /* dark sections, footer, dark accents */
  --color-charcoal-dk:  #0A0A0B;    /* deepest dark — footer bottom bar */
  --color-gold:         #C5A059;    /* brand gold — primary accent */
  --color-olive:        #4A5D23;    /* brand olive — secondary accent */
  --color-od-green:     #7B7536;    /* OD green — military accent */
  --color-white:        #FFFFFF;
  --color-offwhite:     #F0EDE8;

  /* Derived / UI Colors */
  --color-gold-hover:       #B8913D;
  --color-olive-hover:      #3B4B1A;
  --color-od-green-hover:   #656220;    /* darker OD green for hover states */
  --color-charcoal-90:      rgba(21, 21, 23, 0.92);
  --color-charcoal-55:      rgba(21, 21, 23, 0.55);
  --color-text-primary:     #1C1C1E;   /* default body text — near-black */
  --color-text-muted:       #5A5A5A;   /* secondary / descriptor text */
  --color-warmgray:         #B5B1AC;   /* muted light text on dark backgrounds */
  --color-border:           rgba(21, 21, 23, 0.12);
  --color-border-light:     rgba(197, 160, 89, 0.25);

  /* Typography — Space Grotesk + DM Sans */
  --font-heading: 'Space Grotesk', 'Arial', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --font-weight-regular:   400;
  --font-weight-medium:    500;
  --font-weight-semibold:  600;
  --font-weight-extrabold: 800;

  /* Type Scale — Bumped up ~1–2px across the board for 45+ readability */
  --text-xs:   0.8125rem;   /* 13px */
  --text-sm:   0.9375rem;   /* 15px */
  --text-base: 1.0625rem;   /* 17px */
  --text-lg:   1.1875rem;   /* 19px */
  --text-xl:   1.3125rem;   /* 21px */
  --text-2xl:  1.5625rem;   /* 25px */
  --text-3xl:  1.9375rem;   /* 31px */
  --text-4xl:  2.375rem;    /* 38px */
  --text-5xl:  3.125rem;    /* 50px */
  --text-6xl:  3.875rem;    /* 62px */

  /* Spacing Scale */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Section Padding */
  --section-padding-y: var(--space-20);
  --section-padding-x: var(--space-6);

  /* Container */
  --container-max:     1200px;
  --container-wide:    1400px;
  --container-narrow:  800px;
  --container-padding: var(--space-6);

  /* Border Radius — soft corners for approachable feel */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* Shadows — light, clean */
  --shadow-sm:        0 1px 4px rgba(21, 21, 23, 0.06);
  --shadow-md:        0 4px 18px rgba(21, 21, 23, 0.09);
  --shadow-lg:        0 10px 36px rgba(21, 21, 23, 0.12);
  --shadow-card-hover:0 8px 28px rgba(21, 21, 23, 0.11);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Navigation */
  --nav-height:        80px;
  --nav-height-mobile: 66px;

  /* Letter Spacing */
  --tracking-heading: 0.05em;
  --tracking-eyebrow: 0.12em;
  --tracking-wide:    0.07em;

  /* Z-Index Scale */
  --z-base:    0;
  --z-above:   10;
  --z-nav:     100;
  --z-overlay: 200;
  --z-modal:   300;
}

/* --------------------------------------------------------------------------
   2. MODERN CSS RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY — BASE STYLES
   -------------------------------------------------------------------------- */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--color-text-primary);
}

h1 { font-size: var(--text-4xl); line-height: 1.0; }
h2 { font-size: var(--text-3xl); line-height: 1.0; }
h3 { font-size: var(--text-2xl); line-height: 1.05; }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

/* Tablet+ typography */
@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
  h3 { font-size: var(--text-3xl); }
}

/* Desktop typography */
@media (min-width: 1024px) {
  h1 { font-size: var(--text-6xl); }
  h2 { font-size: var(--text-4xl); }
  h3 { font-size: var(--text-3xl); }
}

/* Body text */
p {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-text-muted);
}

p + p {
  margin-top: var(--space-4);
}

/* Lead / intro paragraph */
.text-lead {
  font-size: var(--text-lg);
  line-height: 1.7;
  font-weight: var(--font-weight-regular);
}

@media (min-width: 768px) {
  .text-lead { font-size: var(--text-xl); }
}

/* Strong / emphasis */
strong,
b {
  font-weight: var(--font-weight-semibold);
}

/* --------------------------------------------------------------------------
   4. EYEBROW TEXT
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--color-od-green);
  margin-bottom: var(--space-4);
}

/* --------------------------------------------------------------------------
   5. SECTION HEADING WITH GOLD UNDERLINE ACCENT
   -------------------------------------------------------------------------- */
.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-3);
}

.section-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--color-gold);
  margin-top: var(--space-3);
}

/* Centered variant */
.section-heading--center {
  display: block;
  text-align: center;
}

.section-heading--center::after {
  margin-left: auto;
  margin-right: auto;
}

/* OD green underlines on light-background sections */
.section--white .section-heading::after,
.section--offwhite .section-heading::after {
  background-color: var(--color-od-green);
}

/* Light headings (used on dark background sections) */
.section-heading--light {
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   6. CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--wide   { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }

/* --------------------------------------------------------------------------
   7. SECTION WRAPPERS
   -------------------------------------------------------------------------- */
.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

@media (max-width: 767px) {
  .section {
    padding-top: var(--space-10, 40px);
    padding-bottom: var(--space-10, 40px);
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--space-32);
    padding-bottom: var(--space-32);
  }
}

/* Background variants */
.section--white    { background-color: var(--color-white); }
.section--offwhite { background-color: var(--color-bg-alt); }
.section--surface  { background-color: var(--color-bg); }

/* Dark section — stays dark as accent/contrast */
.section--charcoal {
  background-color: var(--color-charcoal);
}

/* Force light text inside dark sections */
.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4,
.section--charcoal h5,
.section--charcoal h6 {
  color: #F4F4F0;
}

.section--charcoal p {
  color: rgba(244, 244, 240, 0.72);
}

.section--charcoal .eyebrow {
  color: var(--color-gold);
}

/* Gold section */
.section--gold {
  background-color: var(--color-gold);
}

.section--gold h1,
.section--gold h2,
.section--gold h3,
.section--gold h4,
.section--gold h5,
.section--gold h6,
.section--gold p {
  color: var(--color-charcoal);
}

/* --------------------------------------------------------------------------
   8. SECTION INTRO BLOCK
   -------------------------------------------------------------------------- */
.section-intro {
  max-width: 680px;
  margin-bottom: var(--space-12);
}

.section-intro--center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-intro p {
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   9. IMAGE PLACEHOLDER SYSTEM
   -------------------------------------------------------------------------- */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-alt);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-extrabold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  text-align: center;
  padding: var(--space-6);
  min-height: 240px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.img-placeholder--hero {
  min-height: 100vh;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
}

/* Hide placeholder when a real background image is set on the parent */
.hero__bg[style] .img-placeholder--hero { display: none; }

.img-placeholder--project { min-height: 280px; width: 100%; }
.img-placeholder--team    { min-height: 320px; width: 100%; }
.img-placeholder--service { min-height: 220px; width: 100%; }

/* --------------------------------------------------------------------------
   10. HERO SECTIONS
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Slightly lighter overlay than dark theme so images are more vibrant */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 21, 23, 0.72) 0%,
    rgba(21, 21, 23, 0.45) 100%
  );
  z-index: 1;
}

/* About hero: bottom-heavy gradient so faces stay visible up top */
.hero--about .hero__bg::after {
  background: linear-gradient(
    to bottom,
    rgba(21, 21, 23, 0.18) 0%,
    rgba(21, 21, 23, 0.35) 40%,
    rgba(21, 21, 23, 0.75) 70%,
    rgba(21, 21, 23, 0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-16);
}

.hero__content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero typography — white on dark bg (always) */
.hero h1 {
  color: #F4F4F0;
  max-width: 26ch;
  margin-bottom: var(--space-6);
}

@media (max-width: 479px) {
  .hero h1 { max-width: 20ch; }
}

.hero .eyebrow { color: var(--color-gold); }

.hero__content p {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero .hero__subtext {
  font-size: var(--text-base);
  max-width: 540px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

@media (max-width: 479px) {
  .hero .hero__subtext { font-size: var(--text-sm); }
}

@media (min-width: 768px) {
  .hero .hero__subtext { font-size: var(--text-lg); }
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero__bullets li {
  padding-left: var(--space-6);
  position: relative;
  font-size: var(--text-lg);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}

.hero__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
}

/* Sub-page hero (shorter) */
.hero--sub {
  min-height: 52vh;
}

.hero--sub .hero__content {
  padding-bottom: var(--space-20);
}

/* About hero: taller so text sits well below faces */
.hero--about {
  min-height: 68vh;
}

.hero--sub h1 { font-size: var(--text-4xl); }
@media (min-width: 768px) {
  .hero--sub h1 { font-size: var(--text-5xl); }
}

/* --------------------------------------------------------------------------
   11. TRUST BAR
   -------------------------------------------------------------------------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  margin-top: var(--space-8);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-extrabold);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: rgba(255, 255, 255, 0.80);
}

.trust-bar__item::before {
  content: '✓';
  color: var(--color-gold);
  font-size: var(--text-sm);
}

@media (max-width: 479px) {
  .trust-bar {
    gap: var(--space-3) var(--space-5);
  }
  .trust-bar__item {
    font-size: 0.65rem;
  }
}

/* --------------------------------------------------------------------------
   12. STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background-color: var(--color-charcoal);
  border-top: 3px solid var(--color-gold);
}

@media (min-width: 768px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
}

.stats-bar__item {
  padding: var(--space-10) var(--space-6);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-bar__item:last-child { border-right: none; }

@media (min-width: 768px) {
  .stats-bar__item { border-bottom: none; }
}

.stats-bar__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-extrabold);
  font-size: var(--text-3xl);
  color: var(--color-gold);
  letter-spacing: var(--tracking-heading);
  line-height: 1;
  margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
  .stats-bar__number { font-size: var(--text-4xl); }
}

.stats-bar__label {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-sm);
  color: rgba(244, 244, 240, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   13. GRID UTILITIES
   -------------------------------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   14. SCROLL REVEAL ANIMATION SETUP
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transition: opacity var(--transition-slow), transform var(--transition-slow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-stagger > *:nth-child(1) { transition: opacity var(--transition-slow) 0ms,   transform var(--transition-slow) 0ms; }
  .reveal-stagger > *:nth-child(2) { transition: opacity var(--transition-slow) 80ms,  transform var(--transition-slow) 80ms; }
  .reveal-stagger > *:nth-child(3) { transition: opacity var(--transition-slow) 160ms, transform var(--transition-slow) 160ms; }
  .reveal-stagger > *:nth-child(4) { transition: opacity var(--transition-slow) 240ms, transform var(--transition-slow) 240ms; }
  .reveal-stagger > *:nth-child(5) { transition: opacity var(--transition-slow) 320ms, transform var(--transition-slow) 320ms; }
  .reveal-stagger > *:nth-child(6) { transition: opacity var(--transition-slow) 400ms, transform var(--transition-slow) 400ms; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   15. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-gold     { color: var(--color-gold); }
.text-white    { color: var(--color-white); }
.text-charcoal { color: var(--color-charcoal); }
.text-muted    { color: var(--color-text-muted); }

/* Hide <br> on mobile, show on desktop */
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: inline; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.items-center { align-items: center; }
.gap-4        { gap: var(--space-4); }
.gap-6        { gap: var(--space-6); }
.gap-8        { gap: var(--space-8); }

.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

.w-full    { width: 100%; }
.max-w-prose { max-width: 65ch; }

/* --------------------------------------------------------------------------
   16. STAR RATING
   -------------------------------------------------------------------------- */
.stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

/* --------------------------------------------------------------------------
   17. STATE BADGE (Olive — cities only)
   -------------------------------------------------------------------------- */
.state-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-extrabold);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background-color: var(--color-olive);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   18. CITIES LIST (coverage area inline list)
   -------------------------------------------------------------------------- */
.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-4);
  margin: var(--space-8) 0;
}

.cities-list__item {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.15s ease;
}

a.cities-list__item:hover {
  color: var(--color-gold);
}

.cities-list__separator {
  color: var(--color-gold);
  font-weight: var(--font-weight-extrabold);
}

/* --------------------------------------------------------------------------
   19. PROSE / ARTICLE BODY TEXT
   -------------------------------------------------------------------------- */
.prose {
  max-width: 72ch;
}

.prose p {
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

/* --------------------------------------------------------------------------
   20. WHY LIST (checklists on service pages)
   -------------------------------------------------------------------------- */
.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 700px;
}

.why-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-od-green);
  border-radius: var(--radius-md);
}

.why-list__icon {
  color: var(--color-od-green);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-extrabold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   ACCESSIBILITY — Skip Link & Focus Indicators
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-gold);
  color: var(--color-charcoal);
  padding: 8px 16px;
  z-index: 10000;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

.nav__hamburger:focus-visible,
.faq-item__question:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}
