:root {
  --ink: #17110d;
  --night: #1f1714;
  --coal: #31241f;
  --rust: #af4630;
  --rust-dark: #843224;
  --gold: #e8bd64;
  --moss: #6c7d46;
  --paper: #f2eadb;
  --cream: #fff9ec;
  --muted: rgba(23, 17, 13, 0.72);
  --line: rgba(93, 70, 55, 0.2);
  --line-dark: rgba(255, 249, 236, 0.18);
  --shadow: 0 24px 72px rgba(18, 12, 9, 0.28);
  --max: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--gold);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.solid,
.site-header.is-scrolled {
  background: rgba(31, 23, 20, 0.94);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 14px 38px rgba(12, 8, 6, 0.22);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  min-height: 72px;
  margin: 0 auto;
  color: var(--cream);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: rgba(255, 249, 236, 0.84);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.nav-links a:hover {
  color: var(--cream);
  background: rgba(255, 249, 236, 0.08);
  border-color: var(--line-dark);
}

.nav-links .nav-cta {
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--cream);
  background: rgba(255, 249, 236, 0.08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  opacity: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 8vw, 6.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.small-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: var(--cream);
  background: var(--rust);
  box-shadow: 0 14px 34px rgba(132, 50, 36, 0.32);
}

.button-primary:hover {
  background: var(--rust-dark);
}

.button-secondary {
  color: var(--cream);
  background: rgba(255, 249, 236, 0.1);
  border-color: rgba(255, 249, 236, 0.3);
}

.button-secondary:hover {
  background: rgba(255, 249, 236, 0.16);
}

.small-action {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--rust-dark);
  background: var(--cream);
  border-color: var(--line);
}

.small-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  overflow: hidden;
  color: var(--cream);
  background: var(--night);
}

.hero-backdrop,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background: url("assets/images/key-art-clean.png") center / cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(19, 13, 10, 0.88), rgba(19, 13, 10, 0.42), rgba(19, 13, 10, 0.12)),
    linear-gradient(0deg, rgba(19, 13, 10, 0.78), rgba(19, 13, 10, 0.08) 58%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 128px 0 58px;
}

.home-hero p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 249, 236, 0.86);
  font-size: 1.18rem;
}

.trailer-section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 78px 0 92px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.press-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: end;
  gap: 42px;
  min-height: 60svh;
  padding: 146px max(16px, calc((100vw - var(--max)) / 2)) 64px;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.94), rgba(18, 12, 9, 0.7), rgba(18, 12, 9, 0.44)),
    url("assets/images/key-art-clean.png") center / cover;
}

.press-hero .section-kicker {
  color: var(--gold);
}

.press-hero p {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 249, 236, 0.84);
  font-size: 1.08rem;
}

.press-hero img {
  width: 250px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.press-kit-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 44px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.press-sidebar {
  display: grid;
  align-self: start;
  gap: 16px;
}

.press-panel,
.press-section {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(93, 70, 55, 0.08);
}

.press-panel {
  padding: 22px;
}

.press-panel h2 {
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.fact-list {
  margin: 0;
}

.fact-list div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.fact-list dt {
  color: var(--rust-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 4px 0 0;
}

.link-stack {
  display: grid;
  gap: 8px;
}

.link-stack a,
.fact-list a,
.asset-card a {
  color: var(--rust-dark);
  font-weight: 900;
  text-decoration: none;
}

.link-stack a {
  min-height: 44px;
}

.link-stack a:hover,
.fact-list a:hover,
.asset-card a:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.press-main {
  display: grid;
  gap: 18px;
}

.press-section {
  padding: 28px;
}

.press-section .lead {
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 800;
}

.press-section p {
  color: var(--muted);
}

.press-section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.press-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.asset-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.asset-card.wide {
  grid-column: span 2;
}

.asset-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--coal);
}

.brand-grid .asset-card:not(.wide) img {
  aspect-ratio: 1 / 1;
}

.asset-card a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(16px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 249, 236, 0.78);
  background: var(--night);
}

.site-footer strong {
  color: var(--cream);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  min-height: 44px;
  color: rgba(255, 249, 236, 0.84);
  text-decoration: none;
}

@media (max-width: 900px) {
  .press-hero,
  .press-kit-layout {
    grid-template-columns: 1fr;
  }

  .press-hero img {
    width: min(250px, 100%);
  }

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

@media (max-width: 720px) {
  .site-header {
    background: rgba(31, 23, 20, 0.94);
    border-bottom: 1px solid var(--line-dark);
  }

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

  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 10px;
    background: rgba(31, 23, 20, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .home-hero {
    min-height: 68svh;
  }

  .hero-backdrop {
    background-position: 44% center;
  }

  .home-hero-content {
    padding: 108px 0 38px;
  }

  .home-hero p {
    font-size: 1rem;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .trailer-section {
    padding: 56px 0 68px;
  }

  .press-section-heading,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .small-action-row {
    width: 100%;
    justify-content: flex-start;
  }

  .press-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .press-kit-layout {
    padding: 52px 0 68px;
  }

  .press-section,
  .press-panel {
    padding: 20px;
  }

  .asset-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .asset-card.wide {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .small-action:hover {
    transform: none;
  }
}
