:root {
  --bg: #090909;
  --ink: #f2f0eb;
  --muted: #9e9b95;
  --line: rgba(242, 240, 235, 0.18);
  --line-strong: rgba(242, 240, 235, 0.42);
  --max: 1480px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; }
button { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--bg); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(9, 9, 9, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.wordmark {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
}
nav { display: flex; gap: clamp(16px, 2.1vw, 34px); }
nav a {
  text-decoration: none;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  transition: color .2s ease;
}
nav a:hover, nav a:focus-visible { color: var(--ink); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 140px var(--gutter) 34px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,9,9,.98) 0%, rgba(9,9,9,.92) 27%, rgba(9,9,9,.40) 51%, rgba(9,9,9,.06) 72%, rgba(9,9,9,.18) 100%),
    linear-gradient(0deg, rgba(9,9,9,.76) 0%, rgba(9,9,9,.06) 32%, transparent 58%);
  pointer-events: none;
}
.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: min(66vw, 1120px);
  background-image: url("assets/hero-keyart.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  opacity: .88;
  pointer-events: none;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(9,9,9,.72) 18%, rgba(9,9,9,.12) 50%, transparent 76%);
}
.hero-noise {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(52vw, 780px);
  margin: auto 0 7vh;
}
.eyebrow {
  margin: 0 0 24px;
  font-size: clamp(9px, .78vw, 12px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--muted);
}
h1 {
  margin: 0;
  font-size: clamp(64px, 7.4vw, 118px);
  line-height: .82;
  font-weight: 600;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
h1 span { display: block; }
h1 span:last-child {
  margin-top: .22em;
  font-size: .42em;
  line-height: .96;
  font-weight: 500;
  letter-spacing: -.014em;
}
.tagline {
  margin: 34px 0 0;
  max-width: 620px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-style: italic;
  line-height: 1.25;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
  font-weight: 500;
  border: 1px solid var(--line-strong);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.button-primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.button-primary:hover { background: transparent; color: var(--ink); }
.button-ghost:hover { border-color: var(--ink); }
.hero-meta {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 8px;
}
.hero-meta span:not(:last-child)::after { content: "/"; margin-left: 24px; color: #5f5c58; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  margin-bottom: clamp(42px, 6vw, 90px);
}
.section-number {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .2em;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 70px);
  line-height: .94;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -.035em;
}

.video-shell {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}
.video-shell iframe { width: 100%; height: 100%; border: 0; display: block; }

.film-layout {
  display: grid;
  grid-template-columns: minmax(260px, .64fr) minmax(0, 1.36fr);
  gap: clamp(44px, 8vw, 130px);
  align-items: center;
}
.poster-block { margin: 0; }
.poster-block > a {
  display: block;
  border: 1px solid var(--line);
  background: #050505;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.poster-block img { display: block; width: 100%; height: auto; }
.poster-block figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 8px;
}
.poster-block figcaption a { text-decoration: none; }
.poster-block figcaption a:hover { color: var(--ink); }
.film-copy { align-self: center; }
.synopsis {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.2vw, 50px);
  line-height: 1.19;
  letter-spacing: -.018em;
}
.film-facts {
  display: grid;
  gap: 11px;
  margin-top: clamp(38px, 5vw, 72px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .15em;
  line-height: 1.6;
}
.film-facts p { margin: 0; }

.stills-section { overflow: hidden; }
.carousel-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(60%, 780px);
  margin-bottom: 18px;
}
.carousel-count {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .18em;
}
.carousel-buttons { display: flex; gap: 8px; }
.carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.carousel-button:hover, .carousel-button:focus-visible {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.stills-track {
  display: flex;
  gap: clamp(12px, 1.5vw, 22px);
  overflow-x: auto;
  padding: 0 10vw 8px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  outline: none;
  cursor: grab;
}
.stills-track:active { cursor: grabbing; }
.stills-track::-webkit-scrollbar { display: none; }
.still {
  flex: 0 0 min(60%, 780px);
  aspect-ratio: 16 / 9;
  margin: 0;
  scroll-snap-align: start;
  background: #050505;
}
.still img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #050505;
}
.carousel-hint {
  width: min(60%, 780px);
  margin: 12px 0 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 8px;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 8vw, 120px);
}
.credit-block { margin: 0; }
.credit-block div {
  display: grid;
  grid-template-columns: minmax(130px, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.credit-block div:last-child { border-bottom: 1px solid var(--line); }
dt {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 8px;
  line-height: 1.5;
}
dd { margin: 0; font-size: 14px; line-height: 1.5; font-weight: 400; }

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: clamp(60px, 12vw, 190px);
}
.press-primary p { margin: 0 0 20px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.contact-email {
  display: inline-block;
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1.15;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 4px;
}
.contact-email:hover { border-color: var(--ink); }
.link-list { border-top: 1px solid var(--line); }
.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 9px;
  color: var(--muted);
  transition: color .2s ease, padding-left .2s ease;
}
.link-list a:hover { color: var(--ink); padding-left: 6px; }

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--gutter) 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 8px;
}
footer p { margin: 0; }
footer a { text-decoration: none; }
footer a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .film-layout { grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr); gap: 42px; }
}

@media (max-width: 760px) {
  .site-header { height: 62px; }
  nav { gap: 15px; }
  nav a:nth-child(2), nav a:nth-child(4) { display: none; }
  .hero { min-height: 92svh; padding-top: 110px; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(9,9,9,.95) 0%, rgba(9,9,9,.78) 52%, rgba(9,9,9,.28) 100%),
      linear-gradient(0deg, rgba(9,9,9,.88) 0%, rgba(9,9,9,.18) 48%, rgba(9,9,9,.22) 100%);
  }
  .hero-art { width: 100%; opacity: .62; background-position: 68% center; }
  .hero-art::before { background: linear-gradient(90deg, rgba(9,9,9,.88) 0%, rgba(9,9,9,.34) 58%, transparent 100%); }
  .hero-inner { width: 100%; max-width: 640px; margin-bottom: 9vh; }
  h1 { font-size: clamp(58px, 17vw, 96px); line-height: .82; font-weight: 600; }
  h1 span:last-child { font-size: .42em; line-height: 1; max-width: 94%; }
  .hero-meta { gap: 8px 16px; line-height: 1.8; }
  .hero-meta span:not(:last-child)::after { margin-left: 16px; }
  .section-heading { grid-template-columns: 46px 1fr; }
  .film-layout, .credits-grid, .press-grid { grid-template-columns: 1fr; }
  .poster-block { max-width: 72vw; }
  .film-copy { padding-top: 8px; }
  .carousel-ui, .carousel-hint { width: 88%; }
  .still { flex-basis: 88%; }
  .stills-track { padding-right: 6vw; }
  .credit-block div { grid-template-columns: 1fr 1.25fr; gap: 18px; }
}

@media (max-width: 500px) {
  nav a:nth-child(3) { display: none; }
  .poster-block { max-width: 82vw; }
  .carousel-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stills-track { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
