:root {
  --ink: #14202a;
  --navy: #143a59;
  --navy-deep: #0b283d;
  --blue: #386c8d;
  --cream: #f6eddf;
  --paper: #fdf8ef;
  --burgundy: #71152d;
  --burgundy-deep: #4b0d1e;
  --slate-blue: #70889a;
  --antique-gold: #d6bd83;
  --line: rgba(20, 32, 42, 0.17);
  --shadow: 0 24px 70px rgba(18, 45, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(253, 248, 239, 0.95), rgba(253, 248, 239, 0.95)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(20, 58, 89, 0.035) 31px 32px);
  font-family: "Trebuchet MS", "Avenir Next", Avenir, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

body::before {
  content: "";
  display: block;
  height: 12px;
  background-color: var(--burgundy-deep);
  background-image:
    linear-gradient(90deg, rgba(246, 237, 223, 0.36) 50%, transparent 50%),
    linear-gradient(rgba(246, 237, 223, 0.36) 50%, transparent 50%);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--navy-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: white;
  background: var(--burgundy);
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--burgundy);
  font: 700 0.85rem/1 Georgia, serif;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font: 700 1.16rem/1.1 Georgia, serif;
  letter-spacing: 0.01em;
}

.brand small {
  margin-top: 0.16rem;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 1.7rem;
  align-items: center;
}

nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 4vw;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 4.5rem 0 5rem;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 1rem;
  color: var(--burgundy-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.welcome h2,
.section-heading h2,
.premiere h2,
.rules h2 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(4.1rem, 8vw, 7.4rem);
}

.hero h1 em {
  color: var(--burgundy);
  font-weight: 500;
}

.hero-line {
  margin: 2rem 0 0;
  color: var(--navy);
  font: 500 clamp(1.15rem, 2vw, 1.45rem)/1.45 Georgia, serif;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(20, 58, 89, 0.2);
}

.button-quiet {
  color: var(--navy);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.hero-image {
  position: relative;
  margin: 0;
}

.hero-image::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 38%;
  height: 46%;
  content: "";
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 50%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.24) 50%, transparent 50%);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  border-radius: 50% 50% 18% 35%;
}

.hero-image img {
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  object-position: 58% center;
  border: 10px solid white;
  border-radius: 47% 47% 14% 14%;
  box-shadow: var(--shadow);
}

.hero-image figcaption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--burgundy);
  border-radius: 100px;
  font: italic 600 0.96rem/1.2 Georgia, serif;
  box-shadow: 0 8px 24px rgba(63, 21, 17, 0.22);
  transform: rotate(-2deg);
}

.welcome {
  padding: 6.5rem max(24px, calc((100vw - 1120px) / 2));
  color: white;
  background: var(--navy-deep);
}

.welcome .section-kicker {
  color: var(--antique-gold);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 8vw;
  align-items: start;
}

.welcome h2 {
  color: white;
  font-size: clamp(2.9rem, 5.5vw, 5.6rem);
}

.welcome-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.08rem;
}

.welcome-copy p:first-child {
  margin-top: 0;
  color: white;
  font: 500 1.42rem/1.5 Georgia, serif;
}

.worlds {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 7rem 0;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2,
.rules h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.world-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin: 1rem 0;
  padding: 3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 12px 35px rgba(20, 58, 89, 0.07);
}

.card-number {
  color: rgba(20, 58, 89, 0.18);
  font: 500 4.5rem/0.9 Georgia, serif;
}

.world-card h3 {
  margin: 0 0 0.8rem;
  color: var(--navy-deep);
  font: 500 clamp(2rem, 4vw, 3.7rem)/1.05 Georgia, serif;
  letter-spacing: -0.035em;
}

.world-card p:not(.card-label) {
  max-width: 720px;
  margin: 0 0 1.35rem;
  color: rgba(20, 32, 42, 0.76);
  font-size: 1.03rem;
}

.coming {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 58, 89, 0.13);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.world-kitchen {
  background: linear-gradient(125deg, #f4e7df, #fdf8ef);
}

.world-home {
  background: linear-gradient(125deg, #e7edf1, #fdf8ef);
}

.world-night {
  color: white;
  background:
    radial-gradient(circle at 92% 20%, rgba(113, 21, 45, 0.38), transparent 28%),
    var(--navy-deep);
}

.world-night .card-number,
.world-night p:not(.card-label) {
  color: rgba(255, 255, 255, 0.66);
}

.world-night h3,
.world-night .card-label {
  color: white;
}

.world-night .coming {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.premiere {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 6vw;
  align-items: center;
  padding: 7rem max(24px, calc((100vw - 1120px) / 2));
  background-color: #eadfcf;
  background-image:
    linear-gradient(90deg, rgba(113, 21, 45, 0.11) 50%, transparent 50%),
    linear-gradient(rgba(113, 21, 45, 0.11) 50%, transparent 50%);
  background-size: 54px 54px;
  background-position: 0 0, 27px 27px;
}

.premiere h2 {
  font-size: clamp(3.1rem, 6vw, 6rem);
}

blockquote {
  max-width: 580px;
  margin: 2rem 0 0;
  padding-left: 1.4rem;
  border-left: 4px solid var(--burgundy);
  font: italic 500 1.28rem/1.5 Georgia, serif;
}

.signature {
  margin-left: 1.4rem;
  font-weight: 900;
}

.premiere-card {
  position: relative;
  min-height: 420px;
  padding: 3rem;
  color: white;
  background:
    linear-gradient(145deg, rgba(20, 58, 89, 0.92), rgba(11, 40, 61, 0.99)),
    var(--navy);
  border: 9px solid white;
  border-radius: 36px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.premiere-badge,
.soon-pill {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.premiere-badge {
  color: var(--navy-deep);
  background: var(--antique-gold);
}

.episode-number {
  margin-top: 3.5rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.premiere-card h3 {
  margin: 0.4rem 0 1rem;
  font: 500 clamp(2.7rem, 5vw, 5rem)/0.98 Georgia, serif;
  letter-spacing: -0.04em;
}

.premiere-card p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.74);
}

.soon-pill {
  margin-top: 1.4rem;
  color: white;
  background: var(--burgundy);
}

.rules {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  padding: 7rem 0;
}

.rules ol {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.rules li {
  display: grid;
  grid-template-columns: 72px 1fr;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  font: 500 clamp(1.35rem, 3vw, 2.1rem)/1.25 Georgia, serif;
}

.rules li span {
  color: var(--burgundy);
  font: 900 0.75rem/2.4 "Trebuchet MS", sans-serif;
  letter-spacing: 0.14em;
}

footer {
  padding: 4.5rem 24px;
  color: white;
  text-align: center;
  background: var(--navy-deep);
}

.footer-brand {
  color: var(--antique-gold);
  font: 500 clamp(2.3rem, 5vw, 4.7rem)/1 Georgia, serif;
}

footer p {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.7);
}

.copyright {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 30px, 720px);
  }

  nav {
    display: none;
  }

  .hero,
  .welcome-grid,
  .premiere {
    grid-template-columns: 1fr;
  }

  .hero {
    width: min(100% - 30px, 720px);
    min-height: auto;
    padding: 3.4rem 0 4.8rem;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6.5rem);
  }

  .hero-image {
    margin-top: 1rem;
  }

  .hero-image img {
    aspect-ratio: 1 / 1.05;
  }

  .welcome {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .welcome-grid {
    gap: 2.5rem;
  }

  .worlds {
    width: min(100% - 30px, 720px);
    padding: 5rem 0;
  }

  .world-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem;
  }

  .card-number {
    font-size: 2.7rem;
  }

  .premiere {
    gap: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .premiere-card {
    min-height: 360px;
    padding: 2rem;
    transform: none;
  }

  .rules {
    width: min(100% - 30px, 720px);
    padding: 5rem 0;
  }
}

@media (max-width: 480px) {
  body::before {
    height: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 20vw, 5rem);
  }

  .button {
    width: 100%;
  }

  .hero-image figcaption {
    right: 0.8rem;
    bottom: 0.8rem;
    font-size: 0.82rem;
  }

  .world-card {
    border-radius: 22px;
  }

  .premiere-card {
    min-height: 340px;
    border-width: 6px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
