:root {
  --bg: #fbf7f1;
  --surface: #ffffff;
  --surface-soft: #fff8f1;
  --ink: #111111;
  --muted: #5d5a57;
  --line: rgba(17, 17, 17, 0.1);
  --accent: #ff6a1a;
  --accent-soft: #ff8b46;
  --dark: #121212;
  --dark-2: #1a1918;
  --shadow: 0 28px 80px rgba(17, 17, 17, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1480px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 26, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(0, 0, 0, 0.06), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fbf7f1 100%);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.6;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(12, 12, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-wordmark,
.btn,
.eyebrow,
.nav-toggle,
.episode-item__number,
.spotlight-card__label,
.clip-card__body span,
.tag-row span,
.text-link {
  font-family: "Space Grotesk", sans-serif;
}

.brand-wordmark {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
}

.site-nav a {
  padding: 10px 0;
  position: relative;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: #fff;
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
}

.hero {
  padding: 106px 0 86px;
  min-height: calc(100vh - 86px);
}

.hero-grid,
.content-hero,
.split-layout,
.crew-layout,
.follow-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.content-hero {
  align-items: center;
}

.hero-grid--content-page {
  align-items: center;
}

.hero-copy h1,
.content-hero__copy h1,
.section-heading h2,
.poster-card__body h2,
.about-panel h2,
.crew-layout h2,
.follow-panel h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.95;
  font-family: "Fraunces", serif;
}

.hero-copy h1,
.content-hero__copy h1 {
  max-width: none;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  white-space: nowrap;
}

.hero-copy h1 span {
  display: block;
}

.lede,
.poster-card__body p,
.spotlight-card p,
.section-heading p,
.about-panel p,
.episode-item__content p,
.crew-card__body p,
.clip-card__body p,
.follow-panel p {
  color: var(--muted);
}

.lede {
  font-size: 1.14rem;
  max-width: 58ch;
  margin: 24px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.eyebrow--compact {
  margin-bottom: 12px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--dark);
  color: white;
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.14);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.12);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(255, 106, 26, 0.08);
}

.btn-secondary--light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary--light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cta-row,
.follow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.platform-strip a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.platform-strip a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--ink);
}

.about-panel,
.poster-card,
.spotlight-card,
.crew-card,
.episode-item,
.clip-card {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.poster-card {
  overflow: hidden;
  display: grid;
}

.hero-aside,
.content-hero__aside {
  display: grid;
  gap: 18px;
}

.poster-card__art {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(160deg, #111111, #060606);
  padding: 20px;
}

.poster-card__art img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.poster-card__body {
  padding: 22px;
}

.poster-card__body h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.poster-card__body p,
.spotlight-card p,
.about-panel p,
.follow-panel p {
  margin-bottom: 0;
}

.spotlight-card {
  margin-top: 18px;
  padding: 22px;
  background: linear-gradient(160deg, #171717, #101010);
  color: white;
}

.spotlight-card__meta {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.spotlight-card__label {
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.spotlight-card strong {
  font-size: 1.15rem;
}

.spotlight-card a,
.text-link {
  color: white;
}

.spotlight-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-soft);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section--episodes {
  padding-top: 28px;
}

.section--crew {
  padding-top: 42px;
}

.section--follow {
  padding-bottom: 92px;
}

.section + .section {
  border-top: 1px solid rgba(17, 17, 17, 0.05);
}

.split-layout {
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  max-width: 860px;
}

.section-heading--wide {
  max-width: 720px;
}

.section-heading h2,
.about-panel h2,
.crew-layout h2,
.follow-panel h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.episode-column {
  display: grid;
  gap: 0;
  padding-right: 24px;
}

.episode-list {
  display: grid;
}

.episode-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: none;
}

.episode-item:first-of-type {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.episode-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--accent);
  background: rgba(255, 106, 26, 0.08);
  font-size: 0.8rem;
}

.episode-item__content {
  display: grid;
  gap: 6px;
}

.episode-item__content h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.episode-item__content p {
  margin: 0;
  max-width: 60ch;
}

.episode-item a {
  align-self: center;
  color: var(--ink);
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

.about-panel {
  padding: 34px;
  background: linear-gradient(160deg, #151515, #1b1b1b);
  color: white;
}

.about-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--crew {
  padding-top: 18px;
}

.crew-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.crew-card {
  overflow: hidden;
}

.crew-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ddd;
  object-position: center top;
}

.crew-card__body {
  padding: 16px 18px 18px;
}

.crew-card__body strong {
  display: block;
  font-size: 1.18rem;
  margin: 0;
}

.section--dark {
  background: linear-gradient(160deg, #0f0f0f, #171717);
  color: white;
}

.follow-panel {
  align-items: center;
}

.follow-panel--simple {
  padding-top: 6px;
  padding-bottom: 6px;
}

.follow-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 28px 0 42px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 22px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.hero--content {
  padding-bottom: 24px;
}

.content-hero__copy h1 {
  max-width: none;
}

.content-page {
  background:
    radial-gradient(circle at top left, rgba(255, 106, 26, 0.05), transparent 26%),
    linear-gradient(180deg, #fffaf5 0%, #fbf7f1 100%);
}

.content-hero--compact {
  padding: 88px 0 32px;
}

.content-hero-grid {
  width: min(calc(100% - 56px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
  gap: 48px;
  align-items: start;
}

.content-hero__copy {
  max-width: 620px;
}

.content-hero-copy {
  max-width: 560px;
}

.content-hero-copy h1 {
  max-width: 5ch;
  font-size: clamp(3.2rem, 5.8vw, 5.2rem);
  line-height: 0.92;
  white-space: normal;
}

.content-hero-copy .lede {
  max-width: 42ch;
}

.section-heading--compact {
  max-width: 640px;
}

.episode-list {
  max-width: 980px;
}

.spotify-embed {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.spotify-embed--featured {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
}

.clip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.clip-card {
  overflow: hidden;
}

.clip-card img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.clip-card__body {
  padding: 18px 18px 20px;
}

.clip-card__body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.clip-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.content-hero {
  align-items: center;
}

.section--rail {
  padding: 0 0 44px;
}

.rail-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.rail-strip__label {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  margin-bottom: 6px;
}

.rail-strip strong {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
}

.rail-strip__link {
  justify-self: end;
  font-weight: 700;
  color: var(--accent);
}

.episodes-footer {
  padding-top: 22px;
}

@media (min-width: 1200px) {
  .hero-copy h1 {
    max-width: 8ch;
  }
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero-grid,
  .content-hero,
  .split-layout,
  .crew-layout,
  .follow-panel {
    grid-template-columns: 1fr;
  }

  .crew-grid,
  .clip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-hero-grid {
    grid-template-columns: 1fr;
  }

  .content-hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 10px 0 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy h1,
  .content-hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
    white-space: normal;
  }

  .platform-strip,
  .cta-row,
  .follow-actions,
  .footer-grid,
  .tag-row {
    align-items: flex-start;
  }

  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .section--episodes,
  .section--crew,
  .section--follow {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .episode-item {
    grid-template-columns: 1fr;
  }

  .episode-item a {
    justify-self: start;
  }

  .crew-grid,
  .clip-grid {
    grid-template-columns: 1fr;
  }

  .rail-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rail-strip__link {
    justify-self: start;
  }

  .content-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.6rem, 13vw, 4rem);
  }
}
