/* --- Brand tokens --- */
:root {
  --cream: #f4f1ea;
  --cream-2: #ece7d8;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --crimson: #c8102e;
  --crimson-dark: #8b0000;
  --gold: #d4af37;
  --gold-light: #f7c948;
  --magenta: #e91e8c;
  --muted: #6a6558;
  --border: rgba(10,10,10,0.12);
  --shadow: 0 8px 24px rgba(10,10,10,0.14);
  --shadow-lg: 0 20px 60px rgba(10,10,10,0.22);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Bungee', 'Impact', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1240px;
  --gap: clamp(1rem, 2vw, 1.75rem);
  --section-y: clamp(4rem, 9vw, 7rem);
}

/* --- Reset + base --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--crimson); text-decoration: none; }
a:hover { color: var(--crimson-dark); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Halftone paper texture --- */
.halftone {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,10,10,0.055) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

/* --- Nav --- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--ink);
  border-bottom: 4px solid var(--crimson);
  box-shadow: 0 0 0 4px var(--ink), 0 8px 0 -4px var(--gold);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { border-radius: 50%; box-shadow: 0 0 0 2px var(--gold); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-kicker { font-size: 0.7rem; letter-spacing: 0.14em; font-weight: 700; color: #c0c0c0; }
.nav-wordmark { font-family: var(--font-serif); font-weight: 900; font-size: 1.1rem; color: #fff; margin-top: 3px; }
.nav-links { display: flex; gap: clamp(0.75rem, 2vw, 1.75rem); }
.nav-links a {
  color: #e8e6df;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}
.nav-links a:hover { color: var(--gold); border-bottom-color: var(--crimson); }
@media (max-width: 620px) {
  .nav-links { display: none; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 200ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--crimson); color: #fff; border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn-primary:hover { background: var(--crimson-dark); box-shadow: 6px 6px 0 var(--ink); color: #fff; }
.btn-ghost { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--gold); }

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--cream);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
  border-bottom: 8px solid var(--ink);
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -12px; height: 8px; background: var(--gold);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700; letter-spacing: 0.16em; font-size: 0.8rem;
  color: var(--crimson); text-transform: uppercase;
  margin: 0 0 1rem;
}
.eyebrow-dark { color: var(--gold); }
.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 5.4vw, 3.75rem);
  line-height: 1.02;
  margin: 0 0 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-title-accent {
  display: inline-block;
  color: var(--crimson);
  font-style: italic;
}
.hero-sub {
  font-size: 1.075rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 1.5rem;
}
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stats {
  display: flex; gap: clamp(1rem, 3vw, 2.5rem);
  padding-top: 1.5rem; border-top: 2px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: var(--crimson); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.35rem; }
.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-silhouette {
  max-width: 100%;
  width: min(100%, 560px);
  filter: drop-shadow(6px 8px 0 rgba(10,10,10,0.12));
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .hero-silhouette { width: min(80%, 380px); }
}

/* --- Section shared --- */
.section-head {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 55ch; margin: 0 auto; }

/* --- Episodes --- */
.episodes { padding: var(--section-y) 0; background: var(--cream); position: relative; }
.episode-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.ep-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
  display: flex; flex-direction: column;
}
.ep-card:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--ink); }
.ep-card.ep-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}
.ep-card.ep-featured .ep-header { height: 100%; object-fit: cover; }
.ep-card.ep-featured .ep-body { padding: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 800px) {
  .ep-card.ep-featured { grid-template-columns: 1fr; }
}
.ep-header { width: 100%; display: block; background: var(--cream); }
.ep-body { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.ep-tag {
  align-self: flex-start;
  background: var(--crimson); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.35rem 0.6rem; border-radius: 4px;
}
.ep-tag-new { background: var(--gold); color: var(--ink); }
.ep-body h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.35rem;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ep-featured .ep-body h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.ep-body p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.ep-meta {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em;
  padding-top: 0.5rem; border-top: 1px solid var(--border);
}
.ep-meta b { color: var(--ink); font-weight: 700; }
.ep-body video { border-radius: var(--radius-sm); background: #000; margin-top: 0.5rem; border: 2px solid var(--ink); }

/* --- Microfilm feature block --- */
.microfilm {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-y) 0;
  border-top: 8px solid var(--crimson);
  border-bottom: 8px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.microfilm::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(212,175,55,0.06) 1.5px, transparent 1.6px);
  background-size: 22px 22px;
  pointer-events: none;
}
.microfilm-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  position: relative; z-index: 2;
}
.microfilm-copy .microfilm-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.microfilm-body { font-size: 1.075rem; line-height: 1.65; color: #d8d3c4; margin: 0 0 1.5rem; max-width: 48ch; }
.microfilm-facts { list-style: none; margin: 0; padding: 0; }
.microfilm-facts li {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(212,175,55,0.2);
  font-size: 0.95rem;
}
.microfilm-facts li b { color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.75rem; }
.microfilm-facts li span { color: #d8d3c4; }
.microfilm-video video {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  border: 3px solid var(--gold);
  box-shadow: 12px 12px 0 var(--crimson);
  background: #000;
}
@media (max-width: 900px) {
  .microfilm-inner { grid-template-columns: 1fr; }
}

/* --- Cast --- */
.cast { padding: var(--section-y) 0; background: var(--cream-2); }
.cast-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.cast-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.5rem;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.cast-card:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--ink); }
.cast-silhouette-frame {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
}
.cast-silhouette { max-height: 130px; width: auto; }
.cast-ref {
  width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 2px var(--ink);
  margin: -20px auto 0.75rem;
  background: var(--cream);
}
.cast-card h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.cast-role {
  color: var(--crimson); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.04em; margin: 0 0 0.75rem;
}
.cast-bio { color: var(--muted); font-size: 0.9rem; line-height: 1.55; margin: 0 0 0.9rem; }
.cast-tag { margin: 0; }
.tag {
  display: inline-block;
  background: var(--ink); color: var(--gold);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.3rem 0.55rem; border-radius: 4px;
  margin: 0 0.2rem;
}
.tag-red { background: var(--crimson); color: #fff; }
.tag-gold { background: var(--gold); color: var(--ink); }
.tag-magenta { background: var(--magenta); color: #fff; }
.cast-card-duo .cast-silhouette-frame { height: 130px; }
.cast-card-duo { grid-column: span 1; }

/* --- Streaming --- */
.streaming { padding: var(--section-y) 0; background: var(--cream); text-align: center; }
.streaming-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.streaming-buttons {
  display: flex; gap: 0.85rem; flex-wrap: wrap; justify-content: center;
  margin-top: 2rem;
}
.btn-stream {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 120ms ease, box-shadow 200ms ease, background 160ms ease, color 160ms ease;
}
.btn-stream:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-spotify:hover { background: #1db954; color: #fff; }
.btn-apple:hover { background: #fc3c44; color: #fff; }
.btn-youtube:hover { background: #ff0000; color: #fff; }
.btn-tiktok:hover { background: var(--ink); color: var(--gold); }

/* --- Signup --- */
.signup {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  border-top: 4px solid var(--gold);
  border-bottom: 8px solid var(--ink);
  text-align: center;
}
.signup-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.signup-emblem {
  width: 100px; height: 100px; margin: 0 auto 1rem;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold), 6px 6px 0 var(--ink);
}
.signup h2 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
}
.signup p { color: var(--muted); font-size: 1.05rem; margin: 0 0 2rem; }
.signup-form {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  max-width: 460px; margin: 0 auto;
}
.signup-form input {
  flex: 1;
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  min-width: 220px;
}
.signup-form input:focus { outline: 3px solid var(--crimson); outline-offset: 2px; }
.signup-form button {
  padding: 0.9rem 1.35rem;
  font-family: var(--font-sans);
  font-weight: 700; font-size: 0.95rem;
  color: #fff; background: var(--crimson);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, box-shadow 200ms ease;
}
.signup-form button:hover { background: var(--crimson-dark); transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.signup-note { margin-top: 1rem; font-size: 0.9rem; color: var(--crimson); font-weight: 600; min-height: 1.2em; }

/* --- Footer --- */
.footer {
  background: var(--ink);
  color: #d8d3c4;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-top: 6px solid var(--crimson);
  box-shadow: inset 0 6px 0 var(--gold);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 3vw, 2rem) 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { max-width: 240px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-cols h4 { font-size: 0.82rem; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin: 0 0 0.75rem; }
.footer-cols a { display: block; color: #d8d3c4; padding: 0.3rem 0; font-size: 0.92rem; }
.footer-cols a:hover { color: var(--gold); }
.footer-legal {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding: 1.5rem clamp(1rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(216,211,196,0.15);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(216,211,196,0.6);
}
