/* ============================================
   THE GARY PROJECT — Draft 5 Design System
   Shared stylesheet for index.html, story.html, clemency.html.
   Ported verbatim from _drafts/home-draft-5.html,
   _drafts/story-draft-5.html, _drafts/clemency-draft-5.html.

   Brand extensions approved 2026-04-18:
   Paper + Ink Blue + Evidence Red + photography B&W only +
   structural signatures (Roman numerals, hairline rules,
   paper texture, sharp corners) + Ink Blue semantic discipline.
   ============================================ */

@font-face {
  font-family: 'Poppins';
  src: url('Poppins-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bourton Hand';
  src: url('BourtonHandBase.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --charcoal: #231f20;
  --linen: #ddd2c1;
  --paper: #faf8f5;
  --ink-blue: #3E617A;
  --evidence-red: #7A2420;
  --muted: #756a5f;
  --muted-dark: #4e463f;
  --rule: rgba(35,31,32,0.14);
  --rule-strong: rgba(35,31,32,0.5);
  --max: 1320px;
  --space-section: 136px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}

/* Global paper texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' seed='12'/><feColorMatrix values='0 0 0 0 0.14  0 0 0 0 0.1  0 0 0 0 0.07  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
  z-index: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 56px; position: relative; z-index: 2; }

/* ===== NAV ===== */
.nav {
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.nav-logo img { height: 48px; width: auto; }
.nav-menu {
  display: flex; gap: 28px;
  justify-self: end;
  align-items: center;
  list-style: none;
}
.nav-menu a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--ink-blue); }
.nav-cta {
  background: var(--charcoal);
  color: var(--paper) !important;
  padding: 10px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  justify-self: end;
}
.nav-cta:hover { background: var(--ink-blue); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--charcoal);
  font-size: 1.5rem;
  padding: 6px 10px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--rule);
}
.mobile-nav a {
  color: var(--charcoal);
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav.open { display: flex; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}
.btn-primary { background: var(--ink-blue); color: var(--paper); border-color: var(--ink-blue); }
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--paper); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== HOMEPAGE HERO — 1.1fr / 1fr, top-aligned ===== */
.hero {
  padding: 96px 0 var(--space-section);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-copy { display: flex; flex-direction: column; }
.hero-eyebrow {
  font-size: 0.92rem;
  color: var(--muted-dark);
  font-weight: 500;
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '— ';
  color: var(--ink-blue);
  font-weight: 600;
}
.hero h1 {
  font-family: 'Bourton Hand', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 5.2vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--charcoal);
  margin-bottom: 36px;
  max-width: 22ch;
}
.hero h1 .second {
  display: block;
  margin-top: 22px;
  color: var(--ink-blue);
  font-size: 0.62em;
  line-height: 1.18;
  max-width: 32ch;
}
.hero-deck {
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted-dark);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero-deck strong { color: var(--charcoal); font-weight: 500; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { display: flex; flex-direction: column; }
.hero-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(165deg, #2d2720 0%, #17140f 100%);
  filter: grayscale(1) contrast(1.08);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-photo.hero-photo-landscape {
  aspect-ratio: 4/3;
}
.hero-photo.hero-photo-landscape img {
  object-position: 25% center;
}
.hero-photo.hero-photo-landscape + .hero-photo-caption {
  grid-template-columns: 1fr;
  gap: 6px;
}
/* About page hero — bigger photo column, tighter gap to text */
.hero.hero-story:has(.hero-photo-landscape) {
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
}
.hero.hero-story .hero-photo.hero-photo-landscape,
.hero.hero-story .hero-photo.hero-photo-landscape + .hero-photo-caption {
  max-width: none;
  margin-left: 0;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n2)'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-photo-caption {
  padding: 16px 0 0;
  margin-top: 14px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--muted-dark);
  font-weight: 500;
}
.hero-photo-caption strong { color: var(--charcoal); font-weight: 600; }
.hero-photo-caption span:last-child { color: var(--muted); }

/* Homepage hero override — color photo exception + shorter hero (deck moved out) */
.hero.hero-home {
  padding: 96px 0 64px;
  align-items: start;
}
.hero.hero-home .hero-photo.hero-photo-color {
  filter: none;
}
.hero.hero-home .hero-photo.hero-photo-color img {
  filter: none;
}
.hero.hero-home .hero-photo.hero-photo-color::after {
  display: none;
}

/* Full-width deck band beneath homepage hero */
.hero-deck-band {
  padding: 0 0 56px;
  max-width: none;
}
.hero-deck-full {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.72;
  color: var(--charcoal);
  max-width: none;
  margin: 0;
}
.hero-deck-full strong {
  color: var(--charcoal);
  font-weight: 500;
}
.hero-deck-full em {
  font-family: 'Bourton Hand', Georgia, serif;
  font-style: normal;
  font-size: 1.2em;
  display: block;
  margin-top: 20px;
  color: var(--ink-blue);
  max-width: 48ch;
  line-height: 1.2;
}

/* Story page hero uses 1fr / 1.15fr flip */
.hero.hero-story {
  padding: 48px 0 0;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
  gap: 56px;
}
.hero.hero-story .hero-photo {
  max-width: 380px;
  margin-left: auto;
}
.hero.hero-story .hero-photo.hero-photo-tall {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero.hero-story .hero-photo.hero-photo-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero.hero-story .hero-photo-caption {
  max-width: 380px;
  margin-left: auto;
}
.hero.hero-story h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 28ch;
}
.hero.hero-story h1 .pivot {
  display: block; margin-top: 14px;
  color: var(--ink-blue);
  font-size: 0.6em;
  line-height: 1.25;
  max-width: 38ch;
  font-weight: 400;
}
.hero.hero-story .hero-eyebrow { margin-bottom: 18px; }
.hero.hero-story .hero-deck { font-size: 1rem; max-width: 50ch; margin-bottom: 0; line-height: 1.6; }

/* Clemency page hero uses a dark info panel instead of photo */
.hero.hero-clemency {
  padding: 80px 0 var(--space-section);
  grid-template-columns: 1.55fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero.hero-clemency .hero-copy { padding-bottom: 12px; }
.hero.hero-clemency h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 28px;
  max-width: 26ch;
}
.hero.hero-clemency h1 .pivot {
  display: block; margin-top: 20px;
  color: var(--ink-blue);
  font-size: 0.62em;
  line-height: 1.18;
  max-width: 36ch;
}
.hero.hero-clemency .hero-deck {
  font-size: 1.1rem; max-width: 58ch; margin-bottom: 0;
}
.hero-panel {
  background: var(--charcoal); color: var(--paper);
  padding: 48px; aspect-ratio: 4/5;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.hero-panel::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='np'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23np)'/></svg>");
  pointer-events: none;
}
.hero-panel > * { position: relative; }
.hero-panel-label {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--linen); font-weight: 600;
}
.hero-panel-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(3.6rem, 6vw, 5.2rem); line-height: 0.95;
  color: var(--paper); letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 18px;
}
.hero-panel-num.hero-panel-num-tight {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}
.hero-panel-body p {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.24;
  color: var(--paper); max-width: 20ch;
}
.hero-panel-meta {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(221,210,193,0.7); font-weight: 500;
  border-top: 1px solid rgba(221,210,193,0.3); padding-top: 16px;
}

/* ===== STATS ===== */
.stats-band { padding-top: 28px; }
.stats-label {
  font-size: 0.82rem;
  color: var(--muted-dark);
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.stats-label::before {
  content: '— ';
  color: var(--ink-blue);
  font-weight: 600;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}
.stat {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted-dark);
  font-weight: 400;
  max-width: 24ch;
}

/* ===== SECTION / HEADER ===== */
.section { padding: var(--space-section) 0 0; }
.section.section-tight-top { padding-top: 16px; }
.section-head {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 40px;
  align-items: baseline;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--charcoal);
}
.section-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.section-head h2 {
  font-family: 'Bourton Hand', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.12;
  color: var(--charcoal);
  max-width: 28ch;
  letter-spacing: 0;
}
.section-head .section-date,
.section-head .section-label {
  grid-column: 2;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--muted-dark);
  font-weight: 500;
  margin-bottom: 10px;
}

/* Section tone variants */
/* tone-brief: keep narrow narrative max-width applied only to the .narrative inside, so the section-head divider matches other chapters */
.tone-brief .narrative { max-width: 620px; }
/* tone-brief: same heading treatment as default chapters */
.tone-brief .narrative p:first-of-type {
  font-style: italic;
  color: var(--muted-dark);
  font-size: 1.08rem;
}
/* tone-pivot: same heading treatment as default chapters; only the section-date gets the ink-blue accent */
.tone-pivot .section-head .section-date {
  color: var(--ink-blue); font-weight: 600;
}

/* ===== HOMEPAGE: CONTRADICTION ===== */
.contradiction {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 72px;
  align-items: start;
}
.contradiction-photo {
  aspect-ratio: 2/3;
  background: linear-gradient(165deg, #3a3026, #1f1a16);
  filter: grayscale(1) contrast(1.05);
  position: relative;
  overflow: hidden;
}
.contradiction-photo img { width: 100%; height: 100%; object-fit: cover; }
.contradiction-photo::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n3'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' seed='6'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n3)'/></svg>");
  mix-blend-mode: overlay;
}
.contradiction-photo-caption {
  padding: 14px 0 0;
  border-top: 1px solid var(--rule);
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted-dark);
  font-weight: 500;
}
.contradiction-text { padding-top: 4px; }
.contradiction-text p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted-dark);
  margin-bottom: 18px;
}
.contradiction-text p:first-of-type {
  font-size: 1.3rem;
  line-height: 1.52;
  color: var(--charcoal);
  font-weight: 400;
  max-width: 42ch;
}

/* Highlight-line: short horizontal rule + Bourton pull, for differentiation from Featured Quote bar */
.highlight-line {
  margin: 40px 0;
  padding: 28px 0 0;
  border-top: 3px solid var(--ink-blue);
  font-family: 'Bourton Hand', Georgia, serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.22;
  color: var(--charcoal);
  max-width: 32ch;
  letter-spacing: 0;
}
.continue-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-blue);
  padding-bottom: 3px;
}

/* ===== HOMEPAGE: EVIDENCE ===== */
.evidence-featured {
  padding-top: 32px;
  border-top: 2px solid var(--charcoal);
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
}
.evidence-featured .evidence-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--charcoal);
  letter-spacing: -0.04em;
}
.evidence-featured h3 {
  font-family: 'Bourton Hand', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--charcoal);
  max-width: 28ch;
}
.evidence-featured p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 54ch;
}
.evidence-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.evidence-row-six {
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 48px;
  row-gap: 56px;
}
.fundraising-deck {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--muted-dark);
  max-width: 58ch;
  margin: 8px 0 56px;
}
.evidence-item {
  padding-top: 24px;
  border-top: 1px solid var(--charcoal);
}
.evidence-item .evidence-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.evidence-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.38;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.evidence-item p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted-dark);
}

/* ===== HOMEPAGE: 18 INTERRUPT ===== */
.hero-18 {
  background: var(--charcoal);
  color: var(--paper);
  padding: 128px 0;
  margin-top: var(--space-section);
  position: relative;
  overflow: hidden;
}
.hero-18::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n4'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n4)'/></svg>");
  pointer-events: none;
}
.hero-18-wrap {
  max-width: 1040px; margin: 0 auto; padding: 0 56px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.hero-18-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(9rem, 20vw, 18rem);
  line-height: 0.85;
  color: var(--linen);
  letter-spacing: -0.05em;
}
.hero-18-body {
  max-width: 42ch;
  border-left: 1px solid rgba(221,210,193,0.25);
  padding-left: 48px;
}
.hero-18-eyebrow {
  font-size: 0.88rem;
  color: var(--linen);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-18-body h2 {
  font-family: 'Bourton Hand', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 22px;
  max-width: 36ch;
}
.hero-18-body p {
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(250,248,245,0.72);
}
.hero-18-body .date-marker {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(221,210,193,0.25);
  font-size: 0.88rem;
  color: var(--linen);
  font-weight: 500;
}

/* ===== HOMEPAGE VIDEO SECTION ===== */
.video-section {
  padding: 56px 0;
  background: var(--paper);
  position: relative;
}
.video-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 56px;
  position: relative; z-index: 2;
}
.video-head {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 40px; align-items: baseline;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--charcoal);
}
.video-head .section-num {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 1.4rem; color: var(--charcoal);
}
.video-head-right { padding-top: 4px; }
.video-label {
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-blue); font-weight: 600; margin-bottom: 12px;
}
.video-head h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.1;
  color: var(--charcoal); max-width: 28ch;
}
.video-frame {
  position: relative; aspect-ratio: 16/9;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  overflow: hidden;
}
.video-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.video-caption {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  padding: 14px 0 0; margin-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 0.82rem; color: var(--muted-dark); font-weight: 500;
}
.video-caption strong { color: var(--charcoal); font-weight: 600; }

/* ===== FEATURED VOICE (linen band) ===== */
.featured-voice {
  background: var(--linen);
  padding: var(--space-section) 0;
  position: relative;
}
.featured-voice::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n5'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='15'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n5)'/></svg>");
  pointer-events: none;
}
.featured-voice-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 2fr;
  gap: 72px;
  align-items: start;
}
.featured-voice-head .section-num { font-size: 1.4rem; color: var(--charcoal); margin-bottom: 14px; }
.featured-voice-head h2 {
  font-family: 'Bourton Hand', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.1;
  color: var(--charcoal);
  max-width: 14ch;
}

.big-quote {
  font-family: 'Bourton Hand', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: 0;
  padding-left: 36px;
  border-left: 5px solid var(--ink-blue);
  max-width: 32ch;
}
.big-quote cite {
  display: block;
  margin-top: 32px;
  margin-left: -36px;
  padding-left: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-strong);
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted-dark);
  font-weight: 500;
}
.more-voices {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.more-voice {
  padding-top: 22px;
  border-top: 1px solid var(--rule-strong);
}
.more-voice p {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 18px;
  max-width: 32ch;
}
.more-voice cite {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted-dark);
  font-weight: 500;
}

/* ===== CTA BLOCK ===== */
.cta {
  padding: var(--space-section) 0;
  background: var(--charcoal);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n6'><feTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='2' seed='21'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.03 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n6)'/></svg>");
  pointer-events: none;
}
.cta-wrap {
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
}
.cta h2 {
  font-family: 'Bourton Hand', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  color: var(--paper);
  max-width: 20ch;
  letter-spacing: 0;
}
.cta h2 .cont {
  font-style: normal;
  color: rgba(250,248,245,0.72);
  display: block;
  margin-top: 20px;
  font-size: 0.5em;
  line-height: 1.25;
  max-width: 34ch;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}
.cta-btn.primary { background: var(--linen); color: var(--charcoal); }
.cta-btn.primary:hover { background: var(--paper); }
.cta-btn.ghost {
  border: 1px solid rgba(250,248,245,0.4);
  color: var(--paper);
}
.cta-btn.ghost:hover { background: rgba(250,248,245,0.08); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(250,248,245,0.6);
  padding: 64px 0 56px;
  border-top: 1px solid rgba(250,248,245,0.08);
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: rgba(250,248,245,0.7); text-decoration: none; }
.footer-col a:hover { color: var(--linen); }
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(0.9); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; color: rgba(250,248,245,0.65); max-width: 36ch; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(250,248,245,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: rgba(250,248,245,0.5);
}
.footer-bottom .social-links { display: flex; gap: 16px; align-items: center; }
.footer-bottom .social-links a {
  color: rgba(250,248,245,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.footer-bottom .social-links a svg { width: 20px; height: 20px; }
.footer-bottom .social-links a:hover { color: var(--linen); }

/* ===== STORY PAGE: JOSEPHINE BAND ===== */
.josephine {
  background: var(--linen);
  padding: var(--space-section) 0;
  position: relative;
}
.josephine::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n5b'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='15'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n5b)'/></svg>");
  pointer-events: none;
}
.josephine-wrap {
  max-width: 900px; margin: 0 auto; padding: 0 56px; position: relative;
  text-align: center;
}
.josephine-eyebrow {
  font-size: 0.88rem; color: var(--muted-dark); font-weight: 500; margin-bottom: 22px;
}
.josephine-eyebrow::before { content: '— '; color: var(--ink-blue); font-weight: 600; }
.josephine h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1.05;
  color: var(--charcoal); margin-bottom: 40px;
}
.josephine-body {
  font-size: 1.1rem; line-height: 1.72; color: var(--charcoal);
  max-width: 56ch; margin: 0 auto; text-align: left;
}
.josephine-body p { margin-bottom: 16px; }
.josephine-body p:last-child { margin-bottom: 0; }

/* ===== STORY PAGE: NARRATIVE BODY ===== */
.narrative { max-width: 680px; font-size: 1.08rem; line-height: 1.75; color: var(--muted-dark); }
.narrative p { margin-bottom: 18px; }
.narrative p:first-of-type {
  font-size: 1.22rem; line-height: 1.55;
  color: var(--charcoal); font-weight: 400;
}
/* Chapter sections on the story page use uniform paragraph sizing
   (no lede treatment) so chapters read consistently top-to-bottom. */
.section .narrative p:first-of-type,
.section-dark .narrative p:first-of-type,
.tone-pivot .narrative p:first-of-type {
  font-size: 1.08rem; line-height: 1.75;
  color: var(--muted-dark); font-weight: 400;
}
.section-dark .narrative p:first-of-type { color: var(--paper); }
.narrative p:last-child { margin-bottom: 0; }

.pull-quote {
  margin: 40px 0;
  padding: 24px 0 0 24px;
  border-left: 3px solid var(--ink-blue);
  border-top: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--charcoal);
  max-width: 48ch;
  text-transform: none;
}
.pull-quote cite {
  display: block;
  margin-top: 24px; padding-top: 14px;
  border-top: 1px solid var(--rule-strong);
  font-family: 'Poppins', sans-serif; font-style: normal;
  font-size: 0.85rem; color: var(--muted-dark); font-weight: 500;
}

/* Story-figure: inline figure (e.g. archival photo placed between section-head and narrative) */
.story-figure {
  margin: 0 0 40px;
  max-width: 480px;
}
.story-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.story-figure figcaption {
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  color: var(--muted-dark);
  letter-spacing: 0.04em;
}
/* Two-column layout: narrative left, figure right (matches hero grid for visual alignment) */
.section-with-figure {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.section-with-figure .narrative { max-width: 580px; }
.story-figure-side {
  margin: 0 0 0 auto;
  max-width: 380px;
}
.story-figure-side img {
  background: var(--paper, #faf8f5);
  padding: 10px;
  border: 1px solid var(--charcoal);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .section-with-figure { grid-template-columns: 1fr; gap: 32px; }
  .story-figure-side { max-width: 480px; }
}

/* Legal Entity section — narrative left, fact panel right */
.legal-entity-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.legal-entity-grid .narrative { max-width: 580px; }
.legal-entity-panel {
  background: var(--surface-linen, #ddd2c1);
  padding: 36px 40px;
  border-left: 1px solid var(--charcoal);
}
.legal-entity-panel-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 600;
  margin-bottom: 24px;
}
.legal-entity-panel dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.legal-entity-panel dt {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 500;
  margin-bottom: 2px;
}
.legal-entity-panel dd {
  margin: 0 0 12px 0;
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--charcoal);
  font-weight: 500;
  border-bottom: 1px solid rgba(35, 31, 32, 0.12);
  padding-bottom: 12px;
}
.legal-entity-panel dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .legal-entity-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Donate page — soft-launch section: narrative left, CTAs right */
.soft-launch {
  padding: var(--space-section) 0;
  background: var(--linen);
  position: relative;
}
.soft-launch-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 48px;
}
.soft-launch-grid .narrative {
  max-width: 580px;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--charcoal);
}
.soft-launch-grid .narrative p { margin-bottom: 16px; }
.soft-launch-grid .narrative p:last-child { margin-bottom: 0; }
.soft-launch-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--charcoal);
}
.soft-launch-cta .btn {
  display: block;
  text-align: center;
  width: 100%;
}
@media (max-width: 900px) {
  .soft-launch-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Donate page — provenance section in left-aligned variant */
.provenance.provenance-left .wrap { padding-top: 0; padding-bottom: 0; }
.provenance.provenance-left h2 { max-width: 36ch; margin-top: 16px; }
.provenance.provenance-left .provenance-body {
  max-width: 70ch;
  margin-top: 8px;
}
.provenance.provenance-left .provenance-body p {
  font-size: 1rem; line-height: 1.72;
  color: var(--muted-dark); margin-bottom: 16px;
}
.provenance.provenance-left .provenance-body p:last-child { margin-bottom: 0; }

/* Donate page — scoped overrides */
.page-donate .hero.hero-clemency { padding-bottom: 80px; }
.page-donate .section { padding-top: 56px; padding-bottom: 96px; }
.page-donate .provenance { padding: 96px 0; }

/* Contact page — scoped overrides */
.page-contact .hero.hero-clemency { padding-bottom: 24px; }
.page-contact .section { padding-top: 56px; padding-bottom: 96px; }
.page-contact .provenance { padding: 96px 0; }

/* Story image cells */
.img-cell {
  margin: 48px 0 8px;
  background: linear-gradient(165deg, #2d2720, #17140f);
  filter: grayscale(1) contrast(1.08);
  position: relative;
  overflow: hidden;
}
.img-cell img { width: 100%; height: 100%; object-fit: cover; }
.img-cell.cell { aspect-ratio: 1/1; max-width: 520px; margin: 48px auto 8px; }
.img-cell.wide { aspect-ratio: 16/9; }
.img-cell.chapel { aspect-ratio: 3/2; }
.img-cell.banner { aspect-ratio: 21/9; }
.img-cell::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n3b'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' seed='6'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n3b)'/></svg>");
  mix-blend-mode: overlay;
}
.img-caption {
  padding: 12px 0 0; margin-top: 4px; max-width: 560px;
  font-size: 0.85rem; color: var(--muted-dark); font-weight: 500;
  border-top: 1px solid var(--rule);
}
.img-caption.center { margin-left: auto; margin-right: auto; }
.img-cell + .img-caption { margin-bottom: 48px; }

/* Anchor moment */
.anchor-moment {
  margin: 80px 0;
  display: grid; grid-template-columns: auto 1fr;
  gap: 56px; align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}
.anchor-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(6rem, 12vw, 10rem); line-height: 0.9;
  color: var(--ink-blue); letter-spacing: -0.04em;
}
.anchor-body { max-width: 40ch; }
.anchor-label {
  font-size: 0.82rem; color: var(--ink-blue); font-weight: 600;
  margin-bottom: 14px; letter-spacing: 0.02em;
}
.anchor-body h3 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem); line-height: 1.2;
  color: var(--charcoal); margin-bottom: 14px;
}
.anchor-body p { font-size: 1rem; line-height: 1.65; color: var(--muted-dark); }

/* Tan section (e.g., Section VII Church Planting) — full-bleed background */
.section-tan {
  position: relative;
  padding: 64px 32px;
  margin: 64px 0;
}
.section-tan::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  width: 100vw;
  background: var(--linen);
  z-index: -1;
}
.section-tan > * { position: relative; }

/* Dark section (the crime) */
.section-dark {
  background: var(--charcoal); color: var(--paper);
  padding: var(--space-section) 0;
  margin-top: var(--space-section);
  position: relative;
}
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n4b'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n4b)'/></svg>");
  pointer-events: none;
}
.section-dark .wrap { position: relative; }
.section-dark .section-num { color: var(--linen); }
.section-dark .section-head h2 { color: var(--paper); }
.section-dark .section-head { border-bottom-color: rgba(221,210,193,0.3); }
.section-dark .section-head .section-date,
.section-dark .section-head .section-label { color: rgba(250,248,245,0.6); }
.section-dark .narrative { color: rgba(250,248,245,0.72); }
.section-dark .narrative p:first-of-type { color: var(--paper); }
.section-dark .pull-quote { border-left-color: var(--linen); color: var(--paper); }
.section-dark .pull-quote cite { color: rgba(250,248,245,0.55); border-top-color: rgba(221,210,193,0.3); }

/* ===== STORY PAGE: TIMELINE ===== */
.timeline { margin-top: 24px; position: relative; max-width: 680px; }
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 6px; bottom: 6px;
  width: 1px; background: var(--rule-strong);
}
.timeline-item { position: relative; padding-left: 48px; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: 8px; top: 8px;
  width: 9px; height: 9px; background: var(--ink-blue);
  border: 2px solid var(--paper); border-radius: 50%;
}
.timeline-item.key {
  padding-left: 64px; border-left: 3px solid var(--ink-blue);
  margin-left: -16px; padding-top: 6px; padding-bottom: 44px;
}
.timeline-item.key::before { display: none; }
.timeline-year {
  font-size: 0.85rem; color: var(--muted-dark); font-weight: 600;
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.timeline-item.key .timeline-year { color: var(--ink-blue); font-size: 0.95rem; }
.timeline-item h4 {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 1.08rem; line-height: 1.35; margin-bottom: 8px;
  color: var(--charcoal);
}
.timeline-item.key h4 {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 1.18rem; line-height: 1.3;
  color: var(--charcoal);
  text-transform: none;
}
.timeline-item p { font-size: 0.98rem; line-height: 1.6; color: var(--muted-dark); max-width: 50ch; }

/* ===== STORY PAGE: WEEKLY SCHEDULE ===== */
.schedule {
  margin: 48px 0; background: var(--paper);
  border: 1px solid var(--charcoal); padding: 40px;
}
.schedule-label {
  font-size: 0.82rem; color: var(--muted-dark); font-weight: 500; margin-bottom: 12px;
}
.schedule-label::before { content: '— '; color: var(--ink-blue); font-weight: 600; }
.schedule h3 {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 1.3rem; line-height: 1.3; margin-bottom: 24px;
  color: var(--charcoal); max-width: 32ch;
  text-transform: none;
  letter-spacing: -0.01em;
}
.schedule table { width: 100%; border-collapse: collapse; }
.schedule td {
  padding: 14px 14px 14px 0; vertical-align: top;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem; line-height: 1.5;
}
.schedule tr:last-child td { border-bottom: 0; }
.schedule .s-day { font-weight: 600; color: var(--charcoal); width: 20%; }
.schedule .s-time { color: var(--ink-blue); font-weight: 600; width: 18%; font-size: 0.88rem; }
.schedule .s-activity { color: var(--muted-dark); }

/* ===== STORY PAGE: RECORD FEATURE ===== */
.record-feature {
  margin: 48px 0; padding: 56px 0;
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  display: grid; grid-template-columns: auto 1fr;
  gap: 56px; align-items: center;
}
.record-feature .num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(7rem, 14vw, 12rem); line-height: 0.88;
  color: var(--charcoal); letter-spacing: -0.04em;
}
.record-feature-body { max-width: 44ch; }
.record-feature-body h3 {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: clamp(1.3rem, 1.9vw, 1.6rem); line-height: 1.3;
  color: var(--charcoal); margin-bottom: 14px; max-width: 36ch;
  text-transform: none;
  letter-spacing: -0.01em;
}
.record-feature-body p { font-size: 1rem; line-height: 1.7; color: var(--muted-dark); }
.record-supporting {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 40px;
}
.record-supporting-item {
  padding-top: 22px; border-top: 1px solid var(--charcoal);
}
.record-supporting-item .num {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 2rem; line-height: 1; color: var(--charcoal); margin-bottom: 12px;
}
.record-supporting-item h4 {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 1rem; line-height: 1.35; margin-bottom: 8px;
}
.record-supporting-item p { font-size: 0.92rem; line-height: 1.55; color: var(--muted-dark); }

/* ===== CLEMENCY PAGE: SPLIT — text + process card ===== */
.clemency-split {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px; align-items: start;
}
.clemency-text { max-width: 580px; font-size: 1.08rem; line-height: 1.72; color: var(--muted-dark); }
.clemency-text p { margin-bottom: 18px; }
.clemency-text p:first-of-type { font-size: 1.2rem; line-height: 1.5; color: var(--charcoal); }
.clemency-text .highlight-line {
  margin: 32px 0; padding: 22px 0 0;
  border-top: 3px solid var(--ink-blue);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem); line-height: 1.3;
  max-width: 34ch;
}
.process {
  background: var(--paper);
  border: 1px solid var(--charcoal);
  padding: 36px;
}
.process-label {
  font-size: 0.82rem; color: var(--muted-dark); font-weight: 500; margin-bottom: 16px;
}
.process-label::before { content: '— '; color: var(--ink-blue); font-weight: 600; }
.process h3 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: 1.5rem; line-height: 1.15; margin-bottom: 24px; color: var(--charcoal);
}
.process-step {
  display: grid; grid-template-columns: 36px 1fr; gap: 16px;
  padding: 14px 0; border-top: 1px solid var(--rule);
}
.process-step:first-of-type { border-top: 0; padding-top: 0; }
.process-num {
  width: 32px; height: 32px; border-radius: 2px;
  background: var(--charcoal); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
.process-step h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--charcoal); }
.process-step p { font-size: 0.88rem; line-height: 1.5; color: var(--muted-dark); }

/* ===== CLEMENCY PAGE: DESISTANCE INTRO ===== */
.desistance-intro {
  background: var(--charcoal); color: var(--paper);
  padding: var(--space-section) 0;
  margin-top: var(--space-section);
  position: relative;
}
.desistance-intro::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n4c'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n4c)'/></svg>");
  pointer-events: none;
}
.desistance-intro .wrap { position: relative; max-width: 900px; }
.desistance-intro .section-num { color: var(--linen); }
.desistance-intro .section-label { color: rgba(221,210,193,0.7); }
.desistance-intro .section-head h2 { color: var(--paper); }
.desistance-intro .section-head { border-bottom-color: rgba(221,210,193,0.3); }
.desistance-intro .intro-body {
  font-size: 1.12rem; line-height: 1.72; color: rgba(250,248,245,0.78); max-width: 60ch;
}
.desistance-intro .intro-body p { margin-bottom: 16px; }
.desistance-intro .intro-body p:last-child { margin-bottom: 0; }
.desistance-intro .intro-body p:first-child { color: var(--paper); font-size: 1.22rem; }

/* ===== CLEMENCY PAGE: SCORECARD ===== */
.scorecard {
  background: var(--paper);
  border: 1px solid var(--charcoal);
  margin: 0 auto;
  overflow: hidden;
}
.scorecard-header {
  display: grid; grid-template-columns: 60px 1fr 1fr 120px;
  padding: 18px 28px; background: var(--charcoal); color: var(--paper);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; gap: 24px;
}
.scorecard-row {
  display: grid; grid-template-columns: 60px 1fr 1fr 120px;
  gap: 24px; padding: 28px; border-top: 1px solid var(--rule);
  align-items: start;
}
.scorecard-row:first-of-type { border-top: 0; }
.scorecard-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: 2.4rem; line-height: 0.9;
  color: var(--ink-blue); letter-spacing: -0.02em;
}
.scorecard-predictor h4 {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 1.02rem; line-height: 1.3; margin-bottom: 8px; color: var(--charcoal);
}
.scorecard-predictor p { font-size: 0.88rem; line-height: 1.55; color: var(--muted-dark); }
.scorecard-evidence p { font-size: 0.92rem; line-height: 1.6; color: var(--charcoal); }
.scorecard-evidence p strong { color: var(--charcoal); font-weight: 600; }
.scorecard-verdict {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--charcoal); color: var(--paper);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 999px; white-space: nowrap;
  height: fit-content;
}
.scorecard-verdict::before { content: '\2713'; font-size: 0.82rem; }

/* ===== CLEMENCY PAGE: CONTRADICTION PULLOUT (linen) ===== */
.contradiction-pullout {
  background: var(--linen); padding: var(--space-section) 0;
  margin-top: var(--space-section); position: relative;
}
.contradiction-pullout::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n5c'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='15'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n5c)'/></svg>");
  pointer-events: none;
}
.contradiction-wrap {
  max-width: 1000px; margin: 0 auto; padding: 0 56px; position: relative;
  text-align: center;
}
.contradiction-label {
  font-size: 0.88rem; color: var(--muted-dark); font-weight: 500; margin-bottom: 24px;
}
.contradiction-label::before { content: '— '; color: var(--ink-blue); font-weight: 600; }
.contradiction-wrap h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.08;
  color: var(--charcoal); margin-bottom: 32px;
  max-width: 22ch; margin-left: auto; margin-right: auto;
}
.contradiction-body {
  font-size: 1.08rem; line-height: 1.72; color: var(--charcoal);
  max-width: 56ch; margin: 0 auto 28px; text-align: left;
}
.contradiction-body p { margin-bottom: 16px; }
.contradiction-body p:last-child { margin-bottom: 0; }
.contradiction-capstone {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.22;
  color: var(--charcoal); max-width: 34ch; margin: 40px auto 0;
  padding-top: 32px; border-top: 3px solid var(--ink-blue);
}

/* ===== CLEMENCY PAGE: FISCAL ===== */
.fiscal-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--charcoal); border-bottom: 1px solid var(--charcoal);
  margin: 48px 0;
}
.fiscal-cell { padding: 40px 32px; border-right: 1px solid var(--rule); }
.fiscal-cell:first-child { padding-left: 0; }
.fiscal-cell:last-child { border-right: 0; padding-right: 0; }
.fiscal-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4rem); line-height: 0.95;
  color: var(--charcoal); letter-spacing: -0.02em; margin-bottom: 16px;
}
.fiscal-label { font-size: 0.92rem; line-height: 1.55; color: var(--muted-dark); }
.fiscal-label strong { color: var(--charcoal); font-weight: 600; }

/* ===== CLEMENCY PAGE: OUTLIER (dark, big numeral) ===== */
.outlier {
  background: var(--charcoal); color: var(--paper);
  padding: var(--space-section) 0; margin-top: var(--space-section);
  position: relative;
}
.outlier::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n6b'><feTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='2' seed='21'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.03 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n6b)'/></svg>");
  pointer-events: none;
}
.outlier-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 56px; position: relative;
  display: grid; grid-template-columns: auto 1fr;
  gap: 80px; align-items: center;
}
.outlier-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(5rem, 12vw, 11rem); line-height: 0.85;
  color: var(--linen); letter-spacing: -0.04em;
}
.outlier-body {
  max-width: 44ch;
  border-left: 1px solid rgba(221,210,193,0.25); padding-left: 48px;
}
.outlier-label { font-size: 0.82rem; color: var(--linen); font-weight: 600; margin-bottom: 20px; }
.outlier-body h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.22;
  color: var(--paper); margin-bottom: 22px; max-width: 26ch;
}
.outlier-body p { font-size: 1rem; line-height: 1.72; color: rgba(250,248,245,0.72); }

/* Wide variant — eyebrow + two side-by-side stat columns */
.outlier-wrap-wide {
  display: block;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
}
.outlier-eyebrow {
  font-size: 0.82rem;
  color: var(--linen);
  font-weight: 600;
  margin: 0 0 56px;
  letter-spacing: 0.04em;
}
.outlier-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.outlier-stat {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.outlier-stat .outlier-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.85;
  color: var(--linen);
  letter-spacing: -0.04em;
  margin: 0;
}
.outlier-stat-head {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  line-height: 1.18;
  color: var(--paper);
  margin: 0;
  max-width: 28ch;
}
.outlier-stat p {
  font-size: 1rem; line-height: 1.72;
  color: rgba(250,248,245,0.72);
  border-top: 1px solid rgba(221,210,193,0.25);
  padding-top: 24px;
  max-width: 48ch;
  margin: 0;
}
@media (max-width: 900px) {
  .outlier-row { grid-template-columns: 1fr; gap: 56px; }
  .outlier-eyebrow { margin-bottom: 40px; }
}

/* ===== STORY PAGE: DESISTANCE FOOTNOTE CALLOUT ===== */
.desistance-note {
  display: grid; grid-template-columns: 32px 1fr;
  gap: 16px; align-items: start;
  margin: 32px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--ink-blue);
  background: rgba(62, 97, 122, 0.04);
  max-width: 56ch;
}
.desistance-note-label {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-blue);
  padding-top: 2px;
}
.desistance-note-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem; line-height: 1.55;
  color: var(--charcoal);
}
.desistance-note-body strong { color: var(--charcoal); font-weight: 600; }

/* Story page summary scorecard (lighter than Clemency's) */
.story-desistance-summary {
  margin: 80px 0 0;
  padding: 56px 0 96px;
  border-top: 1px solid var(--charcoal);
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  gap: 64px;
  align-items: center;
}
.story-desistance-content { min-width: 0; }
.story-desistance-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 900px) {
  .story-desistance-summary { grid-template-columns: 1fr; gap: 32px; }
  .story-desistance-cta { justify-content: flex-start; }
}
.story-desistance-summary h3 {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.3;
  color: var(--charcoal); margin-bottom: 20px; max-width: 36ch;
  text-transform: none;
  letter-spacing: -0.01em;
}
.story-desistance-summary p {
  font-size: 1rem; line-height: 1.7; color: var(--muted-dark); margin-bottom: 20px;
}
.story-desistance-summary ul {
  list-style: none;
  margin: 0 0 28px 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.story-desistance-summary li {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem; line-height: 1.5;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}
.story-desistance-summary li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0;
  color: var(--ink-blue); font-weight: 600;
}

/* ===== VOICES FROM INSIDE (featured letters) ===== */
.voice-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}
.voice-block:first-of-type { border-top: 0; padding-top: var(--space-section); }

.voice-featured {
  background: var(--linen);
  padding: var(--space-section) 0;
  position: relative; overflow: hidden;
}
.voice-featured::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='nvf'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='15'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23nvf)'/></svg>");
  pointer-events: none;
}
.voice-featured-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 56px;
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.voice-featured-wrap .voice-letter { order: 2; }
.voice-featured-wrap .voice-copy { order: 1; }
.voice-featured .voice-copy h2 {
  font-size: clamp(2.2rem, 3.6vw, 2.9rem);
  max-width: 20ch;
}

.voice-letter {
  position: relative; background: var(--paper);
  border: 1px solid var(--rule); overflow: hidden;
  max-height: 720px;
}
.voice-letter img {
  width: 100%; height: auto; display: block;
  filter: grayscale(1) contrast(1.05);
}
.voice-letter.tall { max-height: 820px; }
.voice-letter-caption {
  padding: 14px 0 0; margin-top: 14px;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px;
  font-size: 0.82rem; color: var(--muted-dark); font-weight: 500;
}
.voice-letter-caption strong { color: var(--charcoal); font-weight: 600; }

.voice-copy .voice-eyebrow {
  font-size: 0.78rem; color: var(--muted-dark);
  font-weight: 500; margin-bottom: 20px;
}
.voice-copy .voice-eyebrow::before { content: '— '; color: var(--ink-blue); font-weight: 600; }
.voice-copy h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.15;
  color: var(--charcoal); margin-bottom: 28px;
  max-width: 22ch;
}
.voice-body p {
  font-size: 1rem; line-height: 1.72;
  color: var(--muted-dark); margin-bottom: 14px;
}
.voice-body p:first-of-type { font-size: 1.1rem; line-height: 1.65; color: var(--charcoal); }
.voice-body p:last-child { margin-bottom: 0; }

/* ===== ARCHIVE INTERRUPT ===== */
.archive-interrupt {
  background: var(--charcoal); color: var(--paper);
  padding: 128px 0;
  position: relative; overflow: hidden;
}
.archive-interrupt::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='nai'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' seed='9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23nai)'/></svg>");
  pointer-events: none;
}
.archive-interrupt-wrap {
  max-width: 1040px; margin: 0 auto; padding: 0 56px; position: relative;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.archive-interrupt-num {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(9rem, 20vw, 16rem); line-height: 0.85;
  color: var(--linen); letter-spacing: -0.05em;
}
.archive-interrupt-body {
  max-width: 44ch;
  border-left: 1px solid rgba(221,210,193,0.25);
  padding-left: 48px;
}
.archive-interrupt-eyebrow { font-size: 0.82rem; color: var(--linen); font-weight: 500; margin-bottom: 20px; }
.archive-interrupt-body h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.8rem, 2.8vw, 2.3rem); line-height: 1.22;
  color: var(--paper); margin-bottom: 18px; max-width: 36ch;
}
.archive-interrupt-body p { font-size: 1rem; line-height: 1.72; color: rgba(250,248,245,0.72); }

/* ===== MOSAIC (thematic quote grid) ===== */
.mosaic { padding: var(--space-section) 0; }
.mosaic-wrap { max-width: var(--max); margin: 0 auto; padding: 0 56px; }
.mosaic-head {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 40px; align-items: baseline;
  margin-bottom: 60px; padding-bottom: 24px;
  border-bottom: 1px solid var(--charcoal);
}
.mosaic-head .section-num { font-size: 1.4rem; color: var(--charcoal); }
.mosaic-head h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.6rem); line-height: 1.1;
  color: var(--charcoal); max-width: 26ch;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 0;
  position: relative;
}
.mosaic-divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px; background: var(--rule-strong);
  transform: translateX(-50%);
}
.mosaic-item {
  padding: 32px 0;
  border-top: 1px solid var(--rule-strong);
  min-width: 0;
}
.mosaic-item:nth-child(2),
.mosaic-item:nth-child(3) { border-top: 0; padding-top: 0; }
.mosaic-theme {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-blue); font-weight: 600; margin-bottom: 16px;
}
.mosaic-item blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem; line-height: 1.6;
  color: var(--charcoal); margin-bottom: 16px; max-width: 46ch;
}
.mosaic-item .translation {
  display: block; margin-top: 8px;
  font-size: 0.92rem; color: var(--muted-dark); font-style: italic;
}
.mosaic-item cite {
  font-family: 'Poppins', sans-serif; font-style: normal;
  font-size: 0.8rem; color: var(--muted-dark); font-weight: 500;
}

/* ===== PROVENANCE / LETTER NOTICE BLOCK ===== */
.provenance { padding: var(--space-section) 0; }
.provenance-wrap { max-width: 760px; margin: 0 auto; padding: 0 56px; }
.provenance-label {
  font-size: 0.82rem; color: var(--muted-dark); font-weight: 500;
  margin-bottom: 20px;
}
.provenance-label::before { content: '— '; color: var(--ink-blue); font-weight: 600; }
.provenance h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.1;
  color: var(--charcoal); margin-bottom: 32px; max-width: 22ch;
}
.provenance p {
  font-size: 1rem; line-height: 1.72;
  color: var(--muted-dark); margin-bottom: 16px;
}
.provenance p:last-child { margin-bottom: 0; }

/* ===== HOMEPAGE TOC (numbered case-file rows) ===== */
.toc { padding: var(--space-section) 0; }
.toc-wrap { max-width: var(--max); margin: 0 auto; padding: 0 56px; }
.toc-head {
  display: grid; grid-template-columns: 1fr;
  gap: 8px; align-items: baseline;
  margin-bottom: 48px; padding-bottom: 24px;
  border-bottom: 1px solid var(--charcoal);
}
.toc-head h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.6rem); line-height: 1.1;
  color: var(--charcoal); max-width: 32ch;
}
.toc-list { display: flex; flex-direction: column; }
.toc-row {
  display: grid; grid-template-columns: 160px 1fr auto;
  gap: 56px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  text-decoration: none; color: inherit;
  transition: background 0.2s, padding 0.2s;
}
.toc-row:last-child { border-bottom: 1px solid var(--charcoal); }
.toc-row:first-child { border-top: 1px solid var(--charcoal); }
.toc-row:hover {
  background: rgba(62, 97, 122, 0.04);
  padding-left: 16px;
}
.toc-row .roman {
  font-family: 'Bourton Hand', Georgia, serif;
  font-size: clamp(4rem, 7.5vw, 7rem); line-height: 0.85;
  color: var(--charcoal); letter-spacing: -0.02em;
}
.toc-row:hover .roman { color: var(--ink-blue); }
.toc-row .body { max-width: 56ch; }
.toc-row h3 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem); line-height: 1.15;
  color: var(--charcoal); margin-bottom: 12px;
}
.toc-row p {
  font-size: 1rem; line-height: 1.65;
  color: var(--muted-dark);
}
.toc-row .arrow {
  font-size: 1.4rem; color: var(--ink-blue);
  font-weight: 400; line-height: 1;
}

/* ===== DESISTANCE TEASER (linen band) ===== */
.desistance-teaser {
  padding: var(--space-section) 0;
  background: var(--linen);
  position: relative; overflow: hidden;
}
.desistance-teaser::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='ndt'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' seed='15'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23ndt)'/></svg>");
  pointer-events: none;
}
.desistance-wrap {
  max-width: 880px; margin: 0 auto; padding: 0 56px;
  position: relative;
}
.desistance-label {
  font-size: 0.82rem; color: var(--muted-dark); font-weight: 500;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.desistance-label::before { content: '— '; color: var(--ink-blue); font-weight: 600; }
.desistance-teaser h2 {
  font-family: 'Bourton Hand', Georgia, serif; font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1;
  color: var(--charcoal); margin-bottom: 32px; max-width: 24ch;
}
.desistance-teaser h2 em {
  font-style: normal; color: var(--ink-blue);
}
.desistance-teaser p {
  font-size: 1.15rem; line-height: 1.72;
  color: var(--charcoal); max-width: 58ch; margin-bottom: 28px;
}
.desistance-link {
  display: inline-block;
  font-size: 0.92rem; font-weight: 600;
  color: var(--ink-blue); text-decoration: none;
  border-bottom: 1px solid var(--ink-blue);
  padding-bottom: 3px;
}
.desistance-link.desistance-link-prominent {
  margin-top: 0;
  padding: 14px 26px;
  font-size: 1.05rem; font-weight: 700;
  color: var(--paper); background: var(--ink-blue);
  border: 2px solid var(--ink-blue); border-bottom: 2px solid var(--ink-blue);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.desistance-link.desistance-link-prominent:hover {
  background: transparent; color: var(--ink-blue);
}
.desistance-link-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* ===== STORY PAGE: GARY PREACHING CLIPS ===== */
.preach-clips-section { padding-top: 96px; padding-bottom: 48px; }
.preach-clips-head { max-width: 720px; margin-bottom: 36px; }
.preach-clips-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-blue); font-weight: 600; margin-bottom: 12px;
}
.preach-clips-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1; margin: 0 0 14px;
  color: var(--charcoal);
}
.preach-clips-head p {
  font-size: 1rem; line-height: 1.6; color: var(--muted-dark);
  margin: 0; max-width: 56ch;
}
.preach-clips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.preach-clip {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 9 / 16;
  position: relative;
}
.preach-clip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--charcoal);
}
@media (max-width: 760px) {
  .preach-clips { grid-template-columns: 1fr; gap: 20px; }
  .preach-clip { max-width: 360px; margin: 0 auto; }
}

/* ============================================
   NO-JS FADE-UP — content visible by default.
   Only hide when .js-enabled is present on <html>
   (set by main.js before DOMContentLoaded).
   ============================================ */
.fade-up { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js-enabled .fade-up { opacity: 0; transform: translateY(24px); }
.js-enabled .fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js-enabled .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .wrap,
  .hero-18-wrap,
  .featured-voice-wrap,
  .cta-wrap,
  .video-wrap,
  .josephine-wrap,
  .contradiction-wrap,
  .outlier-wrap { padding: 0 24px; }

  /* Hero variants collapse to single column */
  .hero,
  .hero.hero-story,
  .hero.hero-clemency { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 80px; }

  /* Stats collapse 4 → 2 */
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; padding-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--rule); padding-bottom: 28px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 28px; }
  .stat:nth-child(2), .stat:nth-child(4) { padding-left: 0; }

  .section { padding: 80px 0 0; }
  .section-head { grid-template-columns: 1fr; gap: 8px; }

  .contradiction { grid-template-columns: 1fr; gap: 40px; }
  .evidence-featured { grid-template-columns: 1fr; gap: 16px; }
  .evidence-row { grid-template-columns: 1fr; gap: 32px; }

  .hero-18-wrap { grid-template-columns: 1fr; gap: 24px; }
  .hero-18-body {
    border-left: 0; padding-left: 0;
    border-top: 1px solid rgba(221,210,193,0.25); padding-top: 32px;
  }

  .featured-voice-wrap { grid-template-columns: 1fr; gap: 40px; }
  .more-voices { grid-template-columns: 1fr; gap: 24px; }

  .cta-wrap { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Nav collapses */
  .nav { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav-menu { display: none; }
  .nav-toggle { display: inline-block; }

  /* Story-specific */
  .anchor-moment { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .record-feature { grid-template-columns: 1fr; gap: 24px; }
  .record-supporting { grid-template-columns: 1fr; gap: 32px; }
  .schedule { padding: 24px; }

  /* Clemency-specific */
  .clemency-split { grid-template-columns: 1fr; gap: 40px; }
  .scorecard-header { display: none; }
  .scorecard-row { grid-template-columns: 48px 1fr; gap: 14px; padding: 24px 20px; }
  .scorecard-predictor, .scorecard-evidence, .scorecard-verdict { grid-column: 2; }
  .scorecard-num { grid-row: 1 / span 3; }
  .scorecard-verdict { margin-top: 8px; }
  .fiscal-row { grid-template-columns: 1fr; }
  .fiscal-cell { border-right: 0; padding-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 28px; }
  .fiscal-cell:last-child { border-bottom: 0; padding-bottom: 0; }
  .outlier-wrap { grid-template-columns: 1fr; gap: 24px; }
  .outlier-body {
    border-left: 0; padding-left: 0;
    border-top: 1px solid rgba(221,210,193,0.25); padding-top: 32px;
  }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Homepage TOC responsive */
  .toc-wrap { padding: 0 24px; }
  .toc-row { grid-template-columns: auto 1fr; gap: 24px; padding: 32px 0; }
  .toc-row .arrow { display: none; }
  .toc-row:hover { padding-left: 0; }

  /* Desistance teaser responsive */
  .desistance-wrap { padding: 0 24px; }

  /* Voices responsive */
  .voice-block, .voice-featured-wrap { grid-template-columns: 1fr; gap: 32px; }
  .voice-block { padding: 64px 0; }
  .voice-featured-wrap { padding: 0 24px; }
  .voice-featured-wrap .voice-letter { order: 1; }
  .voice-featured-wrap .voice-copy { order: 2; }

  /* Archive interrupt responsive */
  .archive-interrupt-wrap { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; }
  .archive-interrupt-body { border-left: 0; padding-left: 0; border-top: 1px solid rgba(221,210,193,0.25); padding-top: 28px; }

  /* Mosaic responsive */
  .mosaic-wrap { padding: 0 24px; }
  .mosaic-head { grid-template-columns: 1fr; gap: 8px; }
  .mosaic-grid { grid-template-columns: 1fr; gap: 40px; }
  .mosaic-divider { display: none; }
  .mosaic-item { padding: 24px 0; }
  .mosaic-item:nth-child(3) { border-top: 1px solid var(--rule-strong); padding-top: 24px; }

  /* Provenance responsive */
  .provenance-wrap { padding: 0 24px; }
}
