:root {
  --ink: #f8efe1;
  --muted: #c7b9a6;
  --line: rgba(255, 255, 255, 0.16);
  --panel: #17120f;
  --panel-2: #211813;
  --blood: #8f1720;
  --gold: #d7aa55;
  --gold-2: #f3d68c;
  --coal: #080706;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.68), rgba(8, 7, 6, 0.98) 48rem),
    url("assets/poster.png") center top / min(120rem, 140vw) auto no-repeat,
    var(--coal);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 700;
}

.brand img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 4px;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: 0.96rem;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, 28rem) minmax(0, 44rem);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 4.2rem);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 6vw, 6rem) 2rem;
}

.hero-poster img {
  width: 100%;
  max-height: 75vh;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 1.5rem 4rem var(--shadow);
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--gold-2);
  font: 700 0.82rem/1.2 Arial, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 8vw, 7rem);
  text-shadow: 0 0.45rem 1.8rem rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.hook {
  max-width: 42rem;
  margin: 1.3rem 0 0;
  color: var(--gold-2);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.summary,
.section-head p,
.episode-meta,
.story-strip p,
.sticky-watch span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.55;
}

.summary {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 4px;
  font: 800 0.95rem/1 Arial, sans-serif;
}

.primary-cta {
  color: #1c1006;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 0.8rem 1.8rem rgba(215, 170, 85, 0.18);
}

.secondary-cta {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem) 4rem;
}

.story-strip article {
  padding: clamp(1.1rem, 3vw, 2rem);
  background: rgba(23, 18, 15, 0.88);
  border: 1px solid var(--line);
}

.story-strip span {
  display: block;
  color: var(--gold);
  font: 700 0.82rem/1 Arial, sans-serif;
}

.story-strip strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.55rem;
}

.story-strip p {
  margin: 0.45rem 0 0;
}

.episodes {
  padding: 4rem clamp(1rem, 5vw, 5rem) 8rem;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.15), rgba(143, 23, 32, 0.18));
}

.section-head {
  max-width: 58rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
  max-width: 86rem;
  margin: 0 auto;
}

.episode-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.episode-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #050505;
}

.episode-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 10.25rem;
  padding: 0.85rem;
}

.episode-body h3 {
  margin: 0;
  min-height: 2.45rem;
  font-size: 1.05rem;
  line-height: 1.15;
}

.episode-meta {
  margin: 0.35rem 0 0.8rem;
  min-height: 2.55rem;
  font-size: 0.82rem;
}

.episode-button {
  margin-top: auto;
  width: 100%;
  min-height: 2.4rem;
  border: 1px solid rgba(215, 170, 85, 0.44);
  border-radius: 4px;
  color: var(--gold-2);
  background: transparent;
  font: 800 0.82rem/1 Arial, sans-serif;
  cursor: pointer;
}

.episode-button:hover {
  background: rgba(215, 170, 85, 0.12);
}

.sticky-watch {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  left: clamp(0.75rem, 2vw, 1.5rem);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0.8rem;
  border: 1px solid rgba(215, 170, 85, 0.35);
  border-radius: 6px;
  background: rgba(16, 12, 10, 0.92);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.sticky-watch strong {
  display: block;
}

.sticky-watch span {
  display: block;
  font-size: 0.85rem;
}

.legal-page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 5rem 1.2rem 7rem;
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-poster {
    max-width: 22rem;
  }

  .story-strip,
  .episode-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero {
    padding-top: 1.5rem;
  }

  h1 {
    font-size: 3rem;
  }

  .story-strip,
  .episode-grid {
    grid-template-columns: 1fr;
  }

  .sticky-watch {
    align-items: stretch;
    flex-direction: column;
  }
}
