/* ============================================================
   Hope Through Prophecy — Official Brand System
   Midnight Navy · Kingdom Gold · Hope Blue
   Cinzel (headlines) · Cormorant Garamond (accents) · Inter (body)
   ============================================================ */

:root {
  /* Core palette */
  --navy: #101b2f;          /* Midnight Navy — primary dark */
  --navy-2: #16233d;        /* raised surface */
  --navy-3: #1c2c49;        /* card border / hover */
  --gold: #c89a3d;          /* Kingdom Gold — primary accent */
  --gold-bright: #f6c14a;   /* Radiant Gold — highlights */
  --blue: #2f7ac7;          /* Hope Blue — links */
  --blue-light: #71b9ff;    /* Sky Blue */
  --crimson: #7b2323;       /* Deep Crimson */
  --stone: #5d6775;         /* Stone Gray */
  --sand: #f4f0e6;          /* Light Sand — light sections */
  --sand-2: #ece6d6;
  --white: #ffffff;
  --olive: #6e7d4f;

  /* Text */
  --ink: #16202f;
  --ink-soft: #4a5361;
  --paper: #f3f1ea;
  --paper-soft: rgba(243, 241, 234, 0.74);
  --paper-faint: rgba(243, 241, 234, 0.5);

  --line-dark: rgba(255, 255, 255, 0.10);
  --line-gold: rgba(200, 154, 61, 0.32);
  --line-light: rgba(22, 32, 47, 0.12);

  --radius: 14px;
  --radius-lg: 20px;
  --radius-btn: 8px;
  --maxw: 1200px;

  --head: 'Cinzel', 'Times New Roman', serif;
  --accent: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--body);
  background: var(--navy);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

a { color: inherit; text-decoration: none; }

.gold { color: var(--gold-bright); }
.gold-ink { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 13px;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 14px 26px; border-radius: var(--radius-btn);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-lg { padding: 16px 32px; font-size: 14px; }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-bright); color: var(--navy); }

.btn-outline { background: transparent; color: var(--gold-bright); border-color: var(--line-gold); }
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(200,154,61,.08); }

.btn-navy { background: var(--navy); color: var(--paper); }
.btn-navy:hover { background: #0a1220; }

.btn-light { background: var(--sand); color: var(--navy); }
.btn-light:hover { background: #fff; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; transition: padding .3s ease, background .3s ease, backdrop-filter .3s ease, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 32px;
  background: rgba(16, 27, 47, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; color: var(--gold); flex-shrink: 0; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  font-family: var(--head); font-weight: 600; font-size: 15px; line-height: 1;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper);
  display: inline-flex; flex-direction: column; gap: 2px;
}
.brand-text span { font-family: var(--accent); font-weight: 500; font-size: 9px; letter-spacing: 0.34em; color: var(--gold); }

.nav-pill {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  padding: 7px; border-radius: 100px; backdrop-filter: blur(10px);
}
.nav-pill a {
  font-family: var(--body); font-size: 14px; color: var(--paper-soft);
  padding: 8px 16px; border-radius: 100px; transition: background .2s, color .2s;
}
.nav-pill a:hover { background: rgba(255,255,255,0.08); color: var(--gold-bright); }

.nav-cta { padding: 11px 22px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 82vw); z-index: 99;
  background: var(--navy-2); border-left: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 6px; padding: 96px 24px 24px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--head); font-size: 15px; letter-spacing: .06em; text-transform: uppercase; padding: 14px 8px; color: var(--paper-soft); border-bottom: 1px solid var(--line-dark); }
.mobile-menu a.btn { justify-content: center; margin-top: 16px; border-bottom: none; color: var(--navy); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 150px 32px 120px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 12%, #1a2b47 0%, var(--navy) 55%, #0b1424 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .dawn {
  position: absolute; bottom: -10%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center bottom, rgba(246,193,74,0.30), rgba(200,154,61,0.10) 38%, transparent 66%);
  filter: blur(8px);
}
.hero-bg .rays {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1400px; height: 900px;
  background: conic-gradient(from 180deg at 50% 100%,
    transparent 0deg,
    rgba(246,193,74,0.05) 12deg, transparent 20deg,
    rgba(246,193,74,0.06) 32deg, transparent 42deg,
    transparent 318deg, rgba(246,193,74,0.06) 328deg,
    transparent 340deg, rgba(246,193,74,0.05) 348deg, transparent 360deg);
  -webkit-mask: radial-gradient(ellipse at 50% 100%, #000 30%, transparent 72%);
          mask: radial-gradient(ellipse at 50% 100%, #000 30%, transparent 72%);
}
.stars {
  position: absolute; inset: 0 0 40% 0;
  background-image:
    radial-gradient(1.4px 1.4px at 18% 22%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.4px 1.4px at 72% 16%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 42% 34%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 86% 30%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.2px 1.2px at 55% 12%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 12% 40%, rgba(255,255,255,.4), transparent);
  opacity: .7;
}
.ridge { position: absolute; bottom: 0; left: 0; width: 100%; height: 40%; }
.ridge path { fill: var(--navy); }
.ridge-far { opacity: .55; height: 44%; }
.ridge-far path { fill: #0d1a30; }
.ridge-near path { fill: #0a1322; }

/* Optional real photo layer — covers the CSS art when assets/hero.jpg exists,
   transparent (art shows) when it doesn't. Drop-in, no code change needed. */
.hero-bg .photo, .cta-bg .photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg .photo { background-image: url('assets/hero.jpg'); background-image: image-set(url('assets/hero.webp') type('image/webp'), url('assets/hero.jpg') type('image/jpeg')); }
@media (max-width: 720px) { .hero-bg .photo { background-image: url('assets/hero-1080.webp'); } }
.cta-bg .photo { background-image: url('assets/hero.jpg'); background-image: image-set(url('assets/hero.webp') type('image/webp'), url('assets/hero.jpg') type('image/jpeg')); }
.hero-bg .scrim, .cta-bg .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,27,47,.72) 0%, rgba(16,27,47,.45) 45%, rgba(11,20,36,.82) 100%);
}

.hero-inner { position: relative; z-index: 2; max-width: 940px; margin: 0 auto; width: 100%; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold-bright); }
.eyebrow.dark { color: var(--stone); }
.eyebrow.dark .dot { background: var(--gold); box-shadow: none; }

.hero-title {
  font-family: var(--head); font-weight: 700;
  font-size: clamp(2.7rem, 7.5vw, 6rem); line-height: 1.04; letter-spacing: 0.01em;
  text-transform: uppercase; margin-bottom: 30px; color: var(--white);
}

.hero-sub { font-family: var(--body); font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--paper-soft); max-width: 620px; margin: 0 auto 40px; }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }

.hero-card {
  display: inline-flex; align-items: center; gap: 16px; text-align: left;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-gold);
  backdrop-filter: blur(12px); border-radius: var(--radius); padding: 14px 18px;
}
.hero-card-thumb { width: 46px; height: 46px; color: var(--gold-bright); flex-shrink: 0; }
.hero-card-thumb svg { width: 100%; height: 100%; }
.hero-card-label { display: block; font-family: var(--body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.hero-card-body strong { font-family: var(--head); font-weight: 500; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--paper); }
.hero-card-link { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--navy); font-size: 18px; transition: transform .25s; }
.hero-card-link:hover { transform: translateX(3px); }

.hero-scripture {
  position: relative; z-index: 2; max-width: 760px; margin: 60px auto 0; text-align: center;
  font-family: var(--accent); font-style: italic; font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.5; color: var(--paper-soft);
}
.hero-scripture span { display: block; margin-top: 10px; font-style: normal; font-family: var(--body); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* ---------- MARQUEE ---------- */
.marquee { background: var(--navy-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; align-items: center; gap: 28px; white-space: nowrap; width: max-content; animation: marquee 42s linear infinite; }
.marquee-track span { font-family: var(--accent); font-style: italic; font-size: 1.55rem; color: var(--paper-soft); }
.marquee-track .sep { color: var(--gold); font-style: normal; font-size: .85rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- DANIEL 2 (scroll-scrubbed statue + timeline) ---------- */
.daniel2 { position: relative; height: 420vh; background: #1c273c; }
.d2-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.d2-band { display: none; }
.d2-wrap { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-start; padding: 74px 0 40px; }
.d2-header { position: relative; text-align: center; flex-shrink: 0; margin-bottom: 8px; }
.d2-header .eyebrow { justify-content: center; color: var(--gold-bright); margin-bottom: 14px; }
.d2-header .section-title { color: var(--white); }
.d2-header .section-title .gold { color: var(--gold-bright); }
.d2-intro { display: block; font-family: var(--accent); font-size: 1.2rem; line-height: 1.5; color: var(--paper-soft); max-width: 560px; margin: 12px auto 0; text-align: center; }
.d2-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; flex: 1; }

.d2-track { display: flex; gap: 22px; }
.d2-rail { position: relative; width: 2px; flex-shrink: 0; background: var(--line-dark); border-radius: 2px; margin: 6px 0; }
.d2-rail-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: linear-gradient(var(--gold-bright), var(--gold)); border-radius: 2px; box-shadow: 0 0 12px rgba(246,193,74,.5); }

.d2-stages { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.d2-stage { display: flex; gap: 16px; align-items: flex-start; padding: 10px 0; opacity: .58; transition: opacity .45s ease, transform .45s ease; transform: translateX(-4px); }
.d2-stage.active { opacity: 1; transform: translateX(0); }
.d2-stage.past { opacity: .72; }
.d2-metal { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset; }
.d2-metal[data-m="gold"]   { background: linear-gradient(135deg, #f6d582, #c89a3d); }
.d2-metal[data-m="silver"] { background: linear-gradient(135deg, #e9edf2, #9aa6b4); }
.d2-metal[data-m="bronze"] { background: linear-gradient(135deg, #d79a5b, #8a5a2b); }
.d2-metal[data-m="iron"]   { background: linear-gradient(135deg, #9aa2ad, #4a515c); }
.d2-metal[data-m="clay"]   { background: linear-gradient(135deg, #9aa2ad 0 49%, #b06b45 51% 100%); }
.d2-metal[data-m="stone"]  { background: radial-gradient(circle at 35% 30%, #f6c14a, #8a6f36); }
.d2-part { display: block; font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.d2-stage h3 { font-family: var(--head); font-weight: 600; font-size: 1.35rem; letter-spacing: .02em; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.d2-date { display: block; font-family: var(--body); font-size: .82rem; color: var(--stone); margin: 4px 0 6px; }
.d2-stage p { font-family: var(--accent); font-style: italic; font-size: 1.02rem; line-height: 1.35; color: var(--paper-soft); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s ease, opacity .5s ease; }
.d2-stage.active p { max-height: 90px; opacity: 1; }

.d2-right { display: flex; flex-direction: column; align-items: center; }
.d2-media { position: relative; width: 100%; max-width: 430px; aspect-ratio: 560 / 746; }
.d2-glow { position: absolute; inset: -12% -8%; background: radial-gradient(ellipse at 50% 42%, rgba(246,193,74,.16), transparent 60%); filter: blur(10px); }
.d2-canvas { position: relative; z-index: 1; width: 100%; height: 100%; display: block; }
/* Video already sits on #1c273c matching the section — no feather; just a
   whisper of the same navy at the very edge to hide any compression seam. */
.d2-vignette { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 94% 92% at 50% 50%, transparent 84%, #1c273c 100%); }
.d2-dust { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: visible; }
.d2-mote { position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,193,74,.9), rgba(246,193,74,0) 70%); filter: blur(.4px);
  animation-name: dustFloat; animation-timing-function: linear; animation-iteration-count: infinite; opacity: 0; }
@keyframes dustFloat {
  0% { transform: translateY(24px) translateX(0) scale(.8); opacity: 0; }
  18% { opacity: .8; }
  82% { opacity: .45; }
  100% { transform: translateY(-140px) translateX(14px) scale(1.1); opacity: 0; }
}
.d2-caption { margin-top: 20px; font-family: var(--accent); font-style: italic; font-size: 1.05rem; color: var(--stone); text-align: center; }

/* ---------- SCRIPTURE STREAM (scroll-driven parallax) ---------- */
.bible-stream {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 0;
  background: radial-gradient(120% 90% at 50% 42%, #13233f 0%, #0a1220 68%);
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.bible-stream .stream {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; justify-content: center; gap: clamp(18px, 4.5vh, 54px);
}
.stream-row { display: flex; flex-wrap: nowrap; justify-content: center; gap: 46px; white-space: nowrap; will-change: transform; }
.stream-row span {
  font-family: var(--accent); font-style: italic; font-size: clamp(1.5rem, 3.4vw, 2.9rem);
  color: rgba(243, 241, 234, 0.14); letter-spacing: .01em;
}
.stream-row:nth-child(2) span, .stream-row:nth-child(4) span { color: rgba(243, 241, 234, 0.20); }
.stream-row span.key {
  font-family: var(--head); font-style: normal; font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.35rem, 3vw, 2.5rem); color: var(--gold-bright);
  text-shadow: 0 0 26px rgba(246, 193, 74, 0.35);
}
.stream-head {
  position: relative; z-index: 2; text-align: center; max-width: 760px; padding: 30px 40px;
}
.stream-head::before {
  content: ""; position: absolute; inset: -30% -25%; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(10, 18, 32, 0.92) 32%, rgba(10, 18, 32, 0.55) 55%, transparent 74%);
}
.stream-head .section-desc { margin-top: 18px; }

/* ---------- SECTIONS ---------- */
.section { padding: 120px 0; position: relative; }
.section.light { background: var(--sand); color: var(--ink); }
.section.navy { background: var(--navy); color: var(--paper); }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-title {
  font-family: var(--head); font-weight: 600; font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.12; letter-spacing: 0.015em; text-transform: uppercase;
}
.navy .section-title { color: var(--white); }
.section-title.center { text-align: center; }
.section-desc { margin-top: 22px; font-family: var(--accent); font-size: 1.3rem; line-height: 1.5; color: var(--paper-soft); }
.section-desc.dark { color: var(--ink-soft); }
.watch { padding-top: 96px; padding-bottom: 96px; }
.watch .section-head { margin-bottom: 40px; }
.watch-frame { max-width: 1040px; margin: 0 auto; aspect-ratio: 256 / 135; background: #000; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(200, 154, 61, 0.25); }
.watch-frame video { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 720px) { .watch { padding-top: 64px; padding-bottom: 64px; } .watch-frame { border-radius: 12px; } }

/* ---------- ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.about-copy .section-title { margin-bottom: 26px; }
.about-copy .lead { font-family: var(--accent); font-size: 1.28rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 34px; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--sand); padding: 40px 32px; }
.stat-num { display: block; font-family: var(--head); font-weight: 700; font-size: clamp(2.3rem, 3.6vw, 3.2rem); letter-spacing: 0; color: var(--gold); line-height: 1; }
.stat-label { display: block; margin-top: 12px; font-family: var(--body); font-size: .95rem; color: var(--ink-soft); }

/* ---------- PILLARS ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  display: block; background: var(--navy-2); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: 40px 34px;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.pillar:hover { transform: translateY(-6px); border-color: var(--line-gold); background: var(--navy-3); }
.pillar-icon { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 14px; background: rgba(200,154,61,0.12); color: var(--gold-bright); margin-bottom: 26px; }
.pillar-icon svg { width: 30px; height: 30px; }
.pillar h3 { font-family: var(--head); font-weight: 600; font-size: 1.3rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 12px; }
.pillar p { color: var(--paper-soft); font-size: 1rem; margin-bottom: 18px; }
.pillar-link { font-family: var(--body); font-weight: 600; font-size: .9rem; letter-spacing: .04em; color: var(--blue-light); }

/* ---------- TOPICS ---------- */
.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.topic-card {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-lg);
  padding: 38px 32px; transition: transform .35s ease, box-shadow .35s ease;
}
.topic-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(16,27,47,0.12); }
.topic-index { font-family: var(--head); font-weight: 700; font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 20px; letter-spacing: .04em; }
.topic-card h3 { font-family: var(--head); font-weight: 600; font-size: 1.25rem; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.topic-card p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- VIDEO SERIES / STUDIES ---------- */
.studies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.study-card { display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-2); border: 1px solid var(--line-dark); transition: transform .35s ease, border-color .35s ease; }
.study-card:hover { transform: translateY(-6px); border-color: var(--line-gold); }
.study-thumb { position: relative; aspect-ratio: 16/10; display: grid; place-items: center; }
/* Gradient placeholders — the series section was retired with the Little Rock rebuild. */
.thumb-a { background: radial-gradient(120% 120% at 30% 20%, #22375c, #0c1626); }
.thumb-b { background: radial-gradient(120% 120% at 70% 20%, #3a2f1a, #0c1626); }
.thumb-c { background: radial-gradient(120% 120% at 50% 25%, #1a2f3a, #0c1626); }
.study-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,20,36,.6), transparent 60%); }
.study-thumb .play { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-size: 20px; padding-left: 4px; transition: transform .3s; }
.study-card:hover .play { transform: scale(1.1); }
.study-body { padding: 26px 24px 28px; }
.study-tag { display: inline-block; font-family: var(--body); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.study-body h3 { font-family: var(--head); font-weight: 600; font-size: 1.2rem; letter-spacing: .02em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; line-height: 1.25; }
.study-body p { color: var(--paper-soft); font-size: .98rem; margin-bottom: 16px; }
.study-link { font-family: var(--body); font-weight: 600; font-size: .9rem; letter-spacing: .04em; color: var(--blue-light); }

/* ---------- BRAND VOICE ---------- */
.voice .section-head { margin-bottom: 48px; }
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.voice-col { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 40px 38px; }
.voice-col.say { background: var(--navy); border-color: var(--line-gold); }
.voice-label { display: inline-block; font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 22px; padding: 6px 14px; border-radius: 100px; }
.voice-label.out { color: var(--stone); background: rgba(93,103,117,.12); }
.voice-label.in { color: var(--navy); background: var(--gold); }
.voice-col ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.voice-col li { display: flex; gap: 14px; align-items: flex-start; font-family: var(--accent); font-size: 1.32rem; line-height: 1.4; color: var(--ink); }
.voice-col.say li { color: var(--paper); }
.voice-col .x { color: var(--crimson); font-size: 1rem; margin-top: 4px; }
.voice-col .c { color: var(--gold-bright); font-size: 1rem; margin-top: 4px; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { padding: 36px 28px; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); background: var(--navy-2); }
.step-num { font-family: var(--head); font-weight: 700; font-size: 1.3rem; color: var(--gold); display: block; margin-bottom: 20px; }
.step h3 { font-family: var(--head); font-weight: 600; font-size: 1.2rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 10px; }
.step p { color: var(--paper-soft); font-size: .98rem; }

/* ---------- TESTIMONIES ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 36px 32px; }
.stars-row { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 1rem; }
.testi p { font-family: var(--accent); font-style: italic; font-size: 1.42rem; line-height: 1.42; color: var(--ink); margin-bottom: 22px; }
.testi cite { font-style: normal; font-family: var(--body); font-size: .9rem; color: var(--ink-soft); }

/* ---------- SPLIT ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card { padding: 54px 46px; border-radius: var(--radius-lg); border: 1px solid var(--line-dark); background: linear-gradient(160deg, var(--navy-3), var(--navy-2)); position: relative; overflow: hidden; }
.split-card::after { content: ""; position: absolute; top: -70px; right: -70px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(200,154,61,0.16), transparent 70%); }
.split-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 14px; background: rgba(200,154,61,0.12); color: var(--gold-bright); margin-bottom: 26px; }
.split-icon svg { width: 30px; height: 30px; }
.split-card h3 { font-family: var(--head); font-weight: 600; font-size: 1.6rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 14px; }
.split-card p { color: var(--paper-soft); margin-bottom: 28px; max-width: 380px; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 130px 32px; overflow: hidden; text-align: center;
  background: radial-gradient(120% 100% at 50% 100%, #1a2b47, var(--navy) 60%); }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg .dawn { position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%); width: 900px; height: 700px; background: radial-gradient(ellipse at center bottom, rgba(246,193,74,0.22), transparent 62%); }
.cta-bg .rays { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 1200px; height: 800px; background: conic-gradient(from 180deg at 50% 100%, transparent 0deg, rgba(246,193,74,0.05) 20deg, transparent 40deg, transparent 320deg, rgba(246,193,74,0.05) 340deg, transparent 360deg); -webkit-mask: radial-gradient(ellipse at 50% 100%, #000 30%, transparent 70%); mask: radial-gradient(ellipse at 50% 100%, #000 30%, transparent 70%); }
.cta-inner { position: relative; z-index: 2; max-width: 720px; }
.center-eb { justify-content: center; }
.cta-title { font-family: var(--head); font-weight: 700; font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.1; letter-spacing: .015em; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.cta-sub { font-family: var(--accent); font-size: 1.32rem; line-height: 1.5; color: var(--paper-soft); max-width: 560px; margin: 0 auto 38px; }

.newsletter { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 14px; }
.newsletter input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); border-radius: var(--radius-btn); padding: 15px 20px; color: var(--paper); font-family: var(--body); font-size: 15px; }
.newsletter input::placeholder { color: var(--paper-faint); }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.form-note { color: var(--gold-bright); font-size: .95rem; margin-bottom: 6px; }

.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ---------- FOOTER ---------- */
.footer { background: #0b1424; border-top: 1px solid var(--line-dark); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--paper-soft); max-width: 320px; font-size: .98rem; }
.footer-col h3 { font-family: var(--head); font-weight: 600; font-size: .92rem; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--paper-soft); font-size: .96rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; border-top: 1px solid var(--line-dark); color: var(--paper-faint); font-size: .88rem; flex-wrap: wrap; }
.footer-verse { font-family: var(--accent); font-style: italic; font-size: 1.08rem; color: var(--gold); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-pill, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .pillars, .topics-grid, .studies-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split, .voice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .daniel2 { height: 360vh; }
  .d2-inner { grid-template-columns: 1fr; gap: 24px; }
  .d2-right { order: -1; }
  .d2-media { max-width: 280px; }
  .d2-intro { margin-bottom: 22px; }
  .d2-stage p { font-size: .95rem; }
}
@media (max-width: 620px) {
  .container { padding: 0 22px; }
  .section { padding: 84px 0; }
  .pillars, .topics-grid, .studies-grid, .testi-grid, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter { flex-direction: column; }
  .newsletter button { width: 100%; justify-content: center; }
  .hero { padding-top: 130px; }
  .footer-bottom { flex-direction: column; }

  /* Daniel 2 — compact mobile layout so the statue stays on-screen */
  .daniel2 { height: 320vh; }
  .d2-wrap { padding: 58px 0 20px; }
  .d2-header { margin-bottom: 12px; }
  .d2-header .eyebrow, .d2-intro { display: none; }
  .d2-header .section-title { font-size: 1.6rem; }
  .d2-inner { grid-template-columns: 1fr; gap: 10px; justify-items: center; }
  .d2-right { order: -1; width: 100%; }
  .d2-media { max-width: 172px; }
  .d2-caption { display: none; }
  .d2-left { width: 100%; }
  .d2-track { gap: 14px; }
  .d2-rail { display: none; }
  .d2-stages { gap: 4px; }
  .d2-stage { padding: 5px 0; gap: 12px; }
  .d2-stage h3 { font-size: 1.05rem; }
  .d2-stage .d2-metal { margin-top: 3px; }
  .d2-stage:not(.active) .d2-part,
  .d2-stage:not(.active) .d2-date { display: none; }
  .d2-stage p { font-size: .92rem; }
  .d2-stage.active p { max-height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* Daniel 2: unpin and show everything statically */
  .daniel2 { height: auto; }
  .d2-sticky { position: static; height: auto; padding: 100px 0; }
  .d2-stage, .d2-stage p { opacity: 1; max-height: none; }
}


/* ============================================================
   LITTLE ROCK LANDING PAGE — Oct 9–31, 2026
   Appended after base system so these rules win on cascade.
   ============================================================ */

:root { --announce-h: 40px; }

/* ---------- Announcement bar ---------- */
.announce {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  height: var(--announce-h);
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, #0c1526 0%, #1a2b47 50%, #0c1526 100%);
  border-bottom: 1px solid var(--line-gold);
  transition: transform .35s ease;
}
.announce.hidden { transform: translateY(-100%); }
.announce-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 0 22px; max-width: var(--maxw); width: 100%;
  justify-content: center; flex-wrap: nowrap; overflow: hidden;
}
.announce-tag {
  font-family: var(--body); font-size: 10.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold-bright);
  padding: 3px 9px; border-radius: 4px; flex-shrink: 0;
}
.announce-text {
  font-size: 13px; color: var(--paper-soft); letter-spacing: .01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.announce-text strong { color: var(--paper); font-weight: 600; }
.announce-link {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold-bright);
  border-bottom: 1px solid transparent; flex-shrink: 0;
  transition: border-color .2s ease;
}
.announce-link:hover { border-bottom-color: var(--gold-bright); }
.announce-link .arrow { display: inline-block; transition: transform .2s ease; }
.announce-link:hover .arrow { transform: translateX(3px); }

/* nav sits under the announcement bar until the page scrolls */
.nav { top: var(--announce-h); }
.nav.scrolled { top: 0; }

/* ---------- Hero: two-column conversion layout ---------- */
.hero-lr { padding: calc(150px + var(--announce-h)) 32px 110px; min-height: auto; }
.hero-lr .hero-inner.hero-split {
  max-width: 1240px; text-align: left;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px; align-items: start;
}
.hero-lr .hero-title {
  font-size: clamp(2.4rem, 4.6vw, 4.15rem); margin-bottom: 26px;
}
.hero-lr .hero-sub { margin: 0 0 34px; max-width: 560px; }
.hero-lr .eyebrow { margin-bottom: 22px; }

/* hero fact list */
.hero-facts { list-style: none; display: grid; gap: 16px; margin: 0 0 34px; }
.hero-facts li { display: flex; align-items: flex-start; gap: 14px; }
.hf-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(200, 154, 61, 0.12);
  border: 1px solid var(--line-gold); color: var(--gold-bright);
}
.hf-icon svg { width: 19px; height: 19px; }
.hero-facts div { display: flex; flex-direction: column; gap: 2px; }
.hero-facts strong {
  font-family: var(--body); font-size: .96rem; font-weight: 600;
  color: var(--paper); letter-spacing: .01em;
}
.hero-facts div span { font-size: .855rem; color: var(--paper-soft); line-height: 1.5; }

/* countdown */
.countdown {
  display: flex; align-items: flex-end; gap: 26px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--line-dark);
}
.cd-unit { display: flex; flex-direction: column; gap: 3px; }
.cd-num {
  font-family: var(--head); font-weight: 600; font-size: 2.35rem;
  line-height: 1; color: var(--gold-bright); font-variant-numeric: tabular-nums;
}
.cd-label {
  font-size: 10.5px; letter-spacing: .17em; text-transform: uppercase;
  color: var(--paper-faint);
}
.cd-note {
  font-family: var(--accent); font-style: italic; font-size: 1.02rem;
  color: var(--paper-faint); margin-left: 4px; padding-bottom: 4px;
}
.countdown.past { display: none; }

/* ---------- Reserve card ---------- */
.reserve-card {
  background: var(--sand);
  border: 1px solid rgba(200, 154, 61, 0.34);
  border-radius: var(--radius-lg);
  padding: 34px 32px 30px;
  box-shadow: 0 30px 70px -22px rgba(0, 0, 0, 0.62);
  position: sticky; top: calc(var(--announce-h) + 96px);
  color: var(--ink);
}
.rc-head { margin-bottom: 22px; }
.rc-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #7d5c1a; margin-bottom: 10px;
}
.rc-title {
  font-family: var(--head); font-weight: 600; font-size: 1.72rem;
  text-transform: uppercase; letter-spacing: .015em;
  color: var(--ink); line-height: 1.15; margin-bottom: 10px;
}
.rc-sub { font-size: .885rem; color: var(--ink-soft); line-height: 1.6; }
.rc-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.rc-list li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--ink); line-height: 1.5; }
.rc-list li::before { content: ""; position: absolute; left: 0; top: .42em; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200, 154, 61, 0.18); }
a.rc-submit { text-decoration: none; }

.rc-form { display: grid; gap: 14px; }
.rc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rc-field { display: flex; flex-direction: column; gap: 6px; }
.rc-field > span {
  font-size: 11.5px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-soft);
}
.rc-field > span em { font-style: normal; font-weight: 400; opacity: .68; text-transform: none; letter-spacing: .02em; }
.rc-field input,
.rc-field select {
  font-family: var(--body); font-size: .95rem; color: var(--ink);
  background: #fffdf8; border: 1.5px solid rgba(22, 32, 47, 0.16);
  border-radius: var(--radius-btn); padding: 12px 13px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none; appearance: none;
}
.rc-field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a5361' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 12px;
  padding-right: 36px;
}
.rc-field input:focus,
.rc-field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.22);
}
.rc-field input::placeholder { color: rgba(74, 83, 97, 0.5); }
.rc-field input:user-invalid { border-color: var(--crimson); }
.rc-hp { position: absolute; left: -9999px; opacity: 0; }

.rc-submit { width: 100%; justify-content: center; margin-top: 6px; }
.rc-submit[disabled] { opacity: .6; cursor: wait; transform: none; }
.rc-fineprint {
  font-size: .77rem; color: var(--ink-soft); opacity: .82;
  text-align: center; line-height: 1.55;
}
.rc-status {
  margin-top: 16px; padding: 13px 15px; border-radius: var(--radius-btn);
  font-size: .89rem; line-height: 1.55;
}
.rc-status.ok { background: rgba(110, 125, 79, 0.16); border: 1px solid rgba(110, 125, 79, 0.44); color: #47562c; }
.rc-status.err { background: rgba(123, 35, 35, 0.09); border: 1px solid rgba(123, 35, 35, 0.34); color: var(--crimson); }

/* ---------- What you'll learn ---------- */
.learn-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.learn-card {
  background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 30px 26px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.learn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 154, 61, 0.5);
  box-shadow: 0 18px 40px -20px rgba(22, 32, 47, 0.3);
}
.learn-num {
  font-family: var(--head); font-weight: 700; font-size: 1.55rem;
  color: var(--gold); line-height: 1;
}
.learn-card h3 {
  font-family: var(--head); font-weight: 600; font-size: 1.16rem;
  text-transform: uppercase; letter-spacing: .02em; color: var(--ink); line-height: 1.25;
}
.learn-card p { font-size: .91rem; color: var(--ink-soft); line-height: 1.65; flex: 1; }
.learn-nights {
  font-size: 11px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: #7d5c1a;
  padding-top: 12px; border-top: 1px solid var(--line-light);
}
.learn-cta { text-align: center; margin-top: 52px; }

/* ---------- Schedule ---------- */
.sched-wrap { display: grid; gap: 52px; max-width: 940px; margin: 0 auto; }
.sched-week-title {
  font-family: var(--head); font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--paper-faint);
  padding-bottom: 14px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line-dark);
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.sched-week-title span { color: var(--gold-bright); }
.sched-list { list-style: none; display: grid; }
.sched-night {
  display: grid; grid-template-columns: 132px 1fr; gap: 24px;
  padding: 20px 18px 20px 14px; border-radius: var(--radius);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .25s ease, transform .25s ease;
}
.sched-night:last-child { border-bottom: none; }
.sched-night:hover { background: rgba(255, 255, 255, 0.035); transform: translateX(3px); }
.sn-date {
  display: flex; flex-direction: column; gap: 2px;
  padding-left: 14px; border-left: 2px solid var(--line-gold);
}
.sn-day {
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--paper-faint);
}
.sn-num {
  font-family: var(--head); font-weight: 600; font-size: 1.14rem;
  color: var(--white); line-height: 1.2;
}
.sn-time { font-size: .8rem; color: var(--gold-bright); letter-spacing: .04em; }
.sn-body { display: flex; flex-direction: column; gap: 5px; }
.sn-index {
  font-size: 10.5px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #8b95a4;
}
.sn-body h4 {
  font-family: var(--head); font-weight: 500; font-size: 1.1rem;
  color: var(--paper); line-height: 1.34; letter-spacing: .01em;
}
.sn-body p {
  font-family: var(--accent); font-style: italic; font-size: 1rem;
  color: var(--blue-light); opacity: .8;
}
.sched-night.sched-final { background: rgba(200, 154, 61, 0.07); }
.sched-night.sched-final .sn-date { border-left-color: var(--gold-bright); }
.sched-cta { text-align: center; margin-top: 58px; }

/* ---------- Speaker ---------- */
.speaker-grid {
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 64px; align-items: center;
}
.speaker-frame { position: relative; }
.speaker-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 60% at 50% 22%, rgba(246, 193, 74, 0.28), transparent 62%),
    linear-gradient(165deg, #1e3050 0%, var(--navy) 58%, #0b1424 100%);
  border: 1px solid var(--line-gold);
  box-shadow: 0 26px 60px -26px rgba(22, 32, 47, 0.55);
  position: relative; overflow: hidden;
}
.speaker-photo { background-image: url('assets/speaker.jpg'); background-image: image-set(url('assets/speaker.webp') type('image/webp'), url('assets/speaker.jpg') type('image/jpeg')); background-size: cover; background-position: 50% 20%; }
.speaker-badge {
  position: absolute; bottom: -14px; left: 26px;
  background: var(--gold); color: var(--navy);
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; padding: 9px 16px; border-radius: 6px;
  box-shadow: 0 8px 22px -8px rgba(22, 32, 47, 0.5);
}
.speaker-copy .section-title { margin-bottom: 22px; color: var(--ink); }
.speaker-lead {
  font-family: var(--accent); font-size: 1.32rem; line-height: 1.55;
  color: var(--ink); margin-bottom: 18px;
}
.speaker-copy > p { font-size: .98rem; color: var(--ink-soft); line-height: 1.75; }
.speaker-quote {
  font-family: var(--accent); font-style: italic; font-size: 1.28rem;
  line-height: 1.6; color: var(--ink);
  border-left: 3px solid var(--gold); padding: 4px 0 4px 22px;
  margin: 30px 0 18px;
}
.speaker-sig {
  font-size: 11.5px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: #7d5c1a;
}

/* ---------- Attend / FAQ ---------- */
.attend-grid {
  display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px; align-items: start;
}
.attend-map {
  background: linear-gradient(165deg, #16233d 0%, #0d1728 100%);
  border: 1px solid var(--line-gold); border-radius: var(--radius-lg);
  padding: 36px 32px; position: sticky; top: 120px;
}
.am-label {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 14px;
}
.am-inner h3 {
  font-family: var(--head); font-weight: 600; font-size: 1.4rem;
  text-transform: uppercase; letter-spacing: .015em;
  color: var(--white); line-height: 1.24; margin-bottom: 14px;
}
.am-inner address {
  font-style: normal; font-size: .95rem; color: var(--paper-soft);
  line-height: 1.7; margin-bottom: 22px;
}
.am-inner .btn { margin-bottom: 26px; }
.am-list { list-style: none; display: grid; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.am-list li { font-size: .89rem; color: var(--paper-faint); line-height: 1.6; }
.am-list strong {
  display: block; font-size: 10.5px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}

.faq { display: grid; gap: 2px; }
.faq-item {
  border-bottom: 1px solid var(--line-dark);
  padding: 4px 0;
}
.faq-item summary {
  font-family: var(--head); font-weight: 500; font-size: 1.05rem;
  color: var(--paper); letter-spacing: .012em;
  padding: 20px 44px 20px 0; cursor: pointer; position: relative;
  list-style: none; transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-item summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 1.8px solid var(--gold);
  border-bottom: 1.8px solid var(--gold);
  transform: rotate(45deg); transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item[open] summary { color: var(--gold-bright); }
.faq-item p {
  font-size: .95rem; color: var(--paper-soft); line-height: 1.75;
  padding: 0 34px 22px 0;
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 4px;
}

/* ---------- Final CTA ---------- */
.cta-verse {
  font-family: var(--accent); font-style: italic; font-size: 1.16rem;
  color: var(--paper-faint); max-width: 620px; margin: 46px auto 0;
  line-height: 1.6;
}
.cta-verse span {
  display: block; margin-top: 10px; font-style: normal;
  font-family: var(--body); font-size: 11.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 95;
  display: none; flex-direction: column; align-items: center; gap: 1px;
  background: var(--gold); color: var(--navy);
  padding: 13px 20px; border-radius: 10px;
  box-shadow: 0 12px 34px -10px rgba(0, 0, 0, 0.66);
  transform: translateY(140%); transition: transform .35s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sc-main {
  font-size: 13.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
}
.sc-sub { font-size: 11px; letter-spacing: .06em; opacity: .74; }

/* ============================================================
   LANDING — RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-lr .hero-inner.hero-split { grid-template-columns: 1fr; gap: 46px; }
  .reserve-card { position: static; max-width: 520px; }
  .learn-grid { grid-template-columns: 1fr 1fr; }
  .speaker-grid, .attend-grid { grid-template-columns: 1fr; gap: 44px; }
  .attend-map { position: static; }
  .speaker-frame { max-width: 380px; }
}

@media (max-width: 860px) {
  .announce-text { display: none; }
  .announce-inner { justify-content: center; gap: 12px; }
}

@media (max-width: 620px) {
  :root { --announce-h: 38px; }
  .hero-lr { padding: calc(120px + var(--announce-h)) 22px 80px; }
  .hero-lr .hero-title { font-size: clamp(2.05rem, 8.6vw, 2.9rem); }
  .learn-grid { grid-template-columns: 1fr; }
  .reserve-card { padding: 26px 22px 24px; }
  .rc-row { grid-template-columns: 1fr; }
  .countdown { gap: 18px; }
  .cd-num { font-size: 1.95rem; }
  .cd-note { width: 100%; margin-left: 0; }
  .sched-night { grid-template-columns: 1fr; gap: 10px; padding: 18px 0 18px 14px; }
  .sn-date { flex-direction: row; align-items: baseline; gap: 9px; padding-left: 0; border-left: none; }
  .sched-night { border-left: 2px solid var(--line-gold); border-radius: 0; }
  .sched-night.sched-final { border-left-color: var(--gold-bright); }
  .sched-night:hover { transform: none; }
  .speaker-quote { font-size: 1.14rem; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .cta-verse { font-size: 1.04rem; }
}

@media (prefers-reduced-motion: reduce) {
  .announce, .sticky-cta { transition: none; }
  .sticky-cta.show { transform: translateY(0); }
}

/* ---- contrast fixes (Lighthouse 2026-09-14) ---- */
.section.light .eyebrow { color: #7a5c1e; }
.section.light .eyebrow .dot { background: #7a5c1e; box-shadow: none; }
.learn-num { color: #7a5c1e; }
.d2-date { color: #aeb8c6; }
.d2-stage:not(.active) h3 { color: rgba(255, 255, 255, 0.88); }

.cd-cal { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.cd-cal:hover { color: #fff; }
