:root {
  color-scheme: dark;
  --bg: #111116;
  --bg-strong: #170d16;
  --band: rgba(255, 255, 255, 0.03);
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4efe8;
  --muted: #d8ced5;
  --pink: #ff7ea6;
  --pink-soft: rgba(255, 126, 166, 0.16);
  --lime: #effa53;
  --cream: #f4efe8;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(120deg, rgba(255, 126, 166, 0.08) 0%, transparent 34%),
    linear-gradient(180deg, #140d14 0%, #111116 42%, #220d1a 100%);
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

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

a {
  color: inherit;
}

button,
a,
summary {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--lime);
  color: #101114;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

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

.section-band {
  border-top: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(17, 17, 22, 0.72);
  backdrop-filter: blur(0px);
}

.site-header.is-scrolled {
  background: rgba(17, 17, 22, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 340px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--text);
  border-color: var(--pink);
  background: var(--pink-soft);
}

.hero {
  padding: 36px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 48px;
  align-items: end;
}

.hero-copy {
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

h1,
h2,
h3,
summary {
  margin: 0;
  color: var(--text);
  font-family: "Baskerville", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
}

h1 {
  font-size: 76px;
  line-height: 0.95;
}

h2 {
  max-width: 12ch;
  font-size: 56px;
  line-height: 1;
}

h3 {
  font-size: 28px;
  line-height: 1.1;
}

p,
dt,
dd,
li {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-lead {
  max-width: 34rem;
  margin-top: 24px;
  font-size: 20px;
}

.hero-note {
  max-width: 36rem;
  margin-top: 20px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.meta-row span,
.poster-label,
.link-label,
.cast-role {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.next-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: min(100%, 34rem);
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
}

.next-label {
  color: var(--lime);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.next-copy {
  font-size: 17px;
  line-height: 1.4;
  color: var(--muted);
}

.next-strip:hover .next-copy {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--lime);
  color: #111116;
}

.button-primary:hover {
  background: #f7ff85;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--pink);
}

.button-secondary:hover {
  background: var(--pink-soft);
}

.hero-poster,
.supporting-image,
.link-card,
.cast-card {
  box-shadow: var(--shadow);
}

.hero-poster {
  margin: 0;
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.poster-label {
  width: fit-content;
  margin-bottom: 14px;
}

figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.section-overview,
.section-watch,
.site-footer {
  background: var(--band);
}

.section-overview,
.section-cast,
.section-watch,
.section-faq,
.site-footer {
  padding: 88px 0;
}

.section-overview {
  margin-top: -18px;
  padding-top: 70px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin: 0;
}

.section-heading h2 {
  max-width: 100%;
}

.overview-grid,
.cast-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 36px;
  align-items: start;
}

.overview-copy p + p {
  margin-top: 18px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

dt {
  color: var(--lime);
  font-size: 15px;
  font-weight: 600;
}

dd {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 18px;
}

.supporting-image {
  margin: 0;
}

.supporting-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

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

.cast-card,
.link-card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.cast-card h3,
.link-card h3 {
  margin-top: 12px;
}

.cast-card p:last-child,
.link-card p:nth-of-type(2) {
  margin-top: 12px;
}

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

.link-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: var(--lime);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
}

.link-card a:hover {
  color: #f7ff85;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-size: 30px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  max-width: 54rem;
  margin: 0 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
}

.footer-copy {
  max-width: 42rem;
  margin: 0;
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list a {
  color: var(--text);
  text-decoration: none;
}

.source-list a:hover {
  color: var(--lime);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 48px;
  }

  .hero-grid,
  .overview-grid,
  .cast-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 430px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    max-width: 280px;
  }

  .hero {
    padding: 24px 0 36px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 24px;
  }

  p,
  dt,
  dd,
  li {
    font-size: 17px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .facts-grid,
  .cast-grid,
  .watch-grid {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  .inner {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    padding: 9px 12px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-poster {
    max-width: none;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .faq-list summary {
    font-size: 22px;
  }
}
