/* ============================================================
   last_edited: 2026-08-14T16:20:00Z

   Coerced UK - design tokens and component styles.
   Tokens are verbatim from the brand design system
   (branding/Coerced UK Design System (Reference).html).
   Grounds: exactly two - paper and indigo. No gradients, no
   textures. Motion: fades and small slides only, 120/200/320ms.
   ============================================================ */

/* ---------- Design tokens (verbatim from the design system) ---------- */
:root {
  /* Base palette */
  --indigo-900: #291780;
  --purple-500: #736db6;
  --blue-200: #abd2f6;
  --lavender-400: #a493b0;
  --teal-700: #3b6366;
  --ochre-600: #ab7011;
  --red-800: #741e1e;
  --ink-900: #1c1c1e;
  --paper-50: #f7f5f1;
  --white: #ffffff;

  /* Derived tints */
  --indigo-700: #3b2a9e;
  --indigo-100: #e6e2f6;
  --purple-100: #e9e8f5;
  --blue-100: #dceafb;
  --red-100: #f3e2e2;
  --ochre-100: #f2e8d7;
  --teal-100: #e0e9e9;
  --ink-600: #55555a;
  --ink-400: #8a8a90;
  --line-200: #e2ded6;

  /* Semantic aliases */
  --surface-page: var(--paper-50);
  --surface-card: var(--white);
  --surface-inverse: var(--indigo-900);
  --text-body: var(--ink-900);
  --text-muted: var(--ink-600);
  --text-faint: var(--ink-400);
  --text-on-inverse: var(--paper-50);
  --accent: var(--indigo-900);
  --accent-hover: var(--indigo-700);
  --accent-soft: var(--blue-200);
  --link: var(--indigo-900);
  --link-hover: var(--purple-500);
  --border-default: var(--line-200);
  --focus-ring: var(--purple-500);
  --danger: var(--red-800);
  --danger-soft: var(--red-100);
  --warning: var(--ochre-600);
  --positive: var(--teal-700);
  --positive-soft: var(--teal-100);
  --info: var(--purple-500);
  --info-soft: var(--purple-100);

  /* Typography */
  --font-display: 'Archivo', -apple-system, 'Helvetica Neue', sans-serif;
  --font-body: 'Archivo', -apple-system, 'Helvetica Neue', sans-serif;
  --font-script: 'Cedarville Cursive', cursive;
  --text-display-xl: clamp(32px, 5.6vw, 64px);
  --text-h1: clamp(26px, 3.6vw, 38px);
  --text-h2: 28px;
  --text-h3: 21px;
  --text-body-lg: 18px;
  --text-body-md: 16px;
  --text-body-sm: 14px;
  --text-caption: 12.5px;
  --tracking-display: -0.028em;
  --tracking-caps: 0.08em;
  --leading-display: 0.96;
  --leading-body: 1.6;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --container-max: 1120px;
  --measure: 68ch;
  --gutter: 24px;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --border-width: 1px;
  --border-width-strong: 2px;
  --shadow-raised: 0 4px 16px rgba(28, 28, 30, .10), 0 2px 4px rgba(28, 28, 30, .06);
  --shadow-overlay: 0 12px 40px rgba(28, 28, 30, .22);
  --focus-shadow: 0 0 0 3px rgba(115, 109, 182, .35);
  --ease-out: cubic-bezier(.22, .61, .36, 1);
  --dur-fast: 120ms;
  --dur-med: 200ms;
  --dur-slow: 320ms;
}

/* ---------- Self-hosted brand fonts ----------
   Archivo (latin, variable 400-900) and Cedarville Cursive (latin 400),
   downloaded from Google Fonts and served from this origin so no visitor
   traffic leaves the site. font-display: swap keeps text readable during
   load; the files are preloaded from index.html. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../assets/fonts/archivo-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Cedarville Cursive';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cedarville-cursive-latin.woff2') format('woff2');
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 132px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--leading-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
}

/* Links: indigo, shift to purple on hover, purple focus ring */
a { color: var(--link); text-underline-offset: 3px; }
a:hover { color: var(--link-hover); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus-shadow);
  border-radius: var(--radius-sm);
}

::selection { background: var(--blue-200); color: var(--ink-900); }

img { max-width: 100%; height: auto; }

/* Skip link: only visible when keyboard-focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--indigo-900);
  color: var(--paper-50);
  padding: var(--space-3) var(--space-4);
  z-index: 200;
}
.skip-link:focus { left: 0; color: var(--paper-50); }

/* Visually hidden but accessible to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Shared content width used by paper bands and footer rows */
.wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Typography helpers: script face is the survivor's voice only */
.script { font-family: var(--font-script); font-weight: 400; }
.script-lg { font-size: clamp(26px, 3.8vw, 40px); line-height: 1.28; }

/* Eyebrow labels: ALL-CAPS only for wordmark and eyebrows */
.eyebrow {
  margin: 0 0 var(--space-3);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow-inverse { color: var(--blue-200); }

/* ---------- Buttons (pill-shaped per design system) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 24px;
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:hover { color: var(--white); }
.btn:active { transform: scale(.98); }

/* Primary: indigo on paper. Hover darkens one step */
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); color: var(--white); }

/* Secondary: white card with ink border */
.btn-secondary { background: var(--surface-card); color: var(--ink-900); border-color: var(--ink-900); }
.btn-secondary:hover { border-color: var(--indigo-700); color: var(--indigo-700); }

/* Inverse: blue-200 on indigo (accent-soft inverse button) */
.btn-inverse { background: var(--accent-soft); color: var(--ink-900); }
.btn-inverse:hover { background: var(--white); color: var(--indigo-700); }

/* Ghost-inverse: outline button on indigo */
.btn-ghost-inverse { border-color: var(--paper-50); color: var(--paper-50); }
.btn-ghost-inverse:hover { background: rgba(255, 255, 255, .12); color: var(--white); }

/* Danger: deep red quick-exit button */
.btn-danger { background: var(--danger); color: var(--white); }
.btn-danger:hover { background: #5a1717; color: var(--white); }

/* Chip: small pill link used in the safety strip */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--indigo-900);
  color: var(--paper-50);
  font-size: var(--text-body-sm);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.chip:hover { background: var(--indigo-700); color: var(--paper-50); }

/* ---------- SECTION 00 - Header and safety strip ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-page);
  border-bottom: var(--border-width) solid var(--border-default);
}

/* Compact header row so the hero CTAs stay above the fold */
.header-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8px var(--gutter);
}

.wordmark { display: inline-flex; flex: 0 0 auto; }
.wordmark img { width: 148px; height: auto; display: block; }
.wordmark:hover { opacity: .85; }

/* Main nav: horizontal links, hidden behind a toggle on small screens */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-left: auto;
}
.site-nav a {
  font-weight: 700;
  font-size: var(--text-body-sm);
  text-decoration: none;
  letter-spacing: .01em;
}
.site-nav a:hover { color: var(--link-hover); text-decoration: underline; }

/* Quick exit is always visible, even when the nav collapses */
.quick-exit { margin-left: var(--space-3); flex: 0 0 auto; padding: 10px 18px; }

/* Mobile nav toggle: hidden on desktop */
.nav-toggle {
  display: none;
  margin-left: auto;
  padding: var(--space-2) var(--space-3);
  border: var(--border-width) solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 700;
  cursor: pointer;
}

/* Sticky safety strip: one line plus a get-help chip, kept short */
.safety-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  background: var(--indigo-100);
  border-top: var(--border-width) solid var(--border-default);
  padding: 6px var(--gutter);
  text-align: center;
}
.safety-strip-text { margin: 0; font-size: 13px; color: var(--ink-600); max-width: 72ch; }
.safety-strip-text a { color: var(--indigo-700); font-weight: 700; }

/* ---------- SECTION 01 - Hero (indigo, full bleed, compact) ---------- */
.hero {
  background: var(--surface-inverse);
  color: var(--text-on-inverse);
  padding: clamp(28px, 4vw, 48px) var(--gutter) clamp(32px, 4.5vw, 56px);
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

/* Founder's core charge: the page's opening indictment */
.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-display-xl);
  font-weight: 900;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
}
.hero-line { display: block; }

/* The unanswered question beneath the opening charge */
.hero-charge {
  margin: var(--space-5) 0 0;
  max-width: 28ch;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--blue-200);
}

/* Tagline in the survivor's script voice, with the hero scribble */
.hero-tagline {
  position: relative;
  display: inline-block;
  margin: var(--space-6) 0 var(--space-6);
}
.hero-tagline .script { margin: 0; font-size: clamp(22px, 2.6vw, 30px); color: var(--blue-200); }
.scribble {
  position: absolute;
  left: 8%;
  bottom: -50%;
  width: min(200px, 60vw);
  height: auto;
}

.hero-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ---------- SECTION 02 - Who we are + law/manipulation callouts ---------- */
.who-band {
  background: var(--surface-page);
  border-bottom: var(--border-width) solid var(--border-default);
  padding: var(--space-10) 0 var(--space-12);
}
.who-line {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.who-line a { font-weight: 700; }

/* Institution chips: police, courts, social services, finance, law */
.who-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
}
.who-chips li {
  padding: 6px 14px;
  border: var(--border-width-strong) solid var(--indigo-900);
  border-radius: var(--radius-pill);
  background: var(--surface-card);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--indigo-900);
}

/* Two icon boxes echoing the founder's note layout */
.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-10);
}
.callout-card {
  padding: var(--space-6);
  background: var(--surface-card);
  border: var(--border-width-strong) solid var(--indigo-900);
  border-radius: var(--radius-lg);
}
.callout-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
  border-radius: 50%;
  background: var(--indigo-900);
  color: var(--blue-200);
}
.callout-title {
  margin: 0 0 var(--space-3);
  font-size: var(--text-h3);
  font-weight: 800;
  letter-spacing: -0.015em;
  position: relative;
  display: inline-block;
}
/* Hand-drawn underline under each callout title */
.callout-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 6px;
  background: var(--blue-200);
  border-radius: 2px;
  transform: rotate(-1.2deg);
}
.callout-card p { margin: 0; color: var(--text-muted); font-size: var(--text-body-sm); }

/* ---------- Shared section scaffolding ---------- */
.band { padding: clamp(48px, 6vw, 80px) 0; }
.band-tint { background: var(--indigo-100); }

.section-head { max-width: 720px; margin-bottom: var(--space-10); }
.section-title {
  position: relative;
  display: inline-block;
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 900;
  letter-spacing: -0.022em;
  line-height: 1.08;
}
.section-title-inverse { color: var(--text-on-inverse); }
.section-lede {
  margin: 0;
  font-size: var(--text-body-lg);
  color: var(--text-muted);
  max-width: var(--measure);
}
.section-lede a { font-weight: 700; }
.section-link { margin: var(--space-8) 0 0; font-weight: 700; }

/* Hand-drawn underline sitting under selected section titles */
.title-scribble {
  display: block;
  width: min(280px, 70%);
  height: 14px;
  margin-top: 2px;
}

/* ---------- Hand-drawn layer: dashed rule ---------- */
.dashed-rule {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.dashed-rule span {
  display: block;
  border-top: 3px dashed var(--indigo-700);
  opacity: .4;
}

/* ---------- SECTION 03 - Latest findings ---------- */
.finding-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
}

/* Finding card: research document, not a marketing tile */
.finding-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-7, 28px) var(--space-6);
  border: var(--border-width-strong) solid;
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  min-height: 100%;
}
.finding-tone-report { border-color: var(--red-800); }
.finding-tone-warning { border-color: var(--ochre-600); }

.finding-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  background: var(--indigo-900);
  color: var(--paper-50);
}

.finding-title {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.finding-standfirst {
  margin: 0;
  font-size: var(--text-body-md);
  color: var(--text-muted);
  flex: 1;
}
.finding-meta {
  margin: 0;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.finding-meta-foot { margin-top: var(--space-6); }
.finding-meta-foot a { font-weight: 700; }

/* Compact dated list of further findings */
.finding-list {
  list-style: none;
  margin: var(--space-10) 0 0;
  padding: 0;
  border-top: var(--border-width) solid var(--ink-900);
}
.finding-list li {
  display: grid;
  grid-template-columns: 108px minmax(120px, auto) 1fr;
  align-items: baseline;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: var(--border-width) solid var(--border-default);
}
.finding-date {
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}
.finding-list-tag { background: var(--indigo-100); color: var(--indigo-900); justify-self: start; }
.finding-list a { font-weight: 700; font-size: var(--text-body-lg); text-decoration: none; }
.finding-list a:hover { text-decoration: underline; }

/* ---------- SECTION 04 - Omissions ledger + stat strip ---------- */
.omission-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Numbered ledger entry: number, institution, failing, consequence */
.omission-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-top: var(--border-width-strong) solid var(--ink-900);
}
.omission-item:last-child { border-bottom: var(--border-width-strong) solid var(--ink-900); }

.omission-number {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: var(--tracking-display);
  color: var(--indigo-900);
  line-height: 0.9;
}
.omission-body { min-width: 0; }
.omission-title {
  margin: 0 0 var(--space-2);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.omission-failing {
  margin: 0 0 var(--space-2);
  font-weight: 700;
  font-size: var(--text-body-lg);
  max-width: 58ch;
}
.omission-consequence { margin: 0; color: var(--text-muted); max-width: 58ch; }

/* Stat strip: three figures, each with a label and a source */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}
.stat-block {
  padding: var(--space-6) var(--space-5);
  background: var(--surface-card);
  border-top: 4px solid var(--indigo-900);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: var(--tracking-display);
  color: var(--indigo-900);
  line-height: 0.9;
}
.stat-label { margin: var(--space-3) 0 0; font-size: var(--text-body-sm); max-width: 30ch; }
.stat-source { margin: var(--space-3) 0 0; font-size: var(--text-caption); color: var(--text-muted); font-style: italic; }
.stat-source a { font-style: italic; }
.stat-note { margin: var(--space-5) 0 0; font-size: var(--text-caption); color: var(--text-muted); max-width: 72ch; }

/* ---------- SECTION 05 - Survivor voices (indigo, full bleed) ---------- */
.voices {
  background: var(--surface-inverse);
  color: var(--text-on-inverse);
  padding: clamp(56px, 7vw, 96px) 0;
}
.voices-inner { text-align: left; max-width: 900px; }

/* Lead pull quote: script hand plus a large decorative quotation mark */
.lead-quote {
  position: relative;
  margin: var(--space-8) 0 var(--space-10);
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
  background: rgba(171, 210, 246, .08);
  border-left: 4px solid var(--blue-200);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.quote-mark {
  position: absolute;
  top: -8px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  color: var(--blue-200);
  opacity: .35;
  pointer-events: none;
}
.lead-quote .script { margin: 0; color: var(--blue-200); position: relative; }
.lead-quote cite {
  display: block;
  margin-top: var(--space-5);
  font-style: normal;
  font-size: var(--text-caption);
  letter-spacing: .02em;
  color: var(--lavender-400);
}

/* Three supporting quote cards on the indigo ground */
.voice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-5);
}
.voice-card {
  margin: 0;
  padding: var(--space-6) var(--space-5);
  border-left: 3px solid var(--blue-200);
  background: rgba(247, 245, 241, .06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.voice-card p {
  margin: 0 0 var(--space-4);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.4;
}
.voice-card cite {
  font-style: normal;
  font-size: var(--text-caption);
  letter-spacing: .02em;
  color: var(--lavender-400);
}
.voice-card cite a { color: var(--blue-200); }

/* ---------- SECTION 06 - Share your story (red rule) ---------- */
.safety-card {
  border-left: 4px solid var(--danger);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--danger-soft);
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
  max-width: 760px;
  margin-bottom: var(--space-8);
}
.safety-card-title { margin: 0 0 var(--space-4); font-size: var(--text-h3); font-weight: 800; color: var(--danger); }
.safety-card-list { margin: 0; padding-left: var(--space-5); display: grid; gap: var(--space-3); }
.safety-card-list li { font-size: var(--text-body-md); }
.safety-card-list strong { color: var(--danger); }

.story-routes { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.story-note { margin: var(--space-4) 0 0; font-size: var(--text-caption); color: var(--text-muted); }

/* ---------- SECTION 07 - About, founder note and method ---------- */
/* Founder statement: paper card on the tinted band, script signature */
.founder-note {
  max-width: 760px;
  margin: 0 0 var(--space-10);
  padding: var(--space-8) var(--space-8) var(--space-6);
  background: var(--surface-card);
  border-top: 4px solid var(--indigo-900);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.founder-kicker {
  margin: 0 0 var(--space-4);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--indigo-900);
}
.founder-note p { margin: 0 0 var(--space-4); color: var(--text-muted); }
.founder-sign {
  margin: var(--space-4) 0 0;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--indigo-900);
  line-height: 1.1;
}
.founder-role {
  margin: var(--space-2) 0 0;
  font-size: var(--text-caption);
  font-weight: 700;
  color: var(--indigo-900);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.about-block {
  padding: 0;
  background: transparent;
  border: 0;
  border-top: var(--border-width-strong) solid var(--indigo-900);
  border-radius: 0;
  padding-top: var(--space-5);
}
.about-heading { margin: 0 0 var(--space-3); font-size: var(--text-h3); font-weight: 800; letter-spacing: -0.015em; }
.about-block p { margin: 0; color: var(--text-muted); }

/* ---------- SECTION 08 - Support signposting (teal, affirming) ---------- */
.band-support { background: var(--positive-soft); }
/* Support grid: the danger card and the final local-services card each
   span the full width so the 4 items never leave a ragged empty cell */
.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-5);
}
.support-block {
  padding: var(--space-6);
  background: var(--surface-card);
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-lg);
}
.support-danger {
  grid-column: 1 / -1;
  border-color: var(--danger);
  border-width: var(--border-width-strong);
  background: var(--surface-card);
}
.support-grid .support-block:last-child { grid-column: 1 / -1; }
.support-danger .support-heading { color: var(--danger); }
.support-heading { margin: 0 0 var(--space-3); font-size: var(--text-h3); font-weight: 800; letter-spacing: -0.015em; }
.support-block p { margin: 0; max-width: 62ch; }
.support-list { margin: 0; padding-left: var(--space-5); display: grid; gap: var(--space-3); font-size: var(--text-body-sm); }

/* ---------- SECTION 09 - Contact, split by audience ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.contact-card {
  padding: var(--space-6) 0 0;
  background: transparent;
  border: 0;
  border-top: var(--border-width-strong) solid var(--indigo-900);
}
.contact-index {
  margin: 0 0 var(--space-3);
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  color: var(--indigo-900);
}
.contact-heading { margin: 0 0 var(--space-3); font-size: var(--text-h2); font-weight: 800; letter-spacing: -0.02em; }
.contact-card p { margin: 0 0 var(--space-5); font-size: var(--text-body-sm); color: var(--text-muted); }
.contact-mail { font-weight: 700; word-break: break-all; }

/* General message form: front-end only, routing connects in a later stage */
.contact-form { max-width: 640px; margin-top: var(--space-12); display: grid; gap: var(--space-3); }
.contact-form label { font-weight: 700; font-size: var(--text-body-sm); }
.contact-form textarea {
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  padding: var(--space-4);
  border: var(--border-width) solid var(--ink-900);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  resize: vertical;
  min-height: 140px;
}
.form-note { margin: 0; font-size: var(--text-caption); color: var(--text-muted); }
.form-note a { font-weight: 700; }
.form-feedback { margin: 0; font-size: var(--text-body-sm); font-weight: 700; color: var(--positive); }
.form-feedback-inverse { color: var(--blue-200); }

/* ---------- SECTION 10 - Newsletter and footer (indigo) ---------- */
.site-footer {
  background: var(--surface-inverse);
  color: var(--text-on-inverse);
}
.newsletter {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: var(--space-10);
  text-align: left;
}
.newsletter-lede {
  margin: 0;
  max-width: 36ch;
  font-size: var(--text-body-lg);
  color: var(--lavender-400);
}

/* Subscribe row: email field + button, front-end only */
.newsletter-form {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  max-width: 520px;
  margin: var(--space-6) 0 var(--space-3);
}
.newsletter-form input {
  flex: 1 1 240px;
  padding: 14px 20px;
  border: var(--border-width) solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  background: rgba(247, 245, 241, .12);
  color: var(--paper-50);
}
.newsletter-form input::placeholder { color: var(--lavender-400); }
.newsletter-form input:focus { background: rgba(247, 245, 241, .2); }
.newsletter-note { margin: 0; font-size: var(--text-caption); color: var(--lavender-400); }

/* Footer row: wordmark, privacy, copyright, repeated quick exit */
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: var(--space-8);
  padding-bottom: var(--space-10);
  border-top: var(--border-width) solid rgba(247, 245, 241, .2);
}
.footer-wordmark { width: 180px; }
.footer-links { display: flex; gap: var(--space-3); font-size: var(--text-body-sm); color: var(--lavender-400); }
.footer-links a { color: var(--paper-50); }
.footer-links a:hover { color: var(--blue-200); }

/* ---------- Legal pages (privacy, terms) ---------- */
.legal-content {
  max-width: var(--measure);
  margin: 0;
  font-size: var(--text-body-lg);
  line-height: 1.7;
}
.legal-content h2 {
  margin: var(--space-10) 0 var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 var(--space-4); }
.legal-content ul { margin: 0 0 var(--space-4); padding-left: var(--space-6); }
.legal-content li { margin-bottom: var(--space-2); }
.legal-content strong { font-weight: 700; color: var(--ink-900); }

/* ---------- Idle safety overlay (3 min idle -> 15 s countdown -> google.com) ---------- */
.idle-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 30, .5);
  padding: var(--gutter);
}
.idle-overlay[hidden] { display: none; }

.idle-overlay-card {
  max-width: 440px;
  width: 100%;
  padding: var(--space-10) var(--space-8);
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-overlay);
  text-align: center;
}
.idle-title { margin: 0 0 var(--space-3); font-size: var(--text-h2); font-weight: 800; }
.idle-text { margin: 0 0 var(--space-6); color: var(--text-muted); }

/* ---------- Reveal-on-scroll (fades and small slides only) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .finding-grid,
  .stat-strip,
  .about-grid,
  .contact-grid,
  .support-grid,
  .callout-grid,
  .voice-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero { padding-top: var(--space-8); }
  .omission-item { grid-template-columns: 1fr; gap: var(--space-2); }
  .omission-number { font-size: 36px; }
  .finding-list li { grid-template-columns: 1fr; gap: var(--space-2); }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }

  /* Taller stacked safety strip means anchor targets need more clearance */
  html { scroll-padding-top: 180px; }

  /* Nav collapses behind the toggle; quick exit stays visible */
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: var(--surface-card);
    border-bottom: var(--border-width) solid var(--border-default);
    box-shadow: var(--shadow-raised);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: var(--space-4) var(--gutter); border-top: var(--border-width) solid var(--border-default); }
  .nav-toggle { display: inline-flex; }
  .header-row .quick-exit { margin-left: auto; }
  .safety-strip { flex-direction: column; gap: var(--space-2); }

  .finding-grid,
  .stat-strip,
  .about-grid,
  .contact-grid,
  .support-grid,
  .callout-grid,
  .voice-cards {
    grid-template-columns: 1fr;
  }

  .hero-inner { text-align: left; }
  .hero-charge { max-width: none; }
  .founder-note { padding: var(--space-6); }
  .footer-row { justify-content: center; text-align: center; }
  .newsletter { text-align: left; }
}

/* ---------- Reduced motion: honour the reader's preference ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
