@font-face {
  font-family: "League Gothic";
  src: url("/assets/fonts/LeagueGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville";
  src: url("/assets/fonts/Baskervville-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Baskervville";
  src: url("/assets/fonts/Baskervville-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #120b08;
  --bg-elev: #1b120f;
  --bg-card: rgba(40, 26, 20, 0.82);
  --bg-soft: rgba(255, 245, 233, 0.04);
  --ink: #f0e5d5;
  --ink-soft: #d9c8b6;
  --muted: #b49d8a;
  --line: rgba(240, 229, 213, 0.14);
  --accent: #9d3d1b;
  --accent-bright: #c65f37;
  --brass: #c8a05d;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Baskervville", Georgia, serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(157, 61, 27, 0.2), transparent 34%),
    radial-gradient(circle at right 18%, rgba(200, 160, 93, 0.1), transparent 22%),
    linear-gradient(180deg, #140c09 0%, #100806 48%, #0c0705 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 245, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 245, 233, 0.035) 1px, transparent 1px);
  background-size: 100% 48px, 48px 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

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

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

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--bg);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0 1rem;
  background: linear-gradient(180deg, rgba(18, 11, 8, 0.92), rgba(18, 11, 8, 0.66) 74%, transparent);
  transition:
    padding 0.25s ease,
    backdrop-filter 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  padding: 0.85rem 0;
  backdrop-filter: blur(16px);
}

.brand-lockup {
  flex: 0 1 360px;
  min-width: 220px;
}

.brand-lockup img {
  width: min(360px, 100%);
  height: auto;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.nav-link,
.header-cta,
.button,
.fact-chip strong,
.role,
.eyebrow,
.quick-fact-card h3,
.faq-item summary {
  font-family: "League Gothic", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-link {
  color: var(--ink-soft);
  font-size: 1.08rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.nav-link.is-active,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  border-color: rgba(200, 160, 93, 0.75);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
}

.header-cta {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(200, 160, 93, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 0 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: start;
  padding-top: 1rem;
}

.hero-copy,
.panel,
.quick-fact-card,
.cast-card,
.faq-item,
.sources-list li {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(42, 29, 22, 0.82), rgba(22, 15, 12, 0.94));
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.45rem, 3vw, 2.6rem);
}

.hero-copy::before {
  content: "2025";
  position: absolute;
  right: clamp(0.75rem, 2vw, 1.25rem);
  top: clamp(0.65rem, 1.2vw, 1rem);
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  line-height: 0.84;
  color: rgba(255, 245, 233, 0.08);
}

.eyebrow {
  color: var(--brass);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

h1 {
  position: relative;
  z-index: 1;
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(4.8rem, 13vw, 8.9rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 9ch;
}

.hero-dek {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin-top: 1rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button-primary {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.07);
}

.editorial-note {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  color: var(--ink-soft);
  border-left: 4px solid var(--brass);
  background: rgba(255, 255, 255, 0.025);
}

.fact-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.fact-chip {
  min-width: 12rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.fact-chip strong {
  display: block;
  color: var(--brass);
  font-size: 0.92rem;
}

.fact-chip span {
  display: block;
  margin-top: 0.15rem;
  color: var(--ink);
}

.hero-visual {
  padding-top: 1.75rem;
}

.poster-frame {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(200, 160, 93, 0.22);
  background:
    linear-gradient(160deg, rgba(157, 61, 27, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(32, 22, 16, 0.94), rgba(16, 11, 8, 0.98));
  transform: rotate(2deg);
  box-shadow: var(--shadow);
}

.poster-frame::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(240, 229, 213, 0.08);
  pointer-events: none;
}

.poster-frame figure {
  margin: 0;
}

.poster-frame img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(240, 229, 213, 0.14);
}

.poster-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.panel h2 {
  font-family: "League Gothic", Impact, sans-serif;
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
  max-width: 14ch;
}

.section-heading > p:last-child,
.panel p,
.cast-card p:last-child,
.faq-item p,
.footnote,
.site-footer p {
  color: var(--ink-soft);
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.quick-fact-card {
  padding: 1.2rem;
}

.quick-fact-card h3 {
  color: var(--brass);
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.quick-fact-card p {
  color: var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 1rem;
}

.panel {
  padding: 1.4rem;
}

.panel h2 {
  margin-bottom: 1rem;
}

.panel p + p {
  margin-top: 1rem;
}

.panel-accent {
  position: relative;
  overflow: hidden;
}

.panel-accent::before {
  content: "";
  position: absolute;
  inset: auto -20% -18% auto;
  width: 16rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 160, 93, 0.18), transparent 70%);
}

.highlight-list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.highlight-list li {
  padding-left: 1rem;
  border-left: 3px solid rgba(200, 160, 93, 0.68);
}

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

.cast-card {
  min-height: 12.5rem;
  padding: 1.15rem;
}

.role {
  color: var(--brass);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.cast-card h3 {
  font-family: "League Gothic", Impact, sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-size: 1.55rem;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brass);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.2rem 1.2rem;
}

.sources-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sources-list li {
  padding: 1rem 1.15rem;
}

.sources-list a {
  color: var(--ink);
  border-bottom: 1px solid rgba(200, 160, 93, 0.56);
}

.sources-list a:hover,
.sources-list a:focus-visible {
  color: var(--brass);
}

.footnote {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 0 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.96rem;
}

.site-footer p {
  padding-top: 1rem;
}

.site-footer span {
  color: var(--brass);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .hero,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding-top: 0;
  }

  .quick-facts-grid,
  .cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading h2,
  .panel h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(var(--max-width), calc(100% - 1rem));
  }

  .site-header {
    align-items: flex-start;
  }

  .header-links {
    justify-content: flex-start;
  }

  .brand-lockup {
    min-width: 0;
  }

  .fact-chip {
    flex: 1 1 100%;
  }

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

  .poster-frame {
    transform: none;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .faq-item summary {
    font-size: 1.35rem;
    padding-right: 2.5rem;
  }

  .header-cta,
  .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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