/* ==========================================================================
   CHANTECLER CONSULTING — DESIGN SYSTEM (v2)
   ========================================================================== */

/* -------------------------------- RESET -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ----------------------------- DESIGN TOKENS ----------------------------- */
:root {
  /* Color — Forest family */
  --forest-900: #1A241D;
  --forest-800: #26352A;
  --forest-700: #3B4C3F;
  --forest-600: #667469;

  /* Color — Cream family */
  --cream-100: #FAF9F4;
  --cream-200: #F5F3EA;
  --border-200: #E8E5D9;

  /* Color — Lime family */
  --lime-500: #C8FF5A;
  --lime-600: #B8F23E;
  --lime-200: #DCFFA0;
  --lime-100: #EEFFD0;

  /* Color — Sage family */
  --sage-500: #A9B6A5;
  --sage-300: #CAD2C7;
  --sage-100: #E2E7DF;

  /* Text */
  --text-primary: #1E251F;
  --text-secondary: #667469;
  --text-disabled: #929C94;
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Iowan Old Style', 'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.75rem, 3.2rem + 3vw, 6.75rem);
  --fs-h1: clamp(2.25rem, 1.7rem + 2vw, 3.75rem);
  --fs-h2: clamp(1.75rem, 1.4rem + 1.2vw, 2.75rem);
  --fs-h3: clamp(1.375rem, 1.2rem + 0.6vw, 1.75rem);
  --fs-h4: clamp(1.125rem, 1.05rem + 0.3vw, 1.25rem);
  --fs-body-lg: clamp(1.0625rem, 1rem + 0.2vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-label: 0.8125rem;

  --lh-tight: 1.05;
  --lh-heading: 1.15;
  --lh-body: 1.6;

  --ls-eyebrow: 0.08em;

  /* Spacing scale (4px base) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-9: 4rem;
  --sp-10: 5rem;
  --sp-11: 6.5rem;
  --sp-12: 8rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.18s;
  --dur-base: 0.3s;
  --dur-slow: 0.6s;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Shadow (used sparingly) */
  --shadow-card: 0 1px 2px rgba(26, 36, 29, 0.04);
  --shadow-lift: 0 20px 40px -12px rgba(26, 36, 29, 0.18);
}

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

/* ------------------------------- BASE ------------------------------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  background: var(--cream-200);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--lh-heading);
  font-weight: 600;
  color: var(--forest-800);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 700; }

p { max-width: 38em; }
p.lead { font-size: var(--fs-body-lg); color: var(--text-secondary); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--forest-700);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-500);
  flex-shrink: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--forest-800);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.page-hero a:focus-visible,
.page-hero button:focus-visible {
  outline-color: var(--lime-500);
}

/* ------------------------------ LAYOUT ------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: 1440px; }

.section { padding-block: var(--sp-11); }
.section--tight { padding-block: var(--sp-9); }
@media (max-width: 768px) {
  .section { padding-block: var(--sp-9); }
  .section--tight { padding-block: var(--sp-7); }
}

.section--forest { background: var(--forest-800); color: var(--cream-200); }
.section--forest h2, .section--forest h3 { color: var(--cream-200); }
.section--forest p { color: var(--sage-300); }
.section--forest .eyebrow { color: var(--lime-500); }
.section--forest .eyebrow::before { background: var(--lime-500); }

.section--cream-light { background: var(--cream-100); }
.section--white { background: var(--white); }

.section-head { max-width: 42em; margin-bottom: var(--sp-8); }
.section-head > .eyebrow { margin-bottom: var(--sp-4); }
.section-head > h2 { margin-top: var(--sp-3); }
.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-6);
  max-width: none;
}
@media (max-width: 700px) {
  .section-head--split { flex-direction: column; align-items: flex-start; }
}

.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-7); }
}

/* ---------------------------- REVEAL ANIMATION ---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-group .reveal:nth-child(1) { transition-delay: 0.04s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.28s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------- BUTTONS -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn__arrow { transition: transform var(--dur-fast) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--lime-500); color: var(--text-primary); }
.btn--primary:hover { background: var(--lime-600); }

.btn--secondary { background: var(--forest-800); color: var(--cream-200); border-color: var(--forest-800); }
.btn--secondary:hover { background: var(--forest-900); border-color: var(--forest-900); }

.btn--tertiary { background: transparent; color: var(--forest-800); border-color: var(--forest-800); }
.btn--tertiary:hover { background: var(--forest-800); color: var(--cream-200); }

.btn--on-dark.btn--tertiary { color: var(--cream-200); border-color: var(--sage-500); }
.btn--on-dark.btn--tertiary:hover { background: var(--cream-200); color: var(--forest-900); border-color: var(--cream-200); }

.btn[disabled] { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 0.7rem 1.25rem; font-size: var(--fs-label); }

/* --------------------------------- TAGS --------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--lime-100);
  color: var(--forest-800);
}
.tag--sage { background: var(--sage-100); color: var(--forest-700); }
.tag--on-forest { background: rgba(245,243,234,0.14); color: var(--cream-100); }

/* -------------------------------- HEADER -------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 234, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border-200);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-4);
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-900);
  letter-spacing: -0.01em;
  line-height: 1;
}
.wordmark span { color: var(--forest-600); font-weight: 400; }

.nav-primary { display: flex; align-items: center; gap: var(--sp-8); }
.nav-primary__links { display: flex; gap: var(--sp-7); }
.nav-primary__links a {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--forest-700);
  padding-block: var(--sp-2);
}
.nav-primary__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 2px;
  background: var(--lime-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.nav-primary__links a:hover::after,
.nav-primary__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-primary__links a[aria-current="page"] { color: var(--forest-900); }

.header-actions { display: flex; align-items: center; gap: var(--sp-5); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest-900);
  position: relative;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--cream-200);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), visibility var(--dur-base);
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
.mobile-nav__links { display: flex; flex-direction: column; gap: var(--sp-5); margin-bottom: var(--sp-8); }
.mobile-nav__links a { font-family: var(--font-display); font-size: 2rem; color: var(--forest-900); }
.mobile-nav__meta { color: var(--text-secondary); font-size: var(--fs-small); }

@media (max-width: 860px) {
  .nav-primary__links { display: none; }
  .header-actions .btn--primary { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------------------------- PAGE HERO (photographic) ---------------------------- */
/*
  Full-width photographic hero. --hero-art holds the background photo for
  each page (hotlinked from Unsplash — see per-page rules below). The
  element is inset -12px and scaled slightly so the blur filter doesn't
  reveal soft edges at the viewport boundary.
*/
.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--cream-200);
  min-height: 62vh;
}
.page-hero--tall { min-height: 82vh; }

.page-hero__bg {
  position: absolute;
  inset: -12px;
  background-image: var(--hero-art);
  background-size: cover;
  background-position: var(--hero-pos, center);
  filter: blur(2.5px);
  transform: scale(1.03);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(26, 36, 29, 0.93) 0%,
    rgba(26, 36, 29, 0.82) 34%,
    rgba(26, 36, 29, 0.52) 66%,
    rgba(26, 36, 29, 0.22) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--sp-9) var(--sp-8);
}
.page-hero__content .eyebrow { color: var(--lime-500); }
.page-hero__content .eyebrow::before { background: var(--lime-500); }
.page-hero h1 { color: var(--cream-100); max-width: 17ch; margin-top: var(--sp-4); }
.page-hero p.lead { color: var(--sage-300); max-width: 34em; margin-top: var(--sp-5); }
.page-hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-7); }

/*
  Per-page hero photography. Hotlinked directly from Unsplash's CDN
  (images.unsplash.com) — free-tier Unsplash License photos, no
  attribution required. Each page uses a distinct, content-matched
  photo; none are reused across pages. See README.txt if these ever
  need to be swapped for locally-hosted files instead.
*/
.page-hero--home {
  /* Photo: Vitaly Gariev — team collaborating around a computer in an office */
  --hero-art: url('https://images.unsplash.com/photo-1758873268745-dd2cf0d677b5?fm=jpg&q=75&w=2000&auto=format&fit=crop');
}
.page-hero--vacatures {
  /* Photo: Christina @ wocintechchat.com — two women sitting on chair, in conversation */
  --hero-art: url('https://images.unsplash.com/photo-1573497620053-ea5300f94f21?fm=jpg&q=75&w=2000&auto=format&fit=crop');
  --hero-pos: center 30%;
}
.page-hero--werkgevers {
  /* Photo: Campaign Creators — man presenting to colleagues seated with laptops */
  --hero-art: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?fm=jpg&q=75&w=2000&auto=format&fit=crop');
}
.page-hero--over-ons {
  /* Photo: Vitaly Gariev — two women talking at a desk in an office */
  --hero-art: url('https://images.unsplash.com/photo-1758691737246-95bf8f09a997?fm=jpg&q=75&w=2000&auto=format&fit=crop');
  --hero-pos: center 35%;
}
.page-hero--contact {
  /* Photo: Vitaly Gariev — man talking on the phone at a desk */
  --hero-art: url('https://images.unsplash.com/photo-1758876204260-bdb299fa4374?fm=jpg&q=75&w=2000&auto=format&fit=crop');
  --hero-pos: center 30%;
}

@media (max-width: 640px) {
  .page-hero { min-height: 52vh; }
  .page-hero--tall { min-height: 62vh; }
  .page-hero h1 { max-width: 20ch; }
  .page-hero::after {
    background: linear-gradient(
      180deg,
      rgba(26, 36, 29, 0.9) 0%,
      rgba(26, 36, 29, 0.86) 55%,
      rgba(26, 36, 29, 0.62) 100%
    );
  }
}

/* -------------------------------- IMAGE BLOCK -------------------------------- */
/* Retained for future use once real photography is added to content sections. */
.media-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sage-100);
}
.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.media-block:hover img { transform: scale(1.035); }
.media-block--tall { aspect-ratio: 3 / 4; }
.media-block--wide { aspect-ratio: 16 / 10; }
.media-block--square { aspect-ratio: 1 / 1; }

/* ------------------------------- VACANCY CARD ------------------------------- */
.vacancy-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.vacancy-card:hover { transform: translateY(-4px); border-color: var(--forest-800); }

/*
  Vacancy card photo. Hotlinked from Unsplash's CDN, one distinct
  content-matched photo per role (see the img src in each HTML page).
*/
.vacancy-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sage-100);
}
.vacancy-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.vacancy-card:hover .vacancy-card__media img { transform: scale(1.05); }

.vacancy-card__body { padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); flex-grow: 1; }
.vacancy-card__tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.vacancy-card__title { font-size: 1.3rem; color: var(--forest-800); }
.vacancy-card__desc { color: var(--text-secondary); font-size: var(--fs-small); flex-grow: 1; }
.vacancy-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-2);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-200);
}
.vacancy-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--forest-900);
  transition: color var(--dur-base) var(--ease);
}
.vacancy-card__link svg { transition: transform var(--dur-fast) var(--ease); }
.vacancy-card:hover .vacancy-card__link svg { transform: translateX(4px); }
.vacancy-card:hover .vacancy-card__link { color: var(--forest-700); }
.vacancy-card__loc { font-size: var(--fs-label); color: var(--text-disabled); }

/* ------------------------------- CONTENT CARD ------------------------------- */
.content-card {
  background: var(--white);
  border: 1px solid var(--border-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-7);
}
.content-card--forest { background: var(--forest-800); color: var(--cream-200); border-color: var(--forest-800); }
.content-card--forest h3, .content-card--forest h4 { color: var(--cream-200); }
.content-card--forest p { color: var(--sage-300); }
.content-card__index {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--lime-500);
  line-height: 1;
  margin-bottom: var(--sp-4);
  display: block;
}

/* --------------------------------- STEPS --------------------------------- */
.step-list { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--sp-6);
  padding-block: var(--sp-7);
  border-top: 1px solid var(--border-200);
}
.step:first-child { border-top: none; }
.step__num { font-family: var(--font-display); font-size: 1.75rem; color: var(--sage-500); }
.step__title { margin-bottom: var(--sp-2); }
@media (max-width: 640px) { .step { grid-template-columns: 50px 1fr; } }

/* --------------------------------- CTA BAND --------------------------------- */
.cta-band {
  background: var(--forest-800);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-7);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--cream-200); max-width: 20em; }
.cta-band p { color: var(--sage-300); margin-top: var(--sp-3); }
.cta-band__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ---------------------------------- FORM ---------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label { font-size: var(--fs-label); font-weight: 700; color: var(--forest-800); }
.field label .req { color: var(--forest-600); font-weight: 400; }
.field input,
.field textarea {
  background: var(--white);
  border: 1.5px solid var(--border-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-size: var(--fs-body);
  color: var(--text-primary);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-disabled); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest-800);
  box-shadow: 0 0 0 3px var(--lime-100);
}
.field textarea { resize: vertical; min-height: 140px; }
.field.has-error input, .field.has-error textarea { border-color: #B3453B; }
.field__error { font-size: var(--fs-label); color: #B3453B; display: none; }
.field.has-error .field__error { display: block; }

.form-note { font-size: var(--fs-label); color: var(--text-secondary); margin-top: var(--sp-4); }
.form-note a { text-decoration: underline; color: var(--forest-800); }

.form-status {
  display: none;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-5);
  border-radius: var(--radius-md);
  margin-top: var(--sp-6);
  font-size: var(--fs-small);
}
.form-status.is-visible { display: flex; }
.form-status--success { background: var(--lime-100); color: var(--forest-900); }
.form-status--error { background: #F6E4E1; color: #6E2B23; }

.contact-form.is-submitted .form-fields,
.contact-form.is-submitted .form-note,
.contact-form.is-submitted .btn--submit { display: none; }

/* -------------------------------- FOOTER -------------------------------- */
.site-footer { background: var(--forest-900); color: var(--sage-300); }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-8);
  padding-block: var(--sp-10);
}
.site-footer__brand .wordmark { color: var(--cream-200); }
.site-footer__brand .wordmark span { color: var(--sage-500); }
.site-footer__brand p { margin-top: var(--sp-4); color: var(--sage-500); max-width: 26em; }
.site-footer h4 { color: var(--cream-100); font-size: var(--fs-label); text-transform: uppercase; letter-spacing: var(--ls-eyebrow); margin-bottom: var(--sp-4); }
.site-footer ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.site-footer a { font-size: var(--fs-small); color: var(--sage-300); transition: color var(--dur-fast) var(--ease); }
.site-footer a:hover { color: var(--lime-500); }
.site-footer address { font-style: normal; font-size: var(--fs-small); color: var(--sage-300); line-height: 1.7; }
.site-footer__bottom {
  border-top: 1px solid var(--forest-700);
  padding-block: var(--sp-5);
  font-size: var(--fs-label);
  color: var(--sage-500);
}

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

/* ------------------------------ SIMPLE FACT LINE ------------------------------ */
.stat-line { display: flex; gap: var(--sp-9); flex-wrap: wrap; padding-block: var(--sp-7); border-top: 1px solid var(--border-200); }
.stat-line__item { max-width: 24ch; }
.stat-line__item h4 { margin-bottom: var(--sp-2); }
.stat-line__item p { font-size: var(--fs-small); }

/* ------------------------------- LEGAL PAGES ------------------------------- */
.legal-content h2 { margin-top: var(--sp-9); margin-bottom: var(--sp-4); font-size: var(--fs-h3); }
.legal-content h3 { margin-top: var(--sp-6); margin-bottom: var(--sp-3); font-size: var(--fs-h4); }
.legal-content p { max-width: none; margin-bottom: var(--sp-4); color: var(--text-secondary); }
.legal-content ul { margin-bottom: var(--sp-4); padding-left: var(--sp-5); }
.legal-content li { list-style: disc; color: var(--text-secondary); margin-bottom: var(--sp-2); }
.legal-content strong { color: var(--forest-800); }
.legal-content .updated { color: var(--text-disabled); font-size: var(--fs-small); margin-bottom: var(--sp-8); }

/* --------------------------------- UTILITIES --------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -60px;
  background: var(--forest-800);
  color: var(--cream-200);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-md);
  z-index: 200;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }
