:root {
  --navy: #1e3a70;
  --navy-dark: #13264a;
  --orange: #ee7a1a;
  --orange-soft: #f4994a;
  --cream: #f3eee2;
  --paper: #fbfaf6;
  --paper-warm: #f8f3e8;
  --ink: #1a1f2e;
  --ink-soft: #2c3447;
  --muted: #5a6478;
  --rule: rgba(30,58,112,0.12);
  --shadow-sm: 0 2px 8px rgba(19,38,74,0.06);
  --shadow-md: 0 8px 24px rgba(19,38,74,0.10);
  --shadow-lg: 0 16px 48px rgba(19,38,74,0.15);
  --radius: 6px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--paper);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased;
}

/* NAV */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251,250,246,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.topnav .brand {
  font-family: var(--serif); font-weight: 600;
  font-size: 15px; letter-spacing: 0.5px;
  color: var(--navy); text-decoration: none;
}
.topnav .brand .ten { color: var(--orange); }
.topnav nav ul { display: flex; gap: 24px; list-style: none; align-items: center; }
.topnav nav a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.6px; text-transform: uppercase;
  transition: color 0.2s;
}
.topnav nav a:hover { color: var(--orange); }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--navy); }
@media (max-width: 920px) {
  .topnav nav { display: none; }
  .topnav nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); box-shadow: var(--shadow-md); padding: 16px 24px;
  }
  .topnav nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .nav-toggle { display: block; }
}

section { padding: 110px 32px; }
@media (max-width: 768px) { section { padding: 70px 20px; } }
.container { max-width: 1200px; margin: 0 auto; }
.container.narrow { max-width: 800px; }
.container.wide { max-width: 1400px; }

.section-eyebrow {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 20px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500; color: var(--navy); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.section-title em { font-style: italic; color: var(--orange); }
.section-lede {
  font-family: var(--serif); font-size: 1.25rem;
  font-weight: 300; font-style: italic;
  color: var(--ink-soft); line-height: 1.55;
  margin-bottom: 50px; max-width: 720px;
}
.divider { width: 60px; height: 2px; background: var(--orange); margin: 28px 0; }

/* HERO - Variation B */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  color: var(--paper); background: var(--navy-dark); overflow: hidden;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: 55vh 1fr; min-height: 100vh; }
}
.hero-img {
  position: relative; background-size: cover; background-position: center 18%;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(19,38,74,0.35) 0%, transparent 22%);
}
@media (max-width: 900px) {
  .hero-img::after { background: linear-gradient(180deg, transparent 50%, rgba(19,38,74,0.85) 100%); }
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative; overflow: hidden;
}
.hero-content::before {
  content: ''; position: absolute;
  top: 40%; right: -100px; width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,122,26,0.15), transparent 70%);
  pointer-events: none;
}
@media (max-width: 900px) { .hero-content { padding: 56px 32px; } }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0.9; margin-bottom: 26px; font-weight: 600;
  color: var(--orange-soft);
}
.hero-rule { width: 50px; height: 2px; background: var(--orange); margin-bottom: 28px; }
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144; text-align: left;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--orange-soft); }
.hero-sub {
  font-family: var(--serif); font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-style: italic; font-weight: 300; opacity: 0.9;
  max-width: 540px; margin-bottom: 38px; line-height: 1.55;
}
.hero-meta {
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; opacity: 0.7;
}
.hero-meta .dot { color: var(--orange); margin: 0 10px; opacity: 0.9; }
.scroll-cue {
  position: absolute; bottom: 28px; left: 64px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.6; animation: bob 2.4s ease-in-out infinite;
  color: var(--paper);
}
.scroll-cue::after { content: ''; display: block; width: 1px; height: 26px; background: currentColor; margin: 10px 0 0; }
@media (max-width: 900px) { .scroll-cue { left: 32px; bottom: 24px; } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* PROMISE */
.promise-section { background: var(--cream); }
.promise-stage-note {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; color: var(--muted);
  text-align: center; margin: 0 auto 50px;
  max-width: 640px; line-height: 1.6;
  padding: 22px 32px;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.promise-grid { display: grid; gap: 24px; max-width: 880px; margin: 0 auto; }
.promise-card {
  background: var(--paper); padding: 42px 46px;
  border-left: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.promise-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.promise-card.is-opening, .promise-card.is-closing {
  background: var(--navy); color: var(--paper); text-align: center;
}
.promise-card.is-closing { background: var(--navy-dark); padding: 56px 48px; }
.p-voice-tag {
  display: inline-block; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); font-weight: 700;
  background: rgba(238,122,26,0.08);
  padding: 4px 12px; border-radius: 99px; margin-bottom: 14px;
}
.is-opening .p-voice-tag, .is-closing .p-voice-tag { background: rgba(238,122,26,0.18); }
.p-commitment {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 500; color: var(--navy);
  margin-bottom: 8px; line-height: 1.2;
}
.is-opening .p-commitment, .is-closing .p-commitment { color: var(--paper); }
.is-closing .p-commitment { font-size: 1.9rem; font-style: italic; }
.p-speaker { font-weight: 600; font-size: 0.98rem; color: var(--ink); margin-bottom: 2px; }
.is-opening .p-speaker, .is-closing .p-speaker { color: var(--paper); }
.p-role { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.is-opening .p-role, .is-closing .p-role { color: rgba(251,250,246,0.7); }
.p-text {
  font-family: var(--serif); font-size: 1.05rem;
  line-height: 1.65; color: var(--ink-soft);
}
.is-opening .p-text, .is-closing .p-text { color: var(--paper); font-size: 1.15rem; }
.is-closing .p-text { font-style: italic; }

/* FIVE VOICES (with photos) */
.fv-section { background: var(--paper-warm); }
.fv-grid { display: grid; gap: 36px; max-width: 1100px; margin: 0 auto; }
.fv-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 32px;
  align-items: center;
  background: var(--paper);
  padding: 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.fv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fv-card:nth-child(even) { direction: rtl; }
.fv-card:nth-child(even) .fv-body { direction: ltr; }
@media (max-width: 760px) {
  .fv-card { grid-template-columns: 1fr; direction: ltr !important; }
}
.fv-photo {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden; border-radius: var(--radius);
  background: var(--ink);
}
.fv-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.fv-body { padding: 8px 8px 8px 0; }
.fv-tag {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 14px;
}
.fv-quote {
  font-family: var(--serif); font-size: 1.35rem;
  font-style: italic; font-weight: 400;
  color: var(--navy); line-height: 1.4;
  margin-bottom: 20px;
}
.fv-speaker { font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 2px; }
.fv-role { font-size: 0.85rem; color: var(--muted); }


/* MERGED PROMISE + FIVE VOICES */
.promise-merged { background: var(--cream); }
.pm-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 980px) {
  .pm-layout { grid-template-columns: 1fr; gap: 40px; }
}
.pm-rail {
  position: sticky;
  top: 100px;
  padding-right: 8px;
}
@media (max-width: 980px) { .pm-rail { position: static; } }
.pm-rail .section-eyebrow { margin-bottom: 14px; }
.pm-rail .section-title { font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1.08; margin-bottom: 16px; }
.pm-rail .divider { width: 60px; height: 2px; background: var(--orange); margin-bottom: 22px; }
.pm-intro {
  font-family: var(--serif); font-size: 1.02rem;
  line-height: 1.6; color: var(--ink-soft);
  margin-bottom: 18px;
}
.pm-stage-note {
  font-family: var(--serif); font-style: italic;
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.55; padding: 14px 0 18px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}
.pm-rail-list { list-style: none; padding: 0; margin: 0; }
.pm-rail-list li { margin-bottom: 2px; }
.pm-rail-list a {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 10px;
  row-gap: 2px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s;
}
.pm-rail-list a:hover { background: rgba(238,122,26,0.08); transform: translateX(3px); }
.pm-rail-num {
  font-family: var(--serif); font-weight: 600;
  color: var(--orange); font-size: 0.95rem;
  grid-row: 1 / span 2;
  align-self: center;
}
.pm-rail-name {
  font-weight: 600; font-size: 0.95rem; color: var(--navy);
}
.pm-rail-tag {
  font-size: 0.78rem; color: var(--muted);
  font-style: italic;
}

.pm-voices { display: flex; flex-direction: column; gap: 56px; }

.pm-opening, .pm-closing {
  background: var(--navy);
  color: var(--paper);
  padding: 36px 40px;
  border-radius: var(--radius);
  text-align: center;
}
.pm-closing { background: var(--navy-dark); padding: 44px 40px; }
.pm-opening-tag, .pm-closing-tag {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-soft);
  font-weight: 700; margin-bottom: 14px;
}
.pm-opening-text, .pm-closing-text {
  font-family: var(--serif); font-size: 1.1rem;
  line-height: 1.65; color: var(--paper);
}
.pm-closing-text { font-style: italic; font-size: 1.2rem; }

.pm-voice {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--paper);
  padding: 28px 30px;
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 90px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pm-voice:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
@media (max-width: 760px) {
  .pm-voice { grid-template-columns: 1fr; padding: 22px; }
}
.pm-voice-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}
.pm-voice-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.pm-voice-body { padding: 4px 0; }
.pm-num {
  font-family: var(--serif); font-style: italic;
  font-size: 0.95rem; color: var(--orange);
  margin-bottom: 6px; letter-spacing: 1px;
}
.pm-tag {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 12px;
}
.pm-title {
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 500; color: var(--navy);
  line-height: 1.2; margin-bottom: 10px;
}
.pm-speaker { font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 2px; }
.pm-role { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; font-style: italic; }
.pm-passage {
  font-family: var(--serif); font-size: 1.04rem;
  line-height: 1.7; color: var(--ink-soft);
}

/* MOVEMENTS */
.chapter-section { position: relative; }
.chapter-section.welcome { background: var(--paper); }
.chapter-section.weave { background: var(--paper-warm); }
.chapter-section.widen { background: var(--navy); color: var(--paper); }
.chapter-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center; margin-bottom: 70px;
}
@media (max-width: 900px) { .chapter-header { grid-template-columns: 1fr; gap: 32px; } }
.chapter-section.widen .section-title { color: var(--paper); }
.chapter-section.widen .section-title em { color: var(--orange-soft); }
.chapter-section.widen .section-lede { color: rgba(251,250,246,0.85); }
.chapter-section.widen .section-eyebrow { color: var(--orange-soft); }
.chapter-pull {
  font-family: var(--serif); font-size: 1.55rem;
  font-weight: 300; font-style: italic;
  color: var(--navy); line-height: 1.3;
  border-left: 3px solid var(--orange);
  padding: 8px 0 8px 22px; margin-bottom: 14px;
}
.chapter-section.widen .chapter-pull { color: var(--paper); }
.chapter-pull-attr { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.5px; }
.chapter-section.widen .chapter-pull-attr { color: rgba(251,250,246,0.7); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.photo-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: var(--ink);
  aspect-ratio: 3/2; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.photo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.photo-card:hover img { transform: scale(1.04); }

/* TIMELINE */
.timeline-section { background: var(--navy-dark); color: var(--paper); position: relative; overflow: hidden; }
.timeline-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(238,122,26,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(238,122,26,0.05), transparent 40%);
  pointer-events: none;
}
.timeline-section .section-title { color: var(--paper); }
.timeline-section .section-title em { color: var(--orange-soft); }
.timeline-section .section-lede { color: rgba(251,250,246,0.85); }
.timeline-section .section-eyebrow { color: var(--orange-soft); }
.timeline { position: relative; max-width: 880px; margin: 0 auto; padding-left: 60px; }
.timeline::before {
  content: ''; position: absolute;
  left: 23px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg, var(--orange), transparent);
}
.t-item { position: relative; margin-bottom: 32px; padding-bottom: 4px; }
.t-marker {
  position: absolute; left: -60px; top: 0;
  width: 48px; height: 48px; background: var(--orange); color: var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 14px;
  box-shadow: 0 0 0 6px var(--navy-dark);
}
.t-content h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.25rem; color: var(--paper);
  line-height: 1.25; margin-bottom: 6px;
}
.t-speaker { font-size: 0.95rem; font-weight: 600; color: var(--orange-soft); margin-bottom: 2px; }
.t-role { font-size: 0.85rem; color: rgba(251,250,246,0.65); margin-bottom: 10px; }
.t-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: rgba(251,250,246,0.92);
  line-height: 1.5; padding-left: 16px;
  border-left: 2px solid rgba(238,122,26,0.4);
  margin-top: 10px;
}

/* THREADS */
.threads-section { background: var(--cream); }
.threads-wall { max-width: 1200px; margin: 0 auto; }
.threads-panel { margin-bottom: 70px; }
.threads-panel h3 {
  font-family: var(--serif); font-size: 1.7rem;
  font-weight: 500; color: var(--navy); margin-bottom: 8px;
}
.threads-panel .panel-sub {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--muted); margin-bottom: 28px;
}

/* PRESIDENTS GRID with bios */
.presidents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.pres-card {
  background: var(--paper); padding: 24px 26px;
  border-radius: var(--radius);
  border-top: 3px solid var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.pres-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pres-card.is-current {
  background: var(--navy); color: var(--paper);
  border-top-color: var(--orange);
}
.pc-tag {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 8px;
}
.is-current .pc-tag { color: var(--orange-soft); }
.pc-name {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 600; color: var(--navy);
  margin-bottom: 4px;
}
.is-current .pc-name { color: var(--paper); }
.pc-years {
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 14px; font-style: italic;
}
.is-current .pc-years { color: rgba(251,250,246,0.75); }
.pc-bio {
  font-size: 0.9rem; line-height: 1.55;
  color: var(--ink-soft); font-family: var(--sans);
}
.is-current .pc-bio { color: rgba(251,250,246,0.9); }

.thread-card {
  background: var(--paper); padding: 18px 20px;
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.thread-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.thread-card h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; color: var(--navy); }
.tc-role { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }
.threads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }

.ensembles-list {
  list-style: none; margin-top: 22px;
  padding-top: 22px; border-top: 1px dashed var(--rule);
}
.ensembles-list li {
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--ink-soft); padding: 5px 0;
}
.ensembles-list li::before { content: '♪'; color: var(--orange); margin-right: 12px; }
.thanks-wrap { margin-top: 28px; padding-top: 22px; border-top: 1px dashed var(--rule); }
.thanks-wrap h5 {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 14px;
}
.thanks-name {
  display: inline-block; font-size: 0.85rem;
  color: var(--ink-soft); padding: 4px 12px;
  margin: 3px; background: rgba(255,255,255,0.5);
  border-radius: 99px;
}
.cp-group { margin-bottom: 32px; }
.cp-group-title {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--rule);
}
.cp-names { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px; }
.cp-name { display: flex; flex-direction: column; padding: 7px 0; }
.cp-name strong { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.cp-name span { font-size: 0.8rem; color: var(--muted); font-style: italic; }
.threads-footnote {
  font-family: var(--serif); font-style: italic;
  text-align: center; color: var(--muted);
  padding-top: 28px; border-top: 1px solid var(--rule);
  font-size: 0.95rem;
}

/* VOICES */
.voices-section { background: var(--paper); }
.voices-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px; max-width: 1200px; margin: 0 auto;
}
.voice-card {
  background: var(--cream); padding: 38px 34px;
  border-radius: var(--radius);
  position: relative;
  border-left: 3px solid var(--orange);
  transition: transform 0.3s, box-shadow 0.3s;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.voice-card.is-featured {
  grid-column: 1 / -1;
  background: var(--navy); color: var(--paper);
  padding: 60px 52px; border-left-width: 5px; text-align: center;
}
.voice-card::before {
  content: '"'; position: absolute; top: -8px; left: 16px;
  font-family: var(--serif); font-size: 4rem;
  color: var(--orange); font-weight: 800; line-height: 1;
}
.voice-card.is-featured::before {
  font-size: 6rem; color: var(--orange-soft);
  left: 50%; transform: translateX(-50%); top: -16px;
}
.v-quote {
  font-family: var(--serif); font-size: 1.12rem;
  font-style: italic; line-height: 1.5;
  color: var(--ink); margin-bottom: 22px;
}
.is-featured .v-quote { font-size: 1.85rem; color: var(--paper); font-weight: 300; }
.voice-card footer { display: flex; flex-direction: column; }
.v-speaker {
  font-style: normal; font-weight: 600;
  font-size: 0.95rem; color: var(--navy); margin-bottom: 2px;
}
.is-featured .v-speaker { color: var(--orange-soft); font-size: 1.1rem; }
.v-role { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.3px; }
.is-featured .v-role { color: rgba(251,250,246,0.75); font-size: 0.9rem; }

/* SPEECH */
.speech-section { background: var(--paper-warm); }
.speech-toggle {
  display: inline-block; background: var(--navy); color: var(--paper);
  padding: 14px 28px; border: none; border-radius: 99px;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: all 0.3s;
  margin-top: 20px;
}
.speech-toggle:hover { background: var(--orange); transform: translateY(-2px); }
.speech-full {
  display: none; margin-top: 44px;
  background: var(--paper); padding: 60px 68px;
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  max-width: 760px;
}
@media (max-width: 768px) { .speech-full { padding: 36px 28px; } }
.speech-full.is-open { display: block; }
.speech-full p {
  font-family: var(--serif); font-size: 1.13rem;
  line-height: 1.75; margin-bottom: 22px; color: var(--ink-soft);
}
.speech-full p:first-child::first-letter {
  font-family: var(--serif); font-weight: 500;
  font-size: 4rem; float: left; line-height: 0.9;
  margin-right: 8px; margin-top: 6px; color: var(--orange);
}

/* VIDEO */
.video-section { background: var(--navy-dark); color: var(--paper); }
.video-section .section-title { color: var(--paper); }
.video-section .section-lede { color: rgba(251,250,246,0.85); }
.video-section .section-eyebrow { color: var(--orange-soft); }
.video-wrap {
  position: relative; padding-top: 56.25%; background: #000;
  border-radius: var(--radius); overflow: hidden;
  max-width: 960px; margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* CHAPTER NAV */
.chapters-nav-section { background: var(--paper-warm); }
.chapters-nav-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.chapter-nav-card {
  display: block; background: var(--paper); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.chapter-nav-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cnc-img { aspect-ratio: 3/2; background-size: cover; background-position: center; background-color: var(--navy); }
.cnc-body { padding: 24px 26px; }
.cnc-num {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  font-weight: 700; margin-bottom: 10px;
}
.cnc-title {
  font-family: var(--serif); font-size: 1.25rem;
  font-weight: 500; color: var(--navy);
  margin-bottom: 6px; line-height: 1.2;
}
.cnc-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; font-style: italic; }
.cnc-count { font-size: 12px; letter-spacing: 1px; color: var(--orange); font-weight: 600; }
.cnc-count::after { content: ' →'; }

/* CTA */
.cta-section { background: var(--cream); }
.cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.cta-card {
  background: var(--paper); padding: 38px 30px;
  border-radius: var(--radius); text-decoration: none;
  color: var(--ink); display: flex; flex-direction: column;
  border-top: 4px solid var(--orange);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-sm);
}
.cta-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cta-icon { font-size: 28px; margin-bottom: 14px; color: var(--orange); }
.cta-card h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.cta-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.5; }
.cta-link { margin-top: auto; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--orange); }
.cta-card.donor { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); color: var(--paper); border-top-color: var(--orange); }
.cta-card.donor h3 { color: var(--paper); }
.cta-card.donor p { color: rgba(251,250,246,0.85); }

/* FOOTER — cleaned up per item 12 */
footer.site-footer {
  background: var(--navy-dark);
  color: rgba(251,250,246,0.75);
  padding: 64px 32px 48px;
  text-align: center;
}
footer .container { max-width: 760px; margin: 0 auto; }
footer .footer-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--orange-soft);
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto; margin-right: auto;
}
footer .footer-meta {
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 0.92rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(251,250,246,0.12);
}
footer .footer-meta .sep { color: var(--orange-soft); opacity: 0.5; }
footer .footer-credit {
  display: flex; flex-direction: column;
  gap: 8px; align-items: center;
  margin-bottom: 24px;
}
footer .footer-credit-row {
  display: flex; gap: 8px; align-items: baseline;
  flex-wrap: wrap; justify-content: center;
  font-size: 0.9rem;
}
footer .footer-credit-label {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-soft);
  font-weight: 700;
}
footer a { color: var(--orange-soft); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--orange); text-decoration: underline; }
footer .copy {
  font-size: 0.78rem; opacity: 0.55;
  letter-spacing: 0.3px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(13,20,38,0.95);
  z-index: 1000; display: none;
  align-items: center; justify-content: center;
  padding: 32px; cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 95%; max-height: 90vh;
  object-fit: contain; border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.reveal.in { opacity: 1; transform: translateY(0); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 5px; }
