/* =========================================================
   No Longer Forgotten — Marketing Site
   Shared stylesheet
   ========================================================= */

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

:root {
  --ink:        #0A0A10;
  --bg:         #0E0E16;
  --bg-2:       #12121C;
  --card:       #17171F;
  --card-2:     #1C1C28;
  --line:       rgba(201, 162, 39, 0.16);
  --line-soft:  rgba(255, 255, 255, 0.06);

  --gold:       #C9A227;
  --gold-bright:#E3BC46;
  --gold-pale:  #EAD9A0;
  --ember:      #E0712B;

  --cream:      #F2ECDA;
  --white:      #FFFFFF;
  --text:       #C5C0B2;
  --muted:      #8C887A;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Raleway', system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: #4DA3FF; font-style: normal; text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: #7FB9FF; }
/* Phone numbers: bright white, never underlined, never italic */
a[href^="tel:"], a[href^="tel:"]:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  font-style: normal;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

section { position: relative; }

.band { padding: 82px 0; }
.band--tight { padding: 58px 0; }
.band--alt { background: var(--bg-2); }
.band--ink { background: var(--ink); }

.section-head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); color: var(--cream); font-weight: 400; line-height: 1.16; }

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 22px; }
h3 { font-size: 1.5rem; }

h1 em, h2 em, h3 em, .gold-em { font-style: italic; color: var(--gold-bright); }

.jesus { color: #FF3B30; }
/* Inside Mission/Vision pull-quotes, render Jesus at the body-text size like other Jesus instances on the page */
.serif-quote .jesus { font-size: 1.1rem; font-style: normal; }

p { margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.18rem; color: var(--cream); font-weight: 300; }

.serif-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 34px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn--gold {
  background: var(--card-2);
  color: var(--gold-pale);
  border-color: rgba(234,217,160,0.35);
}
.btn--gold:hover {
  transform: translateY(-3px);
  background: #211F2B;
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  box-shadow: 0 18px 44px -10px rgba(201,162,39,0.7), 0 0 42px -4px rgba(227,188,70,0.65);
}
.btn--ghost {
  background: transparent;
  color: var(--gold-pale);
  border-color: rgba(234,217,160,0.35);
}
.btn--ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -10px rgba(201,162,39,0.7), 0 0 42px -4px rgba(227,188,70,0.65);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row.center { justify-content: center; }

/* ---------- Glow Button — back to The Ministry hub from pillar pages ---------- */
.glow-btn-wrap { text-align: center; padding: 8px 20px 64px; }
.glow-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-pale);
  background: var(--card-2);
  border: 1px solid rgba(234,217,160,0.35);
  padding: 17px 38px;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
}
.glow-btn:hover {
  transform: translateY(-3px);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  box-shadow: 0 18px 44px -10px rgba(201,162,39,0.7), 0 0 42px -4px rgba(227,188,70,0.65);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,16,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease, border-color .3s ease;
}
.nav.scrolled { background: rgba(8,8,13,0.97); border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .bt-1 {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--cream);
  letter-spacing: 1px;
}
.brand-text .bt-1 b { color: var(--gold-bright); font-weight: 400; }
.brand-text .bt-2 {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color .25s ease;
}
.nav-links a { white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links .nav-cta {
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: var(--radius);
  color: var(--gold-pale);
}
.nav-links .nav-cta:hover { color: var(--gold-bright); border-color: var(--gold); }
/* Hide the Get Involved menu item — site-wide */
.nav-links li:has(a[href="get-involved.html"]) { display: none; }
/* Donate Now — glowing gold button on the far right */
.nav-links .nav-donate {
  border-color: var(--gold-bright);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 0 20px -2px rgba(227,188,70,0.55);
  transition: color .25s ease, box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.nav-links .nav-donate:hover {
  color: var(--ink);
  border-color: var(--gold-bright);
  box-shadow: 0 0 30px 0 rgba(227,188,70,0.9);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 108px 0 16px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 32%, rgba(201,162,39,0.22), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(224,113,43,0.12), transparent 70%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 22%, transparent 70%, var(--bg) 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FFFFFF;
  border: 1px solid var(--line);
  background: rgba(201,162,39,0.06);
  padding: 12px 28px;
  border-radius: 30px;
  margin-bottom: 32px;
  animation: badge-flash 2.4s ease-in-out infinite;
}
@keyframes badge-flash { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 { color: var(--white); margin-bottom: 6px; }
.hero h1 .tm { font-size: 0.32em; vertical-align: super; color: var(--gold); font-style: normal; }
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  color: var(--gold-bright);
  margin: 16px 0 28px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.5);
}
.hero-tagline .jesus { font-weight: 600; }
.hero-story p { color: #F5D480; }
.hero-story em { color: var(--white); font-style: italic; font-weight: 700; }
.hero-mission {
  max-width: 560px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
  color: #F5D480;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 38px;
  font-size: 1.08rem;
}
.hero .btn-row { justify-content: center; }
.hero-scroll {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll span {
  display: block;
  width: 1px; height: 46px;
  margin: 14px auto 0;
  background: linear-gradient(var(--gold), transparent);
}

/* ---------- Page hero (sub-pages) ---------- */
/* Matches the God's Call / Why I Said Yes intro-line style site-wide */
.page-hero {
  position: relative;
  padding: 120px 0 24px;
  text-align: center;
}
.page-hero .container { position: relative; z-index: 2; max-width: 800px; padding: 0 32px; }
.page-hero .eyebrow { display: none; }
.page-hero h1,
.page-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: -0.01em;
}
.page-hero h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  line-height: 1.3;
}
.page-hero p {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  color: #F5D480;
  line-height: 1.55;
  letter-spacing: 0;
  max-width: 780px;
  margin: 1.1rem auto 0;
}
/* Scripture verse under a page title — white, consistent across every page */
.page-hero .title-verse-ref,
.intro-line .title-verse-ref {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin: 14px auto 0;
}
.page-hero .title-verse,
.intro-line .title-verse {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.28rem;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 780px;
  margin: 12px auto 0;
}
/* "To God be the glory!" sign-off at the bottom of every hero */
.page-hero .hero-glory,
.intro-line .hero-glory,
.hero .hero-glory {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--white);
  margin-top: 22px;
}
/* Tighten the gap between the page hero (or intro-line) and the section below
   — matches the board page spacing site-wide */
.page-hero + .band,
.page-hero + section,
.intro-line + .band,
.intro-line + section { padding-top: 8px; }
.page-hero.with-image::after {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  z-index: 0;
}

/* ---------- Scripture / quote ---------- */
.scripture {
  text-align: center;
  padding: 32px 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201,162,39,0.08), transparent 70%),
    var(--ink);
}
.scripture .verse {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.42;
}
.scripture .ref {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.scripture .cross { color: var(--gold); font-size: 1.6rem; margin-bottom: 24px; }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--top { align-items: start; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  width: 100%;
}
.split-media .frame-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.2), transparent 70%);
  z-index: -1;
}

/* ---------- Generic card grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 30px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); background: var(--card-2); }
.card .card-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
  margin-bottom: 14px;
}
.card .card-icon {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.card-icon img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: block;
}
.card-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 22px;
}
/* Landscape photos (e.g. the Madison street scene) keep a banner crop */
.card-img--wide { aspect-ratio: 16 / 10; }

/* Clickable hub cards (Ministry hub, etc.) */
.hub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 44px -28px rgba(0,0,0,0.8);
}
.hub-card h3 { color: var(--cream); }
.hub-card p { color: var(--text); flex: 1 0 auto; }
.hub-card .hub-more {
  margin-top: 16px;
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
}
.hub-card:hover .hub-more { color: var(--gold); }
.card h3 { color: var(--cream); margin-bottom: 12px; }
.card p { font-size: 0.97rem; }

/* ---------- Value cards ---------- */
.value {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .3s ease, background .3s ease;
}
.value:hover { transform: translateY(-5px); background: var(--card-2); }
.value h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 8px;
}
.value p { font-size: 0.93rem; }
.band--alt .value p:not(.serif-quote) {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 1.1rem;
  color: #F5D480;
  line-height: 1.55;
  letter-spacing: 0;
}

/* ---------- Biblical foundation verses ---------- */
.verse-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.verse-card .v-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 14px;
}
.verse-card .v-ref {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.cornerstone-climax {
  max-width: 800px;
  margin: 52px auto 0;
  text-align: center;
}
.cornerstone-climax .fc-cross { color: var(--gold); font-size: 1.5rem; margin-bottom: 16px; }
.cornerstone-climax .fc-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.42;
  color: var(--cream);
  margin-bottom: 16px;
}
.cornerstone-climax .fc-ref {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Activity blocks ---------- */
.activity {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.activity:last-child { margin-bottom: 0; }
.activity.flip .activity-art { order: 2; }
.activity-art {
  background: linear-gradient(150deg, var(--card-2), var(--ink));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.activity-art .big-icon { font-size: 3.6rem; margin-bottom: 14px; }
.big-icon img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.75);
  display: block;
}
.activity-art .art-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-pale);
}
.activity-art .art-sub {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}
.activity .tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

/* ---------- Part-of-book cards ---------- */
.parts { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.part-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  transition: transform .3s ease, border-color .3s ease;
}
.part-card:hover { transform: translateY(-6px); border-color: var(--line); }
.part-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.part-card .part-body { padding: 26px 24px; }
.part-card .part-body h3 { color: var(--gold-pale); margin-bottom: 8px; }
.part-card .part-body p { font-size: 0.93rem; }

/* ---------- Facility grid ---------- */
.facility-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.facility {
  display: flex;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: background .3s ease;
}
.facility:hover { background: var(--card-2); }
.facility .f-mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 26px;
}
.facility .f-name { color: var(--cream); font-family: var(--serif); font-size: 1.25rem; }
.facility .f-scripture { font-size: 0.85rem; color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 15px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(201,162,39,0.15));
}
.tl-item { position: relative; padding: 0 0 28px 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 8px; top: 4px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
}
.tl-item.done::before { background: var(--gold); }
.tl-year {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.tl-item h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 6px; }
.tl-item p { font-size: 0.95rem; }
.tl-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin-top: 22px;
  margin-bottom: 2px;
}
.timeline-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  max-width: 940px;
  margin: 0 auto;
}
.timeline-cols .timeline { max-width: none; margin: 0; }
.tl-finale {
  text-align: center;
  max-width: 580px;
  margin: 44px auto 0;
}
.tl-finale::before {
  content: "";
  display: block;
  width: 15px; height: 15px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--gold);
}
.tl-finale .tl-year { color: var(--gold-bright); }
.tl-finale h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 6px; }
.tl-finale p { font-size: 0.95rem; }

/* ---------- Board / person rows (photo left, bio right) ---------- */
.board-list { max-width: 920px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.person {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-align: left;
  padding: 32px;
}
.person::after { content: ""; display: block; clear: both; }
.person-photo {
  float: left;
  width: 220px;
  height: 220px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  filter: grayscale(15%);
  margin: 4px 28px 14px 0;
}
.founders-grid { max-width: 520px; margin-left: auto; margin-right: auto; }
.board-subhead {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.5rem;
  margin: 50px 0 26px;
}
.person-photo--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, #20202C, #14141C);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.8rem;
  letter-spacing: 3px;
  filter: none;
  border: 1px solid var(--line-soft);
}
.person-photo--ph span { opacity: .9; }
.person-body { padding: 0; }
.person-body h3 { color: var(--cream); margin-bottom: 4px; }
.person-role {
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.person-body p { font-size: 0.95rem; }
.person-email {
  display: inline-block;
  margin-top: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #4DA3FF;
  text-decoration: underline;
  text-underline-offset: 2px;
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.person-email:hover { border-color: #4DA3FF; color: #7FB9FF; }

/* ---------- Board list ---------- */
.board-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.board-row .b-name { color: var(--cream); font-family: var(--serif); font-size: 1.25rem; }
.board-row .b-pos { font-size: 0.92rem; color: var(--text); }
.board-row .b-tag {
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); align-self: center; white-space: nowrap;
}

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .stat-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--gold-bright);
  font-style: italic;
  line-height: 1;
}
.stat .stat-label {
  font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); margin-top: 10px;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201,162,39,0.16), transparent 70%),
    var(--ink);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 560px; margin: 0 auto 32px; }

/* ---------- Notice / pending box ---------- */
.notice {
  background: rgba(201,162,39,0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.notice .n-icon { font-size: 1.6rem; flex-shrink: 0; }
.notice h3 { font-size: 1.2rem; color: var(--gold-pale); margin-bottom: 6px; }
.notice p { font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Form ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 44px 40px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 300;
  padding: 14px 16px;
  transition: border-color .25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }

/* ---------- Inline mail signup ---------- */
.signup {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.signup input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  padding: 16px 18px;
  font-size: 0.95rem;
}
.signup input:focus { outline: none; border-color: var(--gold); }

/* ---------- Book showcase ---------- */
.book-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.book-cover-wrap { position: relative; perspective: 1400px; max-width: 320px; margin-left: auto; margin-right: auto; }
.book-cover-wrap img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 40px 70px -20px rgba(0,0,0,0.8), 0 0 60px -20px rgba(201,162,39,0.4);
  transition: transform .5s ease;
}
.book-cover-wrap img:hover { transform: rotateY(-10deg) translateY(-6px); }
.book-cover-wrap::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.28), transparent 68%);
  z-index: -1;
}

/* ---------- Pull quote ---------- */
.pull {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.pull .pull-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--cream);
  line-height: 1.4;
}
.pull .pull-text b { color: var(--gold-bright); font-weight: 400; }

/* ---------- List with checks ---------- */
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 9px 0 9px 32px;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--line-soft);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 9px;
  color: var(--gold);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 34px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 50px;
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-pale);
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 0.92rem;
  color: #4DA3FF;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.footer-col a:hover { color: #7FB9FF; }
.footer-col a[href*="nolongerforgotten.org"] {
  color: #4DA3FF;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(77, 163, 255, 0.45);
}
.footer-col a[href*="nolongerforgotten.org"]:hover {
  color: #7FB9FF;
  text-decoration-color: #7FB9FF;
}
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--white); margin: 0; }
.footer-disclaimer {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Scroll reveal (progressive enhancement) ----------
   Hidden state applies only when JS is active (.js on <html>),
   so content is never invisible if scripts fail or are disabled. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .1s; }
.js .reveal.d2 { transition-delay: .2s; }
.js .reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { transition: none; opacity: 1; transform: none; }
  .hero-badge, .hero-badge .dot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 69px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8,8,13,0.99);
    border-bottom: 1px solid var(--line);
    padding: 10px 0 24px;
    transform: translateY(-130%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
  }
  .nav.open .nav-links { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 15px 0; }
  .nav-links .nav-cta { display: inline-block; margin-top: 10px; }

  .split, .activity, .activity.flip .activity-art,
  .book-showcase { grid-template-columns: 1fr; gap: 38px; }
  .split.reverse .split-media,
  .activity.flip .activity-art { order: 0; }
  .grid-3, .grid-4, .parts { grid-template-columns: 1fr 1fr; }
  .facility-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .band { padding: 66px 0; }
  .page-hero { padding: 108px 0 20px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 13px 20px; }
  .band { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4, .parts,
  .facility-grid, .form-row { grid-template-columns: 1fr; }
  .timeline-cols { grid-template-columns: 1fr; gap: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .board-row { flex-direction: column; gap: 6px; }
  .board-row .b-tag { align-self: flex-start; }
  .signup { flex-direction: column; }
  .hero { padding-top: 124px; }
  .page-hero { padding: 102px 0 18px; }
  .section-head { margin-bottom: 40px; }
  .card, .form-card { padding: 30px 24px; }
  .person-photo { float: none; display: block; margin: 0 auto 20px; width: 190px; height: 190px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
