/* ==== PSYCHEDELICS & ____ — Pitch site styles ==== */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga", "ss01";
  transition: background-color 600ms ease, color 600ms ease;
}

/* ============= THEME: NOIR (default) ============= */
:root,
[data-theme="noir"] {
  --bg: #0a0908;
  --bg-2: #14110f;
  --bg-3: #1c1815;
  --fg: #e8e1d4;
  --fg-dim: #a59b8a;
  --fg-muted: #6b6356;
  --accent: #c9a378;     /* warm bone */
  --accent-2: #8a5d3b;   /* burnt sienna */
  --rule: rgba(232, 225, 212, 0.14);
  --hairline: rgba(232, 225, 212, 0.22);
  --grain-opacity: 0.06;
  --image-tint: rgba(10, 9, 8, 0.35);

  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ============= THEME: SAND (warm) ============= */
[data-theme="sand"] {
  --bg: #ece4d4;
  --bg-2: #e2d8c2;
  --bg-3: #d8cbb0;
  --fg: #2a1f15;
  --fg-dim: #5a4a3a;
  --fg-muted: #897761;
  --accent: #a04823;     /* terracotta */
  --accent-2: #6b4424;   /* umber */
  --rule: rgba(42, 31, 21, 0.16);
  --hairline: rgba(42, 31, 21, 0.28);
  --grain-opacity: 0.04;
  --image-tint: rgba(160, 72, 35, 0.10);
}

/* ============= THEME: PARCHMENT (logo-matched: cream/terracotta/sage) ============= */
[data-theme="parchment"] {
  --bg: #f3ead6;
  --bg-2: #ebe1cb;
  --bg-3: #dfd3b8;
  --fg: #3a2a1a;
  --fg-dim: #6a5440;
  --fg-muted: #98856b;
  --accent: #b5602f;     /* terracotta — title color from logo */
  --accent-2: #8c9573;   /* sage — divider color from logo */
  --rule: rgba(58, 42, 26, 0.14);
  --hairline: rgba(58, 42, 26, 0.26);
  --grain-opacity: 0.045;
  --image-tint: rgba(181, 96, 47, 0.10);
}

/* ============= THEME: FOG (cool) ============= */
[data-theme="fog"] {
  --bg: #0e1216;
  --bg-2: #161b21;
  --bg-3: #1f262e;
  --fg: #d8dee5;
  --fg-dim: #8d96a1;
  --fg-muted: #5a626c;
  --accent: #7ea5b5;     /* fogged teal */
  --accent-2: #4d6b78;
  --rule: rgba(216, 222, 229, 0.14);
  --hairline: rgba(216, 222, 229, 0.22);
  --grain-opacity: 0.05;
  --image-tint: rgba(14, 18, 22, 0.4);
}

/* ============= TYPE PAIRINGS ============= */
[data-type="garamond"] {
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
}
[data-type="playfair"] {
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}
[data-type="dmserif"] {
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}
[data-type="bodoni"] {
  --font-display: "Bodoni Moda", "Didot", Georgia, serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

/* ============= FILM GRAIN OVERLAY ============= */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* ============= BASE TYPE ============= */
.serif { font-family: var(--font-display); }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }
.italic { font-style: italic; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

p { line-height: 1.55; text-wrap: pretty; }

::selection { background: var(--accent); color: var(--bg); }

/* ============= LAYOUT PRIMITIVES ============= */
.section {
  position: relative;
  padding: clamp(44px, 5vw, 80px) clamp(24px, 6vw, 96px);
  min-height: auto;
}

.section--full {
  min-height: auto;
  padding: clamp(44px, 5vw, 80px) clamp(24px, 6vw, 96px);
}

.section--tight {
  padding: clamp(32px, 3.5vw, 52px) clamp(24px, 6vw, 96px);
  min-height: auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.container--narrow {
  max-width: 920px;
  margin: 0 auto;
}

/* eyebrow */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--fg-muted);
}

/* hairlines */
.hairline {
  border: 0;
  border-top: 1px solid var(--hairline);
  width: 100%;
  margin: 0;
}

/* ============= REVEAL ANIMATION ============= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1200ms cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 220ms; }
.reveal[data-delay="3"] { transition-delay: 360ms; }
.reveal[data-delay="4"] { transition-delay: 500ms; }

/* ============= IMAGE PLACEHOLDER (atmospheric sepia) ============= */
.placeholder {
  position: relative;
  background: #0a0807;
  border: 1px solid var(--hairline);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(201,163,120,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 30% 75%, rgba(138,93,59,0.18) 0%, transparent 70%),
    linear-gradient(to bottom, #14110f 0%, #0a0807 100%);
  z-index: 0;
}
.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.18;
  z-index: 0;
}
[data-theme="parchment"] .placeholder {
  background: #e2d5b6;
  border-color: rgba(58, 42, 26, 0.22);
}
[data-theme="parchment"] .placeholder::before {
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(181,96,47,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 30% 75%, rgba(140,149,115,0.15) 0%, transparent 70%),
    linear-gradient(to bottom, #ebe1cb 0%, #e2d5b6 100%);
}
.placeholder__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(232,225,212,0.55);
  text-align: center;
  padding: 16px 24px;
  max-width: 80%;
  line-height: 1.7;
}
[data-theme="parchment"] .placeholder__label {
  color: rgba(58, 42, 26, 0.55);
}
.placeholder__corner {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(232,225,212,0.5);
  text-transform: uppercase;
  z-index: 1;
}
[data-theme="parchment"] .placeholder__corner {
  color: rgba(58, 42, 26, 0.5);
}
.placeholder__corner--br {
  top: auto; left: auto;
  bottom: 16px; right: 16px;
}

/* ============= TOP NAV ============= */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(24px, 4vw, 48px);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-dim);
  mix-blend-mode: difference;
  pointer-events: none;
}
.topnav__brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--fg);
  pointer-events: auto;
}
.topnav__meta { pointer-events: auto; }

/* ============= HERO (key-art driven) ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: block;
  overflow: hidden;
  padding: 0;
  background: #000;
}
.hero__keyart-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__keyart {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  .hero__keyart-wrap {
    align-items: center;
  }
  .hero__keyart {
    object-fit: contain;
  }
}
/* spotlight effect — light fade at edges only, image carries its own lighting */
.hero__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 100% at 50% 50%, transparent 0%, transparent 60%, rgba(0,0,0,0.25) 92%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to bottom, transparent 80%, rgba(0,0,0,0.4) 96%, var(--bg) 100%);
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--fg-muted), transparent);
  animation: heroScroll 2.4s ease-in-out infinite;
}
@keyframes heroScroll {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.6; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 1; }
}

/* ============= HERO META (logline + rail, below hero) ============= */
.hero-meta {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 96px) clamp(40px, 4vw, 56px);
  text-align: center;
  background: var(--bg);
  position: relative;
}
.hero-meta__rail {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 56px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  flex-wrap: wrap;
}
.hero-meta__logline {
  margin-top: clamp(32px, 4vw, 56px);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
  font-style: italic;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.hero-meta__tag {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-meta__div {
  width: 22px;
  height: 1px;
  background: var(--fg-muted);
}

/* ============= SECTION TITLES ============= */
.s-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.s-title--xl {
  font-size: clamp(60px, 10vw, 160px);
}
.s-title__italic { font-style: italic; color: var(--accent); }

.s-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fg-muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.s-kicker__num {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  color: var(--fg-dim);
}

/* ============= STATS ============= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
}
.stat {
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  padding-right: 32px;
  padding-left: 8px;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-weight: 400;
}
.stat__num-unit {
  font-size: 0.5em;
  color: var(--fg-dim);
  margin-left: 8px;
  letter-spacing: -0.01em;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  color: var(--fg-dim);
  margin-top: 24px;
  max-width: 280px;
}
.stat__source {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 16px;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 40px 0; }
}

/* ============= FORCES (3-column) ============= */
.forces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 80px;
}
.force__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 16px;
}
.force__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--fg);
}
.force__body {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .forces { grid-template-columns: 1fr; gap: 40px; }
}

/* The Opportunity — editorial list (label | body) so rows sit tight, no blank cells */
.opportunity-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.opportunity-grid .force {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 26px 0;
  border-top: 1px solid var(--hairline);
}
.opportunity-grid .force:last-child {
  border-bottom: 1px solid var(--hairline);
}
.opportunity-grid .force__title {
  margin-bottom: 0;
  font-size: 26px;
}
@media (max-width: 760px) {
  .opportunity-grid .force { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
}

/* ============= EPISODE LIST ============= */
.episode-list {
  margin-top: 60px;
  border-top: 1px solid var(--hairline);
}
.ep {
  border-bottom: 1px solid var(--hairline);
  padding: 44px 0;
  display: grid;
  grid-template-columns: 100px 1fr 1.2fr auto;
  gap: 32px;
  align-items: center;
  cursor: pointer;
  transition: padding 400ms ease, background 400ms ease;
  position: relative;
}
.ep:hover {
  padding-left: 16px;
  padding-right: 16px;
}
.ep__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-weight: 400;
  font-style: italic;
  opacity: 0.85;
  transition: opacity 400ms ease;
}
.ep:hover .ep__num,
.ep--open .ep__num { opacity: 1; }
.ep__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.ep__myth {
  margin-top: 6px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--accent);
  letter-spacing: 0.01em;
}
.ep__title-amp {
  color: var(--accent);
  font-style: italic;
}
.ep__sub {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.5;
  max-width: 380px;
}
.ep__chev {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  text-transform: uppercase;
  white-space: nowrap;
}
.ep--open {
  padding-left: 16px;
  padding-right: 16px;
  background: var(--bg-2);
}

.ep__expand {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 100px 1.9fr 1fr;
  gap: 48px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--hairline);
  animation: epExpand 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes epExpand {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.ep__expand-body {
  font-size: 17px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 780px;
}
.ep__expand-body p + p { margin-top: 16px; }
.ep__expand-side h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 400;
}
.ep__expand-side ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ep__expand-side li {
  font-size: 13px;
  color: var(--fg-dim);
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
}
.ep__expand-side li.confirmed {
  color: var(--accent);
  border-color: var(--accent);
}
.ep__expand-side li.filmed {
  color: var(--fg);
  border-color: var(--fg);
}

@media (max-width: 880px) {
  .ep { grid-template-columns: 1fr; gap: 12px; }
  .ep__expand { grid-template-columns: 1fr; }
  .ep__expand, .ep__expand-body, .ep__expand-side, .ep__gallery { min-width: 0; max-width: 100%; }
  .ep__expand-body { overflow-wrap: break-word; }
  .ep__gallery-strip { max-width: 100%; }
}

/* ============= EPISODE GALLERY (First Look filmstrip) ============= */
.ep__gallery {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.ep__gallery-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ep__gallery-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 5px 11px;
  white-space: nowrap;
}
.ep__gallery-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--fg-dim);
  line-height: 1.4;
}
.ep__gallery-hint {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  align-self: center;
}
.ep__gallery-arrow {
  display: inline-block;
  margin-left: 4px;
  color: var(--accent);
  animation: galleryNudge 1.8s ease-in-out infinite;
}
@keyframes galleryNudge {
  0%, 100% { transform: translateX(0); opacity: 0.6; }
  50% { transform: translateX(5px); opacity: 1; }
}
.ep__gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.ep__gallery-strip::-webkit-scrollbar { height: 6px; }
.ep__gallery-strip::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.ep__gallery-strip::-webkit-scrollbar-track { background: var(--hairline); }
.ep__shot {
  scroll-snap-align: start;
  margin: 0;
}
.ep__shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border: 1px solid var(--hairline);
  filter: saturate(0.92);
  transition: filter 400ms ease, transform 400ms ease;
}
.ep__shot:hover img {
  filter: saturate(1.05);
  transform: translateY(-3px);
}
.ep__shot figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 12px;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .ep__gallery-strip { grid-auto-columns: minmax(240px, 80%); }
}

/* ============= QUOTE / VISUAL APPROACH ============= */
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.pullquote__lead {
  display: block;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 16px;
}
.pullquote__attr {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin-top: 40px;
}

/* ============= TEAM ============= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 60px;
}
.team-card {
  border: 1px solid var(--hairline);
  padding: 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  background: var(--bg-2);
}
.team-card__photo {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(1) contrast(1.04);
  transition: filter 500ms ease, transform 600ms cubic-bezier(0.2,0.8,0.2,1);
}
.team-card:hover .team-card__photo img {
  filter: grayscale(0.55) contrast(1.05);
  transform: scale(1.03);
}
.team-card__photo img.is-crop {
  transform: scale(1.05);
}
.team-card:hover .team-card__photo img.is-crop {
  transform: scale(1.09);
}
/* forced B&W (no color on hover) */
.team-card__photo img.is-bw,
.team-card:hover .team-card__photo img.is-bw {
  filter: grayscale(1) contrast(1.04);
}
.team-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--fg);
}
.team-card__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-dim);
  max-height: 7.2em;
  overflow: hidden;
  position: relative;
  transition: max-height 600ms ease;
}
.team-card__bio.expanded { max-height: 80em; }
.team-card__bio::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2em;
  background: linear-gradient(transparent, var(--bg-2));
  pointer-events: none;
  opacity: 1;
  transition: opacity 300ms ease;
}
.team-card__bio.expanded::after { opacity: 0; }
.team-card__more {
  background: none;
  border: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  margin-top: 16px;
  padding: 0;
}

@media (max-width: 1100px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 100px 1fr; gap: 24px; padding: 24px; }
}

/* ============= TIMELINE ============= */
.timeline {
  margin-top: 60px;
  position: relative;
}
.timeline__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}
.timeline__row:last-child { border-bottom: 1px solid var(--hairline); }
.timeline__date {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 6px;
}
.timeline__phase {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--fg);
}
.timeline__detail {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 720px;
}

@media (max-width: 720px) {
  .timeline__row { grid-template-columns: 1fr; gap: 8px; }
}

/* ============= BUDGET ============= */
.budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 60px;
}
.budget-card {
  border: 1px solid var(--hairline);
  padding: 48px;
  background: var(--bg-2);
}
.budget-card__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--accent);
  margin-bottom: 16px;
}
.budget-card__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.budget-card__detail {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin-top: 24px;
  max-width: 460px;
}

@media (max-width: 880px) {
  .budget-grid { grid-template-columns: 1fr; }
  .budget-card { padding: 32px; }
}

/* ============= FISCAL SPONSOR ============= */
.fiscal {
  margin-top: 40px;
}
.fiscal .hairline {
  margin-bottom: 24px;
}
.fiscal__head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.fiscal__logo {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.fiscal__body {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.fiscal__text {
  flex: 1;
  min-width: 280px;
}
.fiscal__text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-dim);
  max-width: 620px;
  margin: 0 0 12px;
}
.fiscal__text a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}
.fiscal__text a:hover { opacity: 0.75; }

/* ============= VIDEO FEATURE ============= */
.video-feature {
  position: relative;
  width: 100%;
  height: 78vh;
  max-height: 820px;
  overflow: hidden;
  background: #000;
}
@media (max-width: 768px) {
  .video-feature { height: auto; aspect-ratio: 16/9; max-height: none; }
}
.video-feature__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-feature__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 100% at 50% 50%, transparent 0%, transparent 62%, rgba(0,0,0,0.35) 92%, rgba(0,0,0,0.7) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 22%, transparent 70%, var(--bg) 100%);
}
.video-feature__caption {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  left: clamp(24px, 6vw, 96px);
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.video-feature__controls {
  position: absolute;
  bottom: clamp(28px, 4vw, 56px);
  right: clamp(24px, 6vw, 96px);
  z-index: 3;
  display: flex;
  gap: 12px;
}
.video-feature__btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4ece0;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 10px 18px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 240ms ease, border-color 240ms ease;
}
.video-feature__btn:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============= CTA / FOOTER ============= */

/* scroll progress bar (mobile wayfinding) */
.progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 200;
  background: rgba(127, 118, 105, 0.18);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}
.progress-bar__fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
}
@media (max-width: 1280px) {
  .progress-bar { opacity: 1; }
}

/* credibility strip */
.cred-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px clamp(24px, 6vw, 96px);
  background: var(--bg);
}
.cred-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.cred-strip__dot { color: var(--accent); font-size: 9px; }
@media (max-width: 720px) {
  .cred-strip__inner { font-size: 10px; gap: 10px 14px; }
  .cred-strip__dot { display: none; }
  .cred-strip__item {
    width: 100%; text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hairline);
  }
  .cred-strip__item:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* episode stage badge */
.ep__stage {
  display: inline-block;
  margin-left: 16px;
  vertical-align: middle;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 4px 10px;
}
.ep__stage--dev {
  color: var(--fg-muted);
  border-color: var(--hairline);
}

/* CTA prominent button */
.cta__action {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 36px;
}
.cta__button {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 16px 32px;
  text-decoration: none;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}
.cta__button:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

/* CTA / FOOTER (original) */
.cta {
  border-top: 1px solid var(--hairline);
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 96px);
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 12ch;
}
.cta__row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  align-items: baseline;
}
.cta__contact {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 200ms;
}
.cta__contact:hover { color: var(--accent); }
.cta__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ============= CLOSER (typography slab) ============= */
.closer {
  position: relative;
  padding: clamp(120px, 14vw, 200px) clamp(24px, 6vw, 96px);
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
}
.closer__content {
  text-align: center;
}
.closer__line {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-wrap: balance;
}
.closer__line em {
  color: var(--accent);
  font-style: italic;
}
/* ============= MOMENT HIGHLIGHT (photo → video transition) ============= */
.moment-highlight {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(44px, 6vw, 76px) clamp(24px, 6vw, 96px);
}
.moment-highlight__lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
  color: var(--fg-dim);
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}
.moment-highlight__text {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-style: italic;
  color: var(--accent);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.moment-highlight__text em {
  color: var(--accent);
  font-style: italic;
}

.fullbleed {
  position: relative;
  height: 78vh;
  margin: 0;
  overflow: hidden;
}
.fullbleed__media {
  position: absolute;
  inset: 0;
}
.fullbleed__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.82) contrast(1.02) brightness(0.92);
}
.fullbleed__overlay {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 96px);
  z-index: 2;
}
.fullbleed__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.2) 50%,
    transparent 100%
  );
  z-index: -1;
}
.fullbleed__text {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 80px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #f4ece0;
  max-width: 920px;
}
.fullbleed__text em { color: var(--accent); font-style: italic; }
@media (max-width: 768px) {
  .fullbleed {
    height: auto;
  }
  .fullbleed__media {
    position: relative;
  }
  .fullbleed__img {
    position: relative;
    height: auto;
    width: 100%;
    object-fit: contain;
  }
  .fullbleed__overlay {
    position: relative;
    height: auto;
    padding: 24px 24px 44px;
  }
  .fullbleed__overlay::before { display: none; }
  .fullbleed__text {
    font-size: clamp(28px, 7vw, 46px);
  }
  .fullbleed__text span { white-space: normal !important; }
}
.fullbleed__caption {
  position: absolute;
  top: clamp(40px, 6vw, 96px);
  right: clamp(40px, 6vw, 96px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,236,224,0.7);
  text-align: right;
  z-index: 3;
}

/* ============= TWO-COLUMN PROSE ============= */
.prose-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  margin-top: 60px;
  align-items: start;
}
.prose-two p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-dim);
  font-family: var(--font-body);
}
.prose-two p + p { margin-top: 18px; }
.prose-two .lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.4;
  color: var(--fg);
}

@media (max-width: 880px) {
  .prose-two { grid-template-columns: 1fr; gap: 32px; }
}

/* ============= AUDIENCE TAGS ============= */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  color: var(--fg-dim);
  border-radius: 100px;
  transition: all 300ms ease;
}
.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============= SPLIT IMAGE/TEXT ============= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 70vh;
}
.split--reverse > :first-child { order: 2; }
.split__media { background: var(--bg-2); }
.split__text {
  padding: clamp(48px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .split__media { aspect-ratio: 4/3; }
}

/* ============= COMPS / CULTURAL APPETITE (real posters) ============= */
.comps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.comp {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 600ms cubic-bezier(0.2,0.8,0.2,1);
}
.comp:hover { transform: translateY(-8px); }
.comp--poster img {
  width: 100%;
  display: block;
  aspect-ratio: 2/3;
  object-fit: cover;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
}
.comp__caption {
  padding-top: 14px;
}
.comp__title-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 4px;
}
.comp__meta-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
@media (max-width: 880px) {
  .comps { grid-template-columns: repeat(2, 1fr); }
}

/* ============= SECTION INDEX ============= */
.section-index {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}
.section-index a {
  pointer-events: auto;
  color: var(--fg-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  transition: color 300ms;
  opacity: 0.6;
}
.section-index a:hover, .section-index a.active {
  color: var(--accent);
  opacity: 1;
}
.section-index a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: width 300ms;
}
.section-index a.active::before { width: 28px; }
.section-index .label { opacity: 0; transition: opacity 300ms; }
.section-index a:hover .label, .section-index a.active .label { opacity: 1; }

@media (max-width: 1280px) {
  .section-index { display: none; }
}
@media (max-width: 1100px) {
  .section-index { display: none; }
}

/* ============= ACCESS BAND ============= */
.access-band {
  background: var(--bg-2);
  padding: clamp(48px, 6vw, 88px) clamp(24px, 6vw, 96px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
