/* ═══════════════════════════════════════════════════════════════════════
   The Calling — Shared stylesheet
   Single source of truth for index.html + all /subpage/ routes.
   Extracted from index.html on 2026-05-15 (Phases 4/5/6).
   ═══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  /* Brand core: BLACK + WHITE + three brand blues (water/infinity) */
  --white: #FFFFFF;
  --offwhite: #FEFEFE;
  --cream: #F5F5F5;
  --sky: #F5F5F5;
  --neutral-100: #F5F5F5;
  --neutral-200: #C2C3C3;
  --neutral-300: #C0BFBE;
  --neutral-500: #666666;
  --neutral-700: #4B4846;
  --neutral-800: #383838;
  --neutral-900: #0E0E0E;
  --black: #000001;
  --text: #0E0E0E;
  --text-mid: #4B4846;
  --text-light: #666666;
  --blue-light: #46A4C5;
  --blue: #2B6D91;
  --blue-deep: #194A67;
  /* Spectrum accents — reserved for .kw--* keyword gradients only */
  --cyan: #46A4C5;
  --coral: #E8513D;
  --coral-dark: #DC2626;
  --emerald: #059669;
  --gold: #D4A843;
  --amber: #D97706;
  --indigo: #4338CA;
  --indigo-deep: #1E1B4B;
  --slate-dark: #0E0E0E;
  --serif: 'Instrument Serif', Georgia, serif;
  --serif-wordmark: 'Tinos', 'Times New Roman', Times, serif;
  --sans: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--blue); color: var(--white); }

/* ─── Nav ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  transition: all 0.5s var(--ease-out);
}
nav.scrolled {
  padding: 0.75rem 2.5rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
/* Subpages don't have a hero overlay — nav starts opaque */
nav.solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none; color: var(--text);
}
.nav-brand img {
  height: 44px; width: auto; display: block;
  transition: height 0.4s var(--ease-out), transform 0.5s var(--ease-spring);
  transform-origin: left center;
}
nav.scrolled .nav-brand img { height: 36px; }
.nav-brand:hover img { transform: scale(1.03); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  color: var(--text-mid); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] {
  color: var(--blue-deep); font-weight: 600;
}
.nav-cta {
  background: var(--blue-deep) !important; color: var(--white) !important;
  padding: 0.6rem 1.75rem; border-radius: 100px; font-weight: 600 !important;
  font-size: 0.85rem !important; letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out) !important;
  box-shadow: 0 2px 12px rgba(25,74,103,0.28);
}
.nav-cta:hover {
  background: var(--black) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(25,74,103,0.4);
}
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; z-index: 201;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px; background: var(--text);
  position: absolute; left: 5px; transition: 0.3s var(--ease-out);
  border-radius: 2px;
}
.menu-toggle span:nth-child(1) { top: 9px; }
.menu-toggle span:nth-child(2) { top: 15px; }
.menu-toggle span:nth-child(3) { top: 21px; }
.menu-toggle.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 7rem 2rem 5rem; position: relative; overflow: hidden;
  background: var(--white);
}
.hero-bg {
  position: absolute; inset: -50%; pointer-events: none;
  background:
    radial-gradient(circle at 30% 40%, rgba(70,164,197,0.10) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(43,109,145,0.07) 0%, transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(25,74,103,0.05) 0%, transparent 50%);
  animation: meshDrift 25s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-20px) scale(1.05); }
  100% { transform: translate(-20px,15px) scale(1.02); }
}
.hero-sparkles {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(25,74,103,0.06); border: 1px solid rgba(25,74,103,0.16);
  border-radius: 100px; padding: 10px 24px;
  font-size: 0.8rem; font-weight: 600; color: var(--blue-deep);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) 2.6s forwards;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--blue-deep); border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Hero logo wrapper — sized to match logo.webp proportions */
.hero-logo-wrap {
  position: relative; width: min(360px, 68vw); margin: 0 auto 0.25rem;
}
.hero-logo-wrap .shimmer {
  position: absolute; inset: -10%; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
  opacity: 0; animation: shimmerSweep 4s ease-in-out 3.5s infinite;
}
@keyframes shimmerSweep {
  0% { opacity: 0; transform: translateX(-120%); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateX(120%); }
}

/* Hero logo image — the original Calling logo */
.hero-logo-img {
  width: 100%; height: auto; display: block;
  margin: 0 auto 2.5rem;
  opacity: 0; transform: translateY(12px);
  animation: heroFadeUp 0.9s var(--ease-out) 0.4s forwards;
}

/* ─── Key-word callouts (per-word color spectrum) ─── */
.kw {
  font-weight: 700;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.kw--imagine     { background-image: linear-gradient(135deg, var(--cyan), var(--indigo)); }
.kw--dreamer     { background-image: linear-gradient(135deg, var(--coral), var(--gold)); }
.kw--calling     { background-image: linear-gradient(135deg, var(--blue), var(--blue-deep)); }
.kw--imagination { background-image: linear-gradient(135deg, var(--emerald), var(--cyan)); }
.kw--heaven      { background-image: linear-gradient(135deg, var(--blue-deep), var(--blue-light)); }

/* Hero text */
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.15; max-width: 750px; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) 3s forwards;
}
.hero h1 em { font-style: italic; }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-mid);
  max-width: 580px; line-height: 1.8; font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) 3.3s forwards;
}
.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out) 3.6s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue-deep); color: var(--white);
  padding: 1rem 2.5rem; border-radius: 100px; text-decoration: none;
  font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out); border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(25,74,103,0.32);
}
.btn-primary:hover {
  background: var(--black); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(25,74,103,0.42);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--text);
  padding: 1rem 2.5rem; border-radius: 100px; text-decoration: none;
  font-weight: 600; font-size: 1rem;
  border: 1.5px solid rgba(14,14,14,0.14); transition: all 0.3s var(--ease-out);
}
.btn-secondary:hover {
  border-color: var(--blue-deep); color: var(--blue-deep);
  transform: translateY(-2px); box-shadow: 0 4px 16px rgba(25,74,103,0.14);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  opacity: 0; animation: heroFadeUp 0.8s var(--ease-out) 4s forwards;
}
.hero-scroll span {
  display: block; width: 24px; height: 40px; border: 2px solid var(--text-light);
  border-radius: 12px; position: relative;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--blue); border-radius: 4px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ─── Sections ─── */
section { padding: 7.5rem 2rem; position: relative; }
.container { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 1rem; display: inline-block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.2; margin-bottom: 1.25rem; max-width: 650px;
}
.section-desc {
  font-size: 1.1rem; color: var(--text-mid); max-width: 620px;
  line-height: 1.85; font-weight: 400;
}

/* ─── Mission ─── */
.mission { background: var(--neutral-100); }
.mission .section-label { color: var(--blue-deep); }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 4rem;
}
.mission-card {
  background: var(--white); border-radius: 18px;
  padding: 2.25rem; position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out);
  border-left: 4px solid var(--blue);
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.mission-card:nth-child(1) { border-left-color: var(--blue-deep); }
.mission-card:nth-child(2) { border-left-color: var(--blue); }
.mission-card:nth-child(3) { border-left-color: var(--blue-light); }
.mission-card:nth-child(4) { border-left-color: var(--neutral-800); }
.card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.3rem;
  color: var(--blue-deep);
}
.mission-card:nth-child(1) .card-icon { background: rgba(25,74,103,0.08); }
.mission-card:nth-child(2) .card-icon { background: rgba(43,109,145,0.08); }
.mission-card:nth-child(3) .card-icon { background: rgba(70,164,197,0.10); }
.mission-card:nth-child(4) .card-icon { background: rgba(56,56,56,0.08); color: var(--neutral-800); }
.mission-card h3 {
  font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.6rem;
}
.mission-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; }

/* ─── Impact ─── */
.impact { background: var(--white); }
.impact-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; margin-top: 4rem; text-align: center;
}
.impact-item {
  padding: 2rem 1rem;
  border-radius: 20px;
  background: var(--offwhite);
  transition: transform 0.3s var(--ease-out);
}
.impact-item:hover { transform: translateY(-4px); }
.impact-num {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1; margin-bottom: 0.5rem;
}
.impact-item:nth-child(1) .impact-num { color: var(--blue-deep); }
.impact-item:nth-child(2) .impact-num { color: var(--blue); }
.impact-item:nth-child(3) .impact-num { color: var(--blue-light); }
.impact-item:nth-child(4) .impact-num {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impact-label {
  font-size: 0.85rem; color: var(--text-mid); font-weight: 500;
  letter-spacing: 0.03em;
}

/* ─── Timeline ─── */
.timeline { background: var(--neutral-100); }
.timeline .section-label { color: var(--blue-deep); }
.timeline-track { position: relative; margin-top: 4rem; padding-left: 40px; }
.timeline-line {
  position: absolute; left: 15px; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--blue-light), var(--blue), var(--blue-deep));
  border-radius: 3px;
}
.tl-item {
  position: relative; margin-bottom: 3.5rem; padding-left: 2.5rem;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -33px; top: 6px;
  width: 18px; height: 18px; border-radius: 50%;
  border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--blue);
  background: var(--blue);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.tl-item:nth-child(1) .tl-dot { background: var(--blue-deep); box-shadow: 0 0 0 3px var(--blue-deep); }
.tl-item:nth-child(2) .tl-dot { background: var(--blue); box-shadow: 0 0 0 3px var(--blue); }
.tl-item:nth-child(3) .tl-dot { background: var(--blue-light); box-shadow: 0 0 0 3px var(--blue-light); }
.tl-item:nth-child(4) .tl-dot { background: var(--neutral-800); box-shadow: 0 0 0 3px var(--neutral-800); }
.tl-item:nth-child(5) .tl-dot { background: var(--blue-deep); box-shadow: 0 0 0 3px var(--blue-deep); }
.tl-item:nth-child(6) .tl-dot { background: var(--blue); box-shadow: 0 0 0 3px var(--blue); }
.tl-item:nth-child(7) .tl-dot { background: var(--blue-light); box-shadow: 0 0 0 3px var(--blue-light); }
.tl-item:nth-child(8) .tl-dot { background: var(--neutral-800); box-shadow: 0 0 0 3px var(--neutral-800); }
.tl-item.in-view .tl-dot { transform: scale(1.3); }
.tl-year {
  font-family: var(--serif); font-size: 2.5rem; line-height: 1;
  margin-bottom: 0.15rem;
}
.tl-item:nth-child(1) .tl-year { color: var(--blue-deep); }
.tl-item:nth-child(2) .tl-year { color: var(--blue); }
.tl-item:nth-child(3) .tl-year { color: var(--blue-light); }
.tl-item:nth-child(4) .tl-year { color: var(--neutral-800); }
.tl-item:nth-child(5) .tl-year { color: var(--blue-deep); }
.tl-item:nth-child(6) .tl-year { color: var(--blue); }
.tl-item:nth-child(7) .tl-year { color: var(--blue-light); }
.tl-item:nth-child(8) .tl-year { color: var(--neutral-800); }
.tl-sublabel {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 0.75rem;
}
.tl-title {
  font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.25rem;
}
.tl-location {
  font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.tl-item:nth-child(1) .tl-location { color: var(--blue-deep); }
.tl-item:nth-child(2) .tl-location { color: var(--blue); }
.tl-item:nth-child(3) .tl-location { color: var(--blue-light); }
.tl-item:nth-child(4) .tl-location { color: var(--neutral-800); }
.tl-item:nth-child(5) .tl-location { color: var(--blue-deep); }
.tl-item:nth-child(6) .tl-location { color: var(--blue); }
.tl-item:nth-child(7) .tl-location { color: var(--blue-light); }
.tl-item:nth-child(8) .tl-location { color: var(--neutral-800); }
.tl-desc { color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; max-width: 540px; }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--blue-deep) 55%, var(--blue) 100%);
  text-align: center; padding: 8rem 2rem; overflow: hidden; position: relative;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(70,164,197,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(43,109,145,0.14) 0%, transparent 50%);
  animation: meshDrift 20s ease-in-out infinite alternate;
}
.cta-section .section-label { color: var(--blue-light); }
.cta-section .section-title {
  color: var(--white); max-width: 600px; margin: 0 auto 1rem;
}
.cta-section .section-desc {
  color: rgba(255,255,255,0.78); margin: 0 auto 3rem; text-align: center;
}
.cta-content { position: relative; z-index: 2; }
.donate-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--white); color: var(--blue-deep);
  padding: 1.15rem 3rem; border-radius: 100px; text-decoration: none;
  font-weight: 700; font-size: 1.1rem; letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}
.donate-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.donate-btn svg { width: 20px; height: 20px; color: var(--blue); }

/* ─── Footer ─── */
footer {
  background: var(--slate-dark); color: rgba(255,255,255,0.5);
  padding: 3rem 2rem; text-align: center; font-size: 0.85rem;
}
footer .foot-brand {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; margin-bottom: 1.5rem;
}
footer .foot-logo {
  height: 56px; width: auto; display: block;
  filter: brightness(0) invert(1); opacity: 0.9;
}
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.25rem 2rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s; font-weight: 500;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ─── Sponsor Section ─── */
.sponsor {
  padding: 5rem 1.5rem;
  background: var(--neutral-100);
  border-top: 1px solid rgba(192,191,190,0.5);
  border-bottom: 1px solid rgba(192,191,190,0.5);
  text-align: center;
  position: relative;
}
.sponsor::before, .sponsor::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 64px; height: 1px; background: var(--blue-deep); opacity: 0.35;
}
.sponsor::before { top: 2.25rem; }
.sponsor::after  { bottom: 2.25rem; }
.sponsor-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-deep); margin-bottom: 1.5rem;
}
.sponsor-logo-link {
  display: inline-block; margin-bottom: 1.5rem;
  transition: transform 0.3s var(--ease-spring);
}
.sponsor-logo-link:hover { transform: translateY(-2px); }
.sponsor-logo {
  height: auto; width: clamp(200px, 32vw, 280px);
  display: block;
}
.sponsor-copy {
  font-family: var(--serif); font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-style: italic; color: var(--text);
  max-width: 620px; margin: 0 auto 1.5rem;
  line-height: 1.5;
}
.sponsor-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--blue-deep); text-decoration: none;
  padding: 0.6rem 1.25rem; border-radius: 100px;
  border: 1.5px solid rgba(25,74,103,0.28);
  transition: all 0.3s var(--ease-out);
}
.sponsor-cta:hover {
  background: var(--blue-deep); color: var(--white);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(25,74,103,0.28);
}
.sponsor-cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.sponsor-cta:hover svg { transform: translateX(2px); }
@media (max-width: 600px) {
  .sponsor { padding: 4rem 1.25rem; }
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  section { padding: 5rem 1.5rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .timeline-track { padding-left: 32px; }
  .tl-item { padding-left: 2rem; }
  .tl-dot { left: -25px; }
}
@media (max-width: 768px) {
  nav { padding: 1rem 1.25rem; }
  nav.scrolled, nav.solid { padding: 0.75rem 1.25rem; }
  .nav-links {
    position: fixed; inset: 0; top: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem; opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
    z-index: 200;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.25rem; color: var(--text); }
  .nav-cta { font-size: 1rem !important; padding: 0.75rem 2.5rem; }
  .menu-toggle { display: block; }
  .hero { padding: 6rem 1.25rem 4rem; min-height: 100svh; }
  .hero-logo-wrap { width: min(280px, 62vw); }
  .nav-brand img { height: 36px; }
  nav.scrolled .nav-brand img { height: 30px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
}
@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .impact-item { padding: 1.5rem 0.75rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; max-width: 300px; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.15s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-badge, .hero-logo-img, .hero h1, .hero-desc, .hero-cta, .hero-scroll {
    opacity: 1; transform: none;
  }
}

/* ═══ Media Section ═══ */
.media {
  background: var(--offwhite);
  padding: 6rem 1rem;
}
.media .container { max-width: 1100px; }
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.media-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(14, 14, 14, 0.06);
  border: 1px solid rgba(14, 14, 14, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.media-card h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.media-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.media-cover {
  width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  flex: 0 0 96px;
  box-shadow: 0 12px 28px rgba(25, 74, 103, 0.14);
}
.media-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
}
.media-card .episode-title {
  font-weight: 600;
  color: var(--text);
  margin-top: 1rem;
  font-size: 1.1rem;
}
.media-card .episode-date {
  color: var(--text-mid);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.media-card .episode-desc {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.media-card audio {
  width: 100%;
  margin: 0.5rem 0 1rem;
}
.media-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.25rem 0 1.25rem;
}
.media-platforms a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(25, 74, 103, 0.16);
  color: var(--blue-deep);
  background: rgba(70, 164, 197, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.media-platforms a:hover {
  background: rgba(70, 164, 197, 0.15);
  border-color: rgba(25, 74, 103, 0.28);
  transform: translateY(-1px);
}
.radio-archive {
  margin: 0.35rem 0 1.25rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.22);
}
.radio-archive p {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-mid);
}
.radio-archive p:last-child {
  margin-bottom: 0;
}
.radio-archive audio {
  width: 100%;
  margin: 0;
}
.btn-media {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.875rem 1.5rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease;
  align-self: flex-start;
}
.btn-media:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}
.btn-media.btn-media-live { background: var(--blue-light); color: var(--white); }
.btn-media.btn-media-live:hover { background: var(--blue); }
.media-skeleton {
  color: var(--text-light);
  font-style: italic;
}
@media (max-width: 768px) {
  .media-grid { grid-template-columns: 1fr; }
  .media { padding: 4rem 1rem; }
}
@media (max-width: 520px) {
  .media-card-head { flex-direction: column; }
  .media-cover { width: 112px; flex-basis: 112px; }
}

/* ═══ Timeline Accordion ═══ */
.tl-item { cursor: pointer; position: relative; }
.tl-item[aria-expanded="true"] {
  background: rgba(70, 164, 197, 0.06);
  border-color: var(--blue-light);
}
.tl-extended {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 300ms ease, opacity 200ms ease, margin-top 300ms ease;
  margin-top: 0;
}
.tl-item[aria-expanded="true"] .tl-extended {
  max-height: 600px;
  opacity: 1;
  margin-top: 1rem;
}
.tl-extended-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(14, 14, 14, 0.1);
}
.tl-extended-grid > div { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }
.tl-extended-grid strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.tl-toggle {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--text-mid);
  pointer-events: none;
  transition: transform 300ms ease;
}
.tl-item[aria-expanded="true"] .tl-toggle { transform: rotate(45deg); color: var(--blue-deep); }
.tl-item:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .tl-extended, .tl-toggle { transition: none; }
}
@media (max-width: 640px) {
  .tl-extended-grid { grid-template-columns: 1fr; }
}

/* ═══ Marquee Banner (legacy — reserved for podcast/episode horizontal scroll) ═══ */
.marquee-viewport {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--neutral-900), var(--blue-deep));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  padding: 1rem 1rem;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.marquee-track img {
  height: 180px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 768px) {
  .marquee-track img { height: 120px; }
}

/* ─── Founder / Bio ─── */
.founder { padding: 6rem 1rem; background: var(--white); }
.founder .container { max-width: 1100px; }
.founder-grid {
  display: grid; grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 3rem; align-items: center;
}
.founder-photo {
  width: 100%; aspect-ratio: 1/1; display: block;
  border-radius: 24px; object-fit: cover; background: var(--neutral-100);
  box-shadow: 0 20px 50px rgba(14,14,14,0.10);
}
.founder-bio .section-label { color: var(--blue-deep); }
.founder-bio h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; line-height: 1.15; }
.founder-bio p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
@media (max-width: 720px) {
  .founder-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .founder-photo { max-width: 320px; margin: 0 auto; }
}

/* ─── Key Facts ─── */
.facts { padding: 6rem 1rem; background: var(--neutral-100); }
.facts .container { max-width: 1200px; text-align: center; }
.facts-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.75rem; text-align: left;
}
.fact-card {
  padding: 1.75rem; border-radius: 18px; background: var(--white);
  border: 1px solid rgba(14,14,14,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(25,74,103,0.10);
}
.fact-card .fact-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue-deep); margin-bottom: 0.5rem;
}
.fact-card h3 {
  font-family: var(--serif); font-size: 1.3rem; margin-bottom: 0.5rem;
  color: var(--text); line-height: 1.25;
}
.fact-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }

/* ─── Footer extras ─── */
.footer-mission {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.75);
  max-width: 560px; margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.footer-mission .hashtag {
  display: block; margin-top: 0.65rem; font-size: 0.7rem;
  font-style: normal; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-contact {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem; line-height: 1.7;
}
.footer-contact a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-est {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.25rem;
}
.footer-managed {
  margin-top: 0.5rem; font-size: 0.72rem;
  color: rgba(255,255,255,0.35); letter-spacing: 0.04em;
}
.footer-managed a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: color 0.2s, border-color 0.2s;
}
.footer-managed a:hover {
  color: var(--white); border-bottom-color: rgba(255,255,255,0.6);
}

/* ─── Lives Changed (testimonials) ─── */
.stories { padding: 6rem 1rem; background: var(--white); }
.stories .container { max-width: 1200px; text-align: center; }
.stories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.75rem; text-align: left;
}
.story-card {
  position: relative;
  padding: 2.25rem 1.75rem 1.75rem;
  border-radius: 20px;
  background: var(--cream);
  border-top: 3px solid var(--coral);
  box-shadow: 0 6px 24px rgba(15,23,42,0.04);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(232,81,61,0.10);
}
.story-card .quote-mark {
  position: absolute; top: -0.25rem; left: 1.25rem;
  font-family: var(--serif); font-size: 4.5rem; line-height: 0.9;
  color: var(--coral); opacity: 0.55;
  pointer-events: none;
}
.story-card blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; line-height: 1.55; color: var(--text);
  margin: 0 0 1.25rem;
}
.story-card figcaption { line-height: 1.4; }
.story-card cite {
  font-style: normal; font-size: 0.85rem;
  color: var(--text-mid); display: block;
}
.story-card cite strong {
  display: block; color: var(--text);
  font-weight: 600; font-size: 0.95rem; margin-bottom: 0.1rem;
}

/* ─── Schedule strip (Media) ─── */
.media-schedule {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(2,132,199,0.08);
  border: 1px solid rgba(2,132,199,0.18);
  border-radius: 100px;
  padding: 0.5rem 1.15rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
}
.media-schedule .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral);
  animation: badgePulse 2s ease-in-out infinite;
}

/* ─── Be-a-Guest / shared form pattern (also used by .contact-form, .newsletter-form, .postcard-form, .activation-form, .waitlist-form) ─── */
.guest-block {
  margin: 3.5rem auto 0; max-width: 720px;
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 28px rgba(15,23,42,0.05);
  text-align: center;
}
.guest-block .section-label { color: var(--coral); }
.guest-block h3 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.5rem 0; color: var(--text); line-height: 1.2;
}
.guest-block > p {
  color: var(--text-mid); margin: 0 auto 1.75rem; max-width: 540px;
}
.guest-form,
.form {
  text-align: left;
}
.guest-form .grid-2,
.form .grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form .grid-3 {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem;
}
.guest-form .field,
.form .field { margin-bottom: 1rem; }
.guest-form label,
.form label {
  display: block; font-size: 0.72rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 0.4rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.guest-form input[type="text"],
.guest-form input[type="email"],
.guest-form input[type="tel"],
.guest-form textarea,
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="number"],
.form textarea,
.form select {
  width: 100%; padding: 0.7rem 0.9rem;
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--text); background: var(--offwhite);
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.guest-form input:focus, .guest-form textarea:focus,
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(2,132,199,0.12);
}
.guest-form textarea,
.form textarea { min-height: 120px; resize: vertical; }
.guest-form .preference,
.form .preference {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.1rem;
}
.guest-form .preference label,
.form .preference label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin: 0; padding: 0.5rem 0.95rem;
  font-size: 0.85rem; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  color: var(--text); background: var(--offwhite);
  border: 1.5px solid rgba(15,23,42,0.1);
  border-radius: 100px; cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.guest-form .preference label:hover,
.form .preference label:hover { border-color: var(--blue); }
.guest-form .preference label:has(input:checked),
.form .preference label:has(input:checked) {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}
.guest-form .preference input[type="radio"],
.form .preference input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.guest-form .bot-field,
.form .bot-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; }
.guest-form button[type="submit"],
.form button[type="submit"] {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.85rem 2rem;
  background: var(--coral); color: var(--white);
  border: none; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 14px rgba(232,81,61,0.25);
}
.guest-form button[type="submit"]:hover,
.form button[type="submit"]:hover {
  background: var(--coral-dark); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,81,61,0.35);
}
.guest-form button[type="submit"]:disabled,
.form button[type="submit"]:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}
/* Form button variants — blue (calmer for newsletter, contact) */
.form.form--blue button[type="submit"] {
  background: var(--blue-deep);
  box-shadow: 0 4px 14px rgba(25,74,103,0.28);
}
.form.form--blue button[type="submit"]:hover {
  background: var(--black);
  box-shadow: 0 6px 20px rgba(25,74,103,0.4);
}
.guest-form-success {
  display: none; padding: 2rem 1rem;
}
.guest-form-success.show { display: block; }
.guest-form-success h4 {
  font-family: var(--serif); font-size: 1.6rem; color: var(--blue-deep);
  margin-bottom: 0.6rem;
}
.guest-form-success p { color: var(--text-mid); max-width: 420px; margin: 0 auto; }
.guest-form-error {
  display: none;
  margin-top: 1rem; padding: 0.75rem 1rem;
  background: rgba(220,38,38,0.08); color: var(--coral-dark);
  border-radius: 10px; font-size: 0.9rem;
}
.guest-form-error.show { display: block; }
@media (max-width: 600px) {
  .guest-block { padding: 2rem 1.25rem; }
  .guest-form .grid-2, .form .grid-2, .form .grid-3 { grid-template-columns: 1fr; }
}

/* Founder pull-quote (Sen. Armstrong) */
.founder-pullquote {
  margin: 1.75rem 0 0;
  padding: 0.4rem 0 0.4rem 1.25rem;
  border-left: 3px solid var(--coral);
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; line-height: 1.55; color: var(--text);
}
.founder-pullquote cite {
  display: block; margin-top: 0.6rem;
  font-style: normal; font-size: 0.78rem;
  letter-spacing: 0.06em; color: var(--text-mid);
}

/* ═══════════════════════════════════════════════════════════════════════
   PHASE 4 — Banners (Image marquee + Quotes marquee)
   ═══════════════════════════════════════════════════════════════════════ */

/* Rotating quote gallery — homepage, sits between hero and mission */
.quote-orbit {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(135deg, rgba(14,14,14,1), rgba(25,74,103,0.96) 48%, rgba(14,14,14,1)),
    var(--neutral-900);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  isolation: isolate;
}
.quote-orbit::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(70,164,197,0.20), transparent 20%, transparent 80%, rgba(232,81,61,0.16)),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 32%, rgba(0,0,0,0.16));
  pointer-events: none;
  z-index: -1;
}
.quote-orbit-copy {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.quote-orbit .section-label {
  color: rgba(255,255,255,0.72);
}
.quote-orbit .section-title {
  color: var(--white);
  margin: 0 auto;
  max-width: 760px;
}
.quote-orbit-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(450px, 58vw, 640px);
  perspective: 2000px;
  overflow: hidden;
}
.quote-orbit-ring {
  --quote-radius: clamp(300px, 35vw, 540px);
  --quote-rotation: 0deg;
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateY(var(--quote-rotation));
  transform-style: preserve-3d;
  will-change: transform;
}
.quote-orbit-card {
  --card-opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 300px;
  height: 400px;
  margin-left: -150px;
  margin-top: -200px;
  transform: rotateY(var(--angle)) translateZ(var(--quote-radius));
  transform-style: preserve-3d;
  opacity: var(--card-opacity);
  transition: opacity 0.3s linear, filter 0.3s linear;
  filter: saturate(0.9);
  backface-visibility: hidden;
}
.quote-orbit-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--accent), rgba(255,255,255,0.18));
  opacity: 0.85;
  z-index: -1;
}
.quote-orbit-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--quote-position, center);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}
.quote-orbit-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5.25rem 1.2rem 1.2rem;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.70) 34%, rgba(0,0,0,0.92));
  color: var(--white);
}
.quote-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.22rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.35);
  border: 1px solid color-mix(in srgb, var(--accent) 64%, white);
  border-radius: 100px;
  background: rgba(0,0,0,0.36);
  color: rgba(255,255,255,0.86);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.quote-orbit-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.quote-orbit-card cite {
  display: block;
  margin-top: 0.7rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quote-orbit-card .kw {
  text-shadow: none;
}
@media (max-width: 768px) {
  .quote-orbit {
    padding: 3.5rem 0 3rem;
  }
  .quote-orbit-copy {
    margin-bottom: 1.75rem;
  }
  .quote-orbit-stage {
    height: auto;
    min-height: 0;
    overflow: visible;
    perspective: none;
  }
  .quote-orbit-ring {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem 0.75rem;
    scroll-snap-type: x mandatory;
    transform: none !important;
    -webkit-overflow-scrolling: touch;
  }
  .quote-orbit-card {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 min(78vw, 300px);
    width: min(78vw, 300px);
    height: 360px;
    margin: 0;
    transform: none !important;
    opacity: 1 !important;
    scroll-snap-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .quote-orbit-stage {
    height: auto;
    overflow: visible;
    perspective: none;
  }
  .quote-orbit-ring {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    width: min(1000px, calc(100% - 2rem));
    height: auto;
    margin: 0 auto;
    transform: none !important;
  }
  .quote-orbit-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 320px;
    margin: 0;
    transform: none !important;
    opacity: 1 !important;
  }
  .quote-orbit-card:nth-child(n+4) { display: none; }
}

/* Quotes marquee — single-line scroller above footer */
.quotes-marquee {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.quotes-track {
  display: flex; gap: 3.5rem;
  width: max-content;
  animation: quotesScroll 60s linear infinite;
  will-change: transform;
}
.quotes-marquee:hover .quotes-track { animation-play-state: paused; }
.quotes-track span {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 3.5rem;
}
.quotes-track span::after {
  content: '·';
  color: var(--coral); font-size: 1.4rem;
  font-style: normal; opacity: 0.8;
}
@keyframes quotesScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .quotes-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  .quotes-track span:nth-child(n+4) { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PHASE 6 — Subpage shared chrome
   ═══════════════════════════════════════════════════════════════════════ */

/* Subpage hero — shorter than homepage hero, no full viewport */
.subhero {
  position: relative;
  padding: 9rem 2rem 4.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--neutral-100), var(--white));
  overflow: hidden;
}
.subhero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(70,164,197,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(43,109,145,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.subhero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.subhero .section-label {
  color: var(--blue-deep);
  margin-bottom: 1.25rem;
}
.subhero h1 {
  font-family: var(--serif); font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15; margin-bottom: 1.25rem;
  color: var(--text);
}
.subhero h1 em { font-style: italic; }
.subhero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-mid);
  max-width: 620px; margin: 0 auto;
  line-height: 1.7;
}
.subhero-cta {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
}

/* Page section — generic content slab */
.page-section {
  padding: 5rem 2rem;
}
.page-section.alt { background: var(--neutral-100); }
.page-section.dark { background: var(--neutral-900); color: var(--white); }
.page-section .container { max-width: 1140px; margin: 0 auto; }
.page-section .section-title {
  margin-bottom: 0.75rem;
}

/* Cards grid (Team, Events, Speaking, Books, Store) */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(14,14,14,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(25,74,103,0.10);
}
.card .card-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-deep); margin-bottom: 0.6rem;
}
.card h3 {
  font-family: var(--serif); font-size: 1.45rem;
  line-height: 1.25; margin-bottom: 0.6rem;
  color: var(--text);
}
.card p {
  color: var(--text-mid); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 1rem;
}
.card .card-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: auto;
  font-size: 0.85rem; font-weight: 600;
  color: var(--blue-deep); text-decoration: none;
  padding: 0.5rem 1rem; border-radius: 100px;
  border: 1.5px solid rgba(25,74,103,0.28);
  transition: all 0.3s var(--ease-out);
  align-self: flex-start;
}
.card .card-cta:hover {
  background: var(--blue-deep); color: var(--white);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}
.card .card-cta--disabled {
  opacity: 0.55; cursor: default; pointer-events: none;
}

/* "Coming Soon" tag */
.tag-coming-soon {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(212,168,67,0.12);
  color: var(--amber);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Book grid — taller cards with a cover area */
.book-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.book-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(14,14,14,0.06);
  box-shadow: 0 4px 24px rgba(14,14,14,0.06);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(25,74,103,0.14);
}
.book-cover {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-wordmark); color: var(--white);
  font-size: 5rem;
  font-style: italic;
  position: relative;
}
.book-card:nth-child(2) .book-cover { background: linear-gradient(135deg, var(--coral), var(--amber)); }
.book-card:nth-child(3) .book-cover { background: linear-gradient(135deg, var(--emerald), var(--cyan)); }
.book-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}
.book-cover--image {
  background: var(--neutral-100);
  padding: 1.4rem;
}
.book-cover--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(14,14,14,0.18);
  position: relative;
  z-index: 1;
}
.book-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.book-body h3 {
  font-family: var(--serif); font-size: 1.35rem;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.book-body .book-subtitle {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 0.75rem;
}
.book-body p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1rem; }
.book-body .card-cta { align-self: flex-start; }

/* Stories — pull-quote hero (for /stories/ page) */
.pullquote-hero {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  padding: 8.75rem 2rem 5rem;
  text-align: center;
  color: var(--white);
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.pullquote-hero blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  max-width: 820px; margin: 0 auto;
}
.pullquote-hero cite {
  display: block; font-style: normal;
  font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.pullquote-hero cite strong {
  display: block; margin-bottom: 0.3rem;
  color: var(--white); letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .pullquote-hero {
    padding: 7.25rem 1.25rem 4rem;
    min-height: 18rem;
  }
}

/* Long-form testimonial (Michelle Gonzalez) */
.story-long {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-left: 4px solid var(--coral);
  border-radius: 0 16px 16px 0;
}
.story-long blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.05rem; line-height: 1.7; color: var(--text);
  margin-bottom: 1rem;
}
.story-long cite {
  font-style: normal; font-size: 0.85rem;
  color: var(--text-mid);
}
.story-long cite strong {
  display: block; color: var(--text);
  font-weight: 600; font-size: 0.95rem; margin-bottom: 0.1rem;
}

/* Thank-you page treatment */
.thank-you-page {
  min-height: 70vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(180deg, var(--neutral-100), var(--white));
}
.thank-you-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 1.75rem;
  box-shadow: 0 8px 24px rgba(5,150,105,0.28);
}
.thank-you-icon svg { width: 32px; height: 32px; }
.thank-you-page h1 {
  font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem; line-height: 1.2;
}
.thank-you-page > p {
  color: var(--text-mid); max-width: 540px; margin: 0 auto 2rem;
  line-height: 1.7; font-size: 1.05rem;
}
.thank-you-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1.25rem;
}
.thank-you-pdf {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  background: var(--coral); color: var(--white);
  border-radius: 100px; text-decoration: none;
  font-weight: 600; font-size: 1rem;
  box-shadow: 0 4px 16px rgba(232,81,61,0.28);
  transition: all 0.3s var(--ease-out);
}
.thank-you-pdf:hover {
  background: var(--coral-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,81,61,0.36);
}
.thank-you-pdf svg { width: 18px; height: 18px; }

/* Events placeholder embed */
.luma-slot {
  margin-top: 2.5rem;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--white);
  border: 2px dashed rgba(25,74,103,0.18);
  border-radius: 18px;
  color: var(--text-mid);
}
.luma-slot p { margin: 0; font-size: 0.95rem; }

/* Inline newsletter (in-page mini-form) */
.inline-newsletter {
  display: flex; gap: 0.5rem;
  max-width: 480px; margin: 1.5rem auto 0;
  flex-wrap: wrap;
}
.inline-newsletter input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 0.75rem 1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(14,14,14,0.14);
  background: var(--white);
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--text);
}
.inline-newsletter input[type="email"]:focus {
  outline: none; border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(25,74,103,0.12);
}
.inline-newsletter button {
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: var(--blue-deep); color: var(--white);
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.inline-newsletter button:hover {
  background: var(--black);
  transform: translateY(-1px);
}
.inline-newsletter .bot-field { position: absolute; left: -9999px; }

/* Dark-section variant — used inside .cta-section on homepage */
.cta-section .inline-newsletter input[type="email"] {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
}
.cta-section .inline-newsletter input[type="email"]::placeholder { color: var(--text-light); }
.cta-section .inline-newsletter button {
  background: var(--coral);
  box-shadow: 0 4px 14px rgba(232,81,61,0.32);
}
.cta-section .inline-newsletter button:hover {
  background: var(--coral-dark);
  box-shadow: 0 6px 20px rgba(232,81,61,0.42);
}

/* Speaking offering blocks */
.offering-stack {
  display: grid; gap: 1.25rem;
  margin-top: 2.5rem;
}
.offering {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 2rem; align-items: start;
  padding: 2rem;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(14,14,14,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.offering h3 {
  font-family: var(--serif); font-size: 1.6rem;
  color: var(--text); line-height: 1.2;
}
.offering .offering-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-deep);
  margin-bottom: 0.4rem; display: block;
}
.offering p { color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; }
@media (max-width: 720px) {
  .offering { grid-template-columns: 1fr; gap: 1rem; }
}

/* ─── Generic prose helpers ─── */
.prose-narrow {
  max-width: 680px; margin: 0 auto;
  color: var(--text-mid); line-height: 1.75;
}
.prose-narrow p { margin-bottom: 1rem; }
.prose-narrow ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose-narrow ul li { margin-bottom: 0.4rem; }

/* Social row */
.social-row {
  display: flex; gap: 0.65rem; flex-wrap: wrap; justify-content: center;
  margin: 1.4rem auto 1.2rem;
}
.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}
.social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  fill: currentColor;
}
.social-link svg rect,
.social-link svg circle:not(.social-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
.social-link .social-dot {
  fill: currentColor;
  stroke: none;
}
