:root {
  --black: #080907;
  --ink: #0d0f0c;
  --paper: #e8e4d8;
  --muted: #a19e93;
  --line: rgba(232, 228, 216, .18);
  --amber: #d99842;
  --sodium: #f0ba65;
  --green: #8ba38b;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.contact-honeypot {
  position: absolute !important;
  left: -5000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 99;
  opacity: .025;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, #fff 4px);
}

.site-header {
  position: absolute; z-index: 20; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 38px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wordmark {
  font-family: Oswald, sans-serif;
  line-height: .82; letter-spacing: .01em;
  font-size: 20px; text-transform: uppercase;
}
.wordmark img { display: block; max-height: 50px; width: auto; max-width: 80%; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.site-nav a:hover { color: white; }
.site-nav .nav-cta {
  border: 1px solid rgba(255,255,255,.45);
  padding: 12px 16px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px 7vw 85px;
  background:
    radial-gradient(circle at 50% 68%, rgba(214,154,70,.17), transparent 20%),
    linear-gradient(to bottom, rgba(4,6,4,.05), rgba(4,6,4,.55) 58%, #080907 100%);
}
.architecture { position: absolute; inset: 0; z-index: -1; perspective: 900px; }
.ceiling-grid {
  position: absolute; inset: -15% -20% 46% -20%;
  transform: rotateX(62deg);
  transform-origin: bottom;
  background:
    linear-gradient(rgba(205,179,124,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(205,179,124,.12) 1px, transparent 1px);
  background-size: 7.5% 20%;
  filter: blur(.3px);
}
.left-wall, .right-wall {
  position: absolute; top: 15%; bottom: 8%; width: 45%;
  background: linear-gradient(to bottom, rgba(77,76,60,.45), rgba(15,17,13,.9));
}
.left-wall {
  left: -12%; transform: skewY(16deg);
  clip-path: polygon(0 0, 100% 34%, 100% 70%, 0 100%);
}
.right-wall {
  right: -12%; transform: skewY(-16deg);
  clip-path: polygon(0 34%, 100% 0, 100% 100%, 0 70%);
}
.floor {
  position: absolute; left: 12%; right: 12%; bottom: -14%; height: 65%;
  clip-path: polygon(35% 0, 65% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(214,162,84,.15) 50%, transparent 50.3%),
    repeating-linear-gradient(90deg, rgba(190,175,140,.05) 0 1px, transparent 1px 9%),
    linear-gradient(to bottom, rgba(45,43,33,.72), rgba(4,5,4,.98));
}
.far-door {
  position: absolute; top: 35%; left: 47%; width: 6%; height: 23%;
  background: #050604;
  box-shadow: 0 0 100px rgba(221,164,77,.16);
}
.door-light {
  position: absolute; top: -3%; left: 8%; width: 84%; height: 3px;
  background: var(--sodium);
  box-shadow: 0 0 25px var(--sodium);
}
.figure {
  position: absolute; top: 43%; left: 50.5%; width: 9px; height: 48px;
  background: #030403; border-radius: 50% 50% 20% 20%;
  opacity: .66; filter: blur(1px);
  animation: flickerFigure 9s infinite;
}
@keyframes flickerFigure {
  0%, 64%, 67%, 100% { opacity: 0; }
  65%, 66% { opacity: .7; }
}

.camera-data {
  position: absolute; inset: 115px 38px auto;
  display: grid; grid-template-columns: 1fr auto;
  font-family: "IBM Plex Mono", monospace; font-size: 10px;
  letter-spacing: .13em; color: rgba(222,235,213,.55);
  text-transform: uppercase; line-height: 1.9;
}
.camera-data span:nth-child(2), .camera-data span:nth-child(4) { text-align: right; }
.rec-dot:before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  margin-right: 7px; border-radius: 50%; background: #b8533f;
  box-shadow: 0 0 8px #b8533f; animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: .2; } }

.hero-content { max-width: 900px; position: relative; z-index: 2; }
.eyebrow, .kicker, .section-number, .role {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase; letter-spacing: .15em;
}
.eyebrow { color: var(--sodium); font-size: 12px; margin-bottom: 22px; }
.hero h1 {
  margin: 0; font-family: Oswald, Impact, sans-serif;
  font-size: clamp(88px, 7vw, 210px);
  font-weight: 500; line-height: .74; letter-spacing: -.045em;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.hero h1 span { display: block; }
.hero h1 span:last-child { margin-left: 9vw; }
.hero-logline {
  max-width: 560px; margin: 42px 0 30px 9vw;
  font-size: clamp(16px, 1.3vw, 21px); line-height: 1.55;
  color: rgba(255,255,255,.77);
}
.hero-actions { display: flex; gap: 12px; margin-left: 9vw; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-height: 52px; padding: 0 22px;
  font-family: "IBM Plex Mono", monospace; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  transition: .25s ease;
}
.button-primary { background: var(--paper); color: #10110f; }
.button-primary:hover { background: var(--sodium); }
.button-secondary { border: 1px solid rgba(255,255,255,.35); }
.button-secondary:hover { border-color: white; background: rgba(255,255,255,.08); }
.play-icon { font-size: 10px; }

.hero-credits {
  position: absolute; right: 38px; bottom: 85px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 7px;
  font-family: "IBM Plex Mono", monospace; font-size: 9px;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.5);
}
.scroll-cue {
  position: absolute; right: 38px; bottom: 25px;
  display: flex; align-items: center; gap: 14px;
  font-family: "IBM Plex Mono", monospace; text-transform: uppercase;
  font-size: 9px; letter-spacing: .14em; color: rgba(255,255,255,.42);
}
.scroll-cue i { display: block; width: 70px; height: 1px; background: rgba(255,255,255,.3); }

.section { max-width: var(--max); margin: 0 auto; padding: 150px 7vw; }
.section-number {
  font-size: 10px; color: var(--amber); margin-bottom: 74px;
  border-top: 1px solid var(--line); padding-top: 15px;
}
.story-grid {
  display: grid; grid-template-columns: 1.05fr .8fr; gap: 9vw;
}
.kicker { font-size: 11px; color: var(--green); margin: 0 0 20px; }
h2 {
  margin: 0; font-family: Oswald, Impact, sans-serif;
  text-transform: uppercase; font-size: clamp(52px, 6vw, 92px);
  line-height: .95; letter-spacing: -.025em; font-weight: 500;
}
.story-copy { padding-top: 45px; }
.story-copy p, .filmmaker-section p {
  font-size: 17px; line-height: 1.75; color: rgba(232,228,216,.67);
}
.story-copy p:first-child { color: var(--paper); }
.genre-line {
  display: flex; flex-wrap: wrap; gap: 9px; margin-top: 40px;
}
.genre-line span {
  border: 1px solid var(--line); padding: 9px 11px;
  font-family: "IBM Plex Mono", monospace; font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

.trailer-section { padding-top: 20px; }
.trailer-frame { padding: 12px; border: 1px solid var(--line); background: #0b0d0a; }
.trailer-poster {
  width: 100%; aspect-ratio: 16/8.4; border: 0; cursor: pointer;
  position: relative; overflow: hidden; color: var(--paper);
  background:
    linear-gradient(rgba(8,9,7,.15), rgba(8,9,7,.55)),
    repeating-linear-gradient(90deg, transparent 0 11.8%, rgba(0,0,0,.18) 12%),
    radial-gradient(circle at center, rgba(208,155,77,.22), transparent 22%),
    linear-gradient(145deg, #323326 0 28%, #0b0d0a 28% 72%, #39382b 72%);
}
.trailer-poster:before {
  content:""; position:absolute; width:8%; height:42%; left:46%; top:27%;
  background:#030403; box-shadow:0 0 80px rgba(236,179,89,.23);
}
.trailer-camera, .trailer-label {
  position: absolute; font-family: "IBM Plex Mono", monospace;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
}
.trailer-camera { top: 20px; left: 22px; color: rgba(220,235,217,.55); }
.trailer-label { bottom: 21px; left: 22px; }
.large-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55);
  background: rgba(7,8,6,.38); backdrop-filter: blur(8px);
  transition: .25s ease; padding-left: 4px;
}
.trailer-poster:hover .large-play { background: var(--paper); color: var(--black); transform: translate(-50%,-50%) scale(1.08); }
.trailer-note {
  font-family: "IBM Plex Mono", monospace; font-size: 9px;
  letter-spacing: .1em; text-transform: uppercase; color: #727269; margin-top: 10px;
}

.cast-section { padding-top: 80px; }
.cast-intro { display: grid; grid-template-columns: .5fr 1fr; align-items: end; margin-bottom: 75px; }
.cast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; }
.cast-card { border-top: 1px solid var(--line); padding-top: 14px; }
.cast-card.offset { margin-top: 130px; }
.portrait {
  aspect-ratio: 5/6; display: grid; place-items: center; overflow: hidden;
  margin-bottom: 22px; border: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(circle at 50% 35%, rgba(204,176,120,.22), transparent 16%),
    linear-gradient(145deg, rgba(174,154,110,.12), transparent 45%),
    linear-gradient(#171914, #090a08);
}
.portrait-dispatch {
  background:
    radial-gradient(circle at 50% 38%, rgba(121,146,126,.25), transparent 17%),
    linear-gradient(215deg, rgba(103,132,110,.12), transparent 45%),
    linear-gradient(#141813, #080908);
}
.portrait span {
  font-family: Oswald, sans-serif; font-size: 22vw; color: rgba(255,255,255,.035);
  transform: scaleY(1.2);
}
.role { color: var(--amber); font-size: 9px; margin-bottom: 10px; }
.cast-info h3 { margin: 0 0 10px; font-family: Oswald; font-size: 40px; text-transform: uppercase; font-weight: 500; }
.cast-info p:last-child { color: #838177; line-height: 1.5; font-size: 13px; }

.quote-section {
  min-height: 70vh; display: grid; place-items: center; padding: 12vw;
  background:
    radial-gradient(circle at center, rgba(217,152,66,.11), transparent 32%),
    #090a08;
}
.quote-section blockquote {
  max-width: 1000px; margin: 0; text-align: center;
  font-family: Oswald, sans-serif; text-transform: uppercase;
  font-size: clamp(54px, 8vw, 130px); line-height: .95; letter-spacing: -.02em;
}
.quote-section blockquote span { color: var(--amber); }

.filmmaker-grid {
  display: grid; grid-template-columns: .7fr 1fr; gap: 8vw; align-items: center;
}
.director-image {
  aspect-ratio: 4/5; display: grid; place-items: center;
  background:
    linear-gradient(140deg, rgba(215,155,69,.2), transparent 40%),
    linear-gradient(#1b1c17, #0a0b09);
  border: 1px solid var(--line);
}
.director-image span { font-family: Oswald; font-size: 14vw; color: rgba(255,255,255,.035); }
.filmmaker-section h2 { margin-bottom: 35px; }
.filmmaker-section .large-copy { font-size: 23px; line-height: 1.55; color: var(--paper); }

.press-header {
  display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 70px;
}
.text-link {
  font-family: "IBM Plex Mono", monospace; text-transform: uppercase;
  letter-spacing: .13em; font-size: 10px; padding-bottom: 9px;
  border-bottom: 1px solid var(--paper);
}
.press-list { border-top: 1px solid var(--line); }
.press-item {
  display: grid; grid-template-columns: 180px 1fr 40px; align-items: center;
  min-height: 115px; border-bottom: 1px solid var(--line);
  transition: .25s ease;
}
.press-item:hover { background: rgba(255,255,255,.025); padding-left: 12px; }
.press-source {
  font-family: "IBM Plex Mono", monospace; font-size: 9px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--amber);
}
.press-item strong { font-family: Oswald; text-transform: uppercase; font-size: 30px; font-weight: 400; }
.arrow { text-align: right; }


footer {
  padding: 45px 38px 28px; border-top: 1px solid var(--line);
  background: #060705;
}
.footer-meta {
  display: flex; gap: 25px; flex-wrap: wrap; justify-content: space-between;
  margin-top: 38px; padding-top: 18px; border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace; font-size: 9px;
  text-transform: uppercase; letter-spacing: .13em; color: #727269;
}

@media (max-width: 820px) {
  .site-header { padding: 22px; }
  .site-nav {
    display: none; position: absolute; top: 75px; left: 0; right: 0;
    background: rgba(8,9,7,.97); padding: 25px 22px 32px;
    flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .menu-toggle {
    display: grid; gap: 6px; width: 34px; height: 34px; place-content: center;
    border: 0; background: transparent; color: white;
  }
  .menu-toggle span:not(.sr-only) { display:block; width:22px; height:1px; background:white; }
  .hero { padding: 140px 22px 90px; }
  .camera-data { inset: 91px 22px auto; }
  .hero h1 { font-size: clamp(70px, 23vw, 120px); line-height: .8; }
  .hero h1 span:last-child, .hero-logline, .hero-actions { margin-left: 0; }
  .hero-logline { margin-top: 35px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 280px; }
  .hero-credits { display: none; }
  .scroll-cue { right: 22px; }
  .section { padding: 110px 22px; }
  .story-grid, .filmmaker-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-copy { padding-top: 0; }
  .cast-intro { display: block; }
  .cast-intro .kicker { margin-bottom: 20px; }
  .cast-grid { grid-template-columns: 1fr; }
  .cast-card.offset { margin-top: 30px; }
  .portrait span { font-size: 45vw; }
  .director-image span { font-size: 35vw; }
  .press-header { align-items: flex-start; flex-direction: column; }
  .press-item { grid-template-columns: 1fr 26px; padding: 24px 0; gap: 8px; }
  .press-source { grid-column: 1 / 3; }
  .press-item strong { font-size: 24px; }
  footer { padding-left: 22px; padding-right: 22px; }
  .footer-meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}


/* ==========================================================
   OFFICIAL POSTER / TEASER UPDATE
   ========================================================== */

:root {
  --accent: #c51d1d;
  --accent-bright: #ed2828;
  --amber: var(--accent);
  --sodium: #f4f2ed;
  --green: #9ba8ad;
}

.site-header {
  position: fixed;
  background: linear-gradient(to bottom, rgba(5,5,5,.93), rgba(5,5,5,.18));
  backdrop-filter: blur(4px);
}

.site-nav .nav-cta {
  border-color: rgba(219,35,35,.75);
  background: rgba(157,13,13,.16);
}

.hero {
  min-height: 100svh;
  display: block;
  padding: 130px 5vw 70px;
  background:
    radial-gradient(circle at 76% 20%, rgba(198,20,20,.28), transparent 31%),
    radial-gradient(circle at 58% 62%, rgba(73,96,103,.12), transparent 34%),
    linear-gradient(115deg, #050505 0%, #0a0909 48%, #160707 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(207,27,27,.18) 46.2% 47%, transparent 47.2%),
    linear-gradient(45deg, transparent 0 62%, rgba(207,27,27,.12) 62.2% 63%, transparent 63.2%);
}

.hero-red-glow {
  position: absolute;
  width: 52vw;
  height: 52vw;
  max-width: 850px;
  max-height: 850px;
  right: -12vw;
  top: -18vw;
  border-radius: 50%;
  background: rgba(197,29,29,.19);
  filter: blur(110px);
}

.hero-grid {
  width: min(1500px, 100%);
  min-height: calc(100svh - 200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .62fr);
  align-items: center;
  gap: clamp(38px, 6vw, 100px);
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  padding-top: 35px;
}

.hero-tagline {
  margin: 0 0 23px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
}

.hero-tagline strong {
  color: var(--accent-bright);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(78px, 10vw, 175px);
  line-height: .78;
}

.hero h1 span:last-child {
  margin-left: 4.8vw;
}

.hero-logline {
  margin-left: 4.8vw;
}

.hero-actions {
  margin-left: 4.8vw;
}

.button-primary {
  background: #f1f0eb;
}

.button-primary:hover {
  background: var(--accent-bright);
  color: white;
}

.hero-billing {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 35px 0 0 4.8vw;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.hero-poster {
  position: relative;
  display: block;
  width: min(100%, 520px);
  justify-self: end;
  transform: rotate(.35deg);
  transition: transform .35s ease;
}

.hero-poster:hover {
  transform: rotate(0deg) translateY(-7px);
}

.hero-poster img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(224,43,43,.46);
  box-shadow:
    0 35px 80px rgba(0,0,0,.68),
    0 0 50px rgba(170,16,16,.18);
}

.poster-shadow {
  position: absolute;
  z-index: 1;
  inset: 4% -6% -4% 6%;
  border: 1px solid rgba(213,30,30,.2);
  background: rgba(112,10,10,.13);
}

.poster-caption {
  display: block;
  margin-top: 13px;
  text-align: right;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.camera-data {
  z-index: 3;
}

.rec-dot:before {
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-bright);
}

.section-number,
.role {
  color: var(--accent-bright);
}

.kicker {
  color: #aeb7bb;
}

.trailer-section {
  padding-top: 90px;
}

.trailer-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 48px;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

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

.trailer-frame {
  border-color: rgba(210,35,35,.38);
  background: #050505;
  box-shadow: 0 35px 90px rgba(0,0,0,.42);
}

.poster-section {
  padding-top: 80px;
}

.poster-grid {
  display: grid;
  grid-template-columns: .72fr minmax(340px, .55fr);
  align-items: center;
  gap: clamp(55px, 10vw, 150px);
}

.poster-copy {
  max-width: 650px;
}

.poster-copy h2 {
  color: var(--accent-bright);
  margin-bottom: 30px;
}

.poster-copy p:not(.kicker) {
  max-width: 560px;
  margin-bottom: 35px;
  color: rgba(232,228,216,.68);
  font-size: 18px;
  line-height: 1.72;
}

.poster-full {
  display: block;
  position: relative;
}

.poster-full::before {
  content: "";
  position: absolute;
  inset: 5% -5% -4% 6%;
  border: 1px solid rgba(210,35,35,.25);
}

.poster-full img {
  position: relative;
  width: 100%;
  display: block;
  border: 1px solid rgba(229,38,38,.5);
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
  transition: transform .35s ease;
}

.poster-full:hover img {
  transform: translateY(-8px);
}

.quote-section {
  background:
    radial-gradient(circle at center, rgba(193,25,25,.12), transparent 34%),
    #090808;
}

.quote-section blockquote span,
.quote-section blockquote em {
  color: var(--accent-bright);
  font-style: normal;
}

.final-hallway {
  background:
    radial-gradient(circle at 50% 48%, rgba(206,28,28,.2), transparent 17%),
    linear-gradient(to bottom, rgba(5,6,5,.25), #080707 90%),
    linear-gradient(145deg, #2a0d0d 0 34%, #080707 34% 66%, #2a0d0d 66%);
}

.final-hallway:after {
  border-top-color: var(--accent-bright);
  box-shadow: 0 0 90px rgba(213,31,31,.27);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr .52fr;
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(70px, 11vw, 115px);
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 125px 22px 90px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 10px;
  }

  .hero h1 {
    font-size: clamp(68px, 22vw, 112px);
  }

  .hero h1 span:last-child,
  .hero-logline,
  .hero-actions,
  .hero-billing {
    margin-left: 0;
  }

  .hero-poster {
    width: min(90%, 480px);
    justify-self: center;
    margin-top: 20px;
  }

  .poster-caption {
    text-align: left;
  }

  .trailer-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .poster-full {
    width: min(100%, 500px);
    justify-self: center;
  }
}


/* ==========================================================
   HERO NEWSLETTER REVISION
   ========================================================== */

.hero {
  padding-top: 122px;
  padding-bottom: 54px;
}

.hero-grid {
  grid-template-columns: minmax(0, .94fr) minmax(390px, .62fr);
  gap: clamp(45px, 6vw, 100px);
  min-height: calc(100svh - 155px);
}

.hero-content {
  max-width: 760px;
  padding-top: 15px;
}

.hero-tagline-large {
  max-width: 720px;
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(64px, 6.6vw, 112px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero-tagline-large strong {
  display: block;
  color: var(--accent-bright);
  font-weight: 500;
}

.hero-logline {
  max-width: 610px;
  margin: 29px 0 25px;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  margin: 0 0 32px;
}

.hero-actions .button-secondary {
  border-color: rgba(255,255,255,.4);
}

.newsletter-panel {
  position: relative;
  max-width: 760px;
  padding: 25px 27px 22px;
  border: 1px solid rgba(222,35,39,.52);
  background:
    linear-gradient(135deg, rgba(132,11,15,.2), transparent 47%),
    rgba(8,8,8,.67);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 22px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}

.newsletter-panel::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 58px;
  height: 2px;
  background: var(--accent-bright);
  box-shadow: 0 0 16px rgba(237,40,40,.55);
}

.newsletter-heading {
  display: grid;
  grid-template-columns: minmax(190px, .62fr) 1fr;
  column-gap: 26px;
  align-items: end;
  margin-bottom: 21px;
}

.newsletter-kicker {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.newsletter-heading h2 {
  font-size: clamp(31px, 3vw, 45px);
  line-height: .95;
}

.newsletter-heading > p:last-child {
  margin: 0;
  color: rgba(232,228,216,.61);
  font-size: 13px;
  line-height: 1.55;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(125px, .75fr) minmax(195px, 1.2fr) auto;
  gap: 9px;
  align-items: end;
}

.field-group {
    display: inline-block;
    gap: 7px;
    text-align: left;
    margin: 0 0 10px;
}

.field-group label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.field-group label span {
  color: var(--accent-bright);
}

.field-group input {
  min-width: 0;
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  outline: none;
  padding: 0 13px;
  background: rgba(0,0,0,.5);
  color: var(--paper);
  font: 14px Inter, Arial, sans-serif;
  transition: border-color .2s ease, background .2s ease;
}

.field-group input::placeholder {
  color: rgba(255,255,255,.31);
}

.field-group input:focus {
  border-color: var(--accent-bright);
  background: rgba(0,0,0,.72);
}

.newsletter-submit {
  height: 48px;
  border: 1px solid var(--accent-bright);
  border-radius: 0;
  padding: 0 18px;
  cursor: pointer;
  background: var(--accent-bright);
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease;
}

.newsletter-submit span {
  margin-left: 8px;
}

.newsletter-submit:hover {
  border-color: white;
  background: white;
  color: #090909;
}

.newsletter-status {
  display: none;
  grid-column: 1 / -1;
  margin: 3px 0 0;
  color: #d7d3cb;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsletter-status.visible {
  display: block;
}

.newsletter-privacy {
  margin: 13px 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.31);
}

.hero-billing {
  margin: 22px 0 0;
}

.hero-poster {
  width: min(100%, 515px);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .52fr);
    gap: 38px;
  }

  .newsletter-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .newsletter-form {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-submit {
    grid-column: 1 / -1;
  }
}

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

  .hero-tagline-large {
    font-size: clamp(58px, 18vw, 95px);
  }

  .hero-logline {
    margin-left: 0;
  }

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

  .newsletter-panel {
    padding: 22px 19px 19px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-submit {
    grid-column: auto;
  }

  .hero-poster {
    order: 2;
    width: min(86%, 470px);
  }
}

@media (max-width: 480px) {
  .newsletter-heading h2 {
    font-size: 35px;
  }
}


/* ==========================================================
   CAST PHOTOGRAPHY
   ========================================================== */

.portrait {
  position: relative;
  display: block;
  margin: 0 0 22px;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border: 1px solid rgba(237, 40, 40, .28);
  background: #0a0a09;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(4, 4, 4, .32), transparent 34%),
    linear-gradient(135deg, rgba(222, 32, 37, .07), transparent 42%);
  box-shadow: inset 0 0 45px rgba(0, 0, 0, .22);
}

.portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04);
  transform: scale(1.002);
  transition: transform .45s ease, filter .45s ease;
}

.portrait-rick img {
  object-position: 50% 31%;
}

.portrait-dispatch img {
  object-position: 50% 35%;
  filter: grayscale(1) contrast(1.08);
}

.cast-card:hover .portrait img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.06);
}

.cast-card:hover .portrait-dispatch img {
  filter: grayscale(.85) contrast(1.1);
}

@media (max-width: 820px) {
  .portrait-rick img {
    object-position: 50% 28%;
  }

  .portrait-dispatch img {
    object-position: 50% 31%;
  }
}


/* ==========================================================
   SIMPLIFIED HERO + CENTERED NEWSLETTER
   ========================================================== */

.hero {
  min-height: 100svh;
  padding-top: 130px;
  padding-bottom: 82px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .62fr);
  gap: clamp(60px, 8vw, 125px);
  align-items: center;
  min-height: calc(100svh - 212px);
}

.hero-content {
  max-width: 760px;
  padding-top: 0;
}

.hero-campaign-line {
  margin: 0;
  max-width: none;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(54px, 5.5vw, 94px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-campaign-line strong {
  color: var(--accent-bright);
  font-weight: 500;
}

.hero-logline {
  max-width: 590px;
  margin: 34px 0 28px;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  margin: 0;
  display: flex;
}

.hero-poster {
  width: min(100%, 500px);
}

.hero-billing,
.newsletter-panel {
  display: none !important;
}

.newsletter-section {
  position: relative;
  padding: 120px 7vw 130px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at 50% 20%, rgba(199, 25, 31, .14), transparent 34%),
    linear-gradient(to bottom, #090808, #070707);
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(520px, 58vw);
  height: 1px;
  transform: translateX(-50%);
  background: var(--accent-bright);
  box-shadow: 0 0 24px rgba(237,40,40,.4);
}

.newsletter-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.newsletter-section .newsletter-kicker {
  margin: 0 0 15px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.newsletter-section h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 82px);
}

.newsletter-intro {
  max-width: 610px;
  margin: 24px auto 42px;
  color: rgba(232,228,216,.65);
  font-size: 17px;
  line-height: 1.65;
}

.newsletter-section .newsletter-form {
  display: grid;
  grid-template-columns: minmax(160px, .8fr) minmax(260px, 1.35fr) auto;
  gap: 10px;
  align-items: end;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: left;
}

.newsletter-section .field-group {
  gap: 8px;
}

.newsletter-section .field-group label {
  font-size: 9px;
}

.newsletter-section .field-group input,
.newsletter-section .newsletter-submit {
  height: 54px;    
}

.newsletter-section .newsletter-submit {
  min-width: 170px;
  padding: 0 22px;
    background-color: var(--accent-bright);
}
.newsletter-section .newsletter-submit:hover {
    background-color: #fff;
    color: var(--accent-bright);
}
.newsletter-section .newsletter-status {
  grid-column: 1 / -1;
  text-align: center;
}

.newsletter-section .newsletter-privacy {
  margin: 17px 0 0;
  text-align: center;
}

@media (max-width: 1180px) {
  .hero-campaign-line {
    white-space: normal;
    font-size: clamp(52px, 6.4vw, 82px);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr .58fr;
    gap: 42px;
  }

  .hero-campaign-line {
    font-size: clamp(48px, 7vw, 70px);
  }

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

  .newsletter-section .newsletter-submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-campaign-line {
    white-space: normal;
    font-size: clamp(53px, 16vw, 88px);
  }

  .hero-poster {
    width: min(84%, 470px);
    margin-top: 12px;
  }

  .newsletter-section {
    padding: 92px 22px 100px;
  }

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

  .newsletter-section .newsletter-submit {
    grid-column: auto;
  }
}


/* ==========================================================
   HERO PROPORTION + TYPE REFINEMENT
   ========================================================== */

.hero {
  padding-top: 126px;
  padding-bottom: 76px;
}

.hero-grid {
  grid-template-columns: minmax(0, 3fr) minmax(330px, 2fr);
  gap: clamp(54px, 6.5vw, 105px);
  align-items: center;
  min-height: calc(100svh - 202px);
}

.hero-content {
  max-width: 760px;
}

.hero-campaign-line {
  max-width: 720px;
  font-size: clamp(46px, 4.15vw, 70px);
  line-height: .98;
  letter-spacing: -.025em;
  white-space: normal;
}

.hero-campaign-line span,
.hero-campaign-line strong {
  display: block;
}

.hero-campaign-line strong {
  margin-top: .08em;
}

.hero-logline {
  max-width: 560px;
  margin-top: 30px;
}

.hero-poster {
  width: min(100%, 470px);
  justify-self: end;
}

@media (min-width: 1500px) {
  .hero-grid {
    grid-template-columns: minmax(0, 2fr) minmax(390px, 1fr);
  }

  .hero-poster {
    width: min(100%, 500px);
  }
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 44px;
  }

  .hero-campaign-line {
    font-size: clamp(44px, 5vw, 62px);
  }
}

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

  .hero-campaign-line {
    max-width: 620px;
    font-size: clamp(47px, 14vw, 72px);
  }

  .hero-poster {
    width: min(82%, 450px);
    justify-self: center;
  }
}


/* ==========================================================
   NATURAL HERO HEADLINE WRAP
   ========================================================== */

.hero-grid {
  grid-template-columns: minmax(0, 3fr) minmax(340px, 2fr);
  gap: clamp(48px, 6vw, 96px);
}

.hero-content {
  max-width: 760px;
}

.hero-campaign-line {
  max-width: 720px;
  font-size: clamp(40px, 3.45vw, 59px);
  line-height: .94;
  letter-spacing: -.025em;
  white-space: normal;
}

.hero-campaign-line span,
.hero-campaign-line strong {
  display: inline;
}

.hero-campaign-line strong {
  margin-top: 0;
}

.hero-logline {
  max-width: 610px;
  margin-top: 29px;
}

@media (min-width: 1500px) {
  .hero-grid {
    grid-template-columns: minmax(0, 2fr) minmax(390px, 1fr);
  }

  .hero-campaign-line {
    max-width: 760px;
    font-size: clamp(44px, 3.25vw, 62px);
  }
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
    gap: 40px;
  }

  .hero-campaign-line {
    font-size: clamp(39px, 4.7vw, 54px);
  }
}

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

  .hero-campaign-line {
    max-width: 620px;
    font-size: clamp(42px, 12vw, 62px);
  }
}


/* ==========================================================
   SMALLER HERO HEADLINE
   ========================================================== */

.hero-campaign-line {
  font-size: clamp(32px, 5vw, 56px);
  line-height: .98;
  max-width: 700px;
}

@media (min-width: 1500px) {
  .hero-campaign-line {
    font-size: clamp(38px, 4vw, 58px);
  }
}

@media (max-width: 820px) {
  .hero-campaign-line {
    font-size: clamp(36px, 10vw, 52px);
  }
}


/* Exact requested hero type scale — overrides all earlier responsive rules. */
.hero-campaign-line {
  font-size: 5vw !important;
}

@media (min-width: 1500px) {
  .hero-campaign-line {
    font-size: 5vw !important;
  }
}

@media (max-width: 1050px) {
  .hero-campaign-line {
    font-size: 5vw !important;
  }
}

@media (max-width: 820px) {
  .hero-campaign-line {
    font-size: 5vw !important;
  }
}


/* Exact requested hero type scale. */
.hero-campaign-line {
  font-size: 7vw !important;
}

@media (min-width: 1500px) {
  .hero-campaign-line {
    font-size: 5vw !important;
  }
}

@media (max-width: 1050px) {
  .hero-campaign-line {
    font-size: 5vw !important;
  }
}

@media (max-width: 820px) {
  .hero-campaign-line {
    font-size: 5vw !important;
  }
}

/* ==========================================================
   PRODUCTION STILLS — UNIFORM GRID + LIGHTBOX
   ========================================================== */

.stills-section {
  padding-top: 90px;
}

.stills-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  align-items: end;
  gap: clamp(45px, 8vw, 120px);
  margin-bottom: 62px;
}

.stills-header > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(232, 228, 216, .64);
  font-size: 16px;
  line-height: 1.72;
}

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

.still-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  background: #050505;
  cursor: zoom-in;
}

.still-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 9px);
  justify-self: center;
}

.still-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(4, 4, 4, .64), transparent 32%),
    linear-gradient(135deg, rgba(218, 29, 35, .06), transparent 43%);
  transition: background .35s ease;
}

.still-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}

.still-card span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.still-card:hover img {
  transform: scale(1.018);
  filter: contrast(1.04) saturate(1.04);
}

.still-card:hover::after {
  background:
    linear-gradient(to top, rgba(4, 4, 4, .48), transparent 30%),
    linear-gradient(135deg, rgba(218, 29, 35, .11), transparent 44%);
}

.still-card:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 4px;
}

/* Native dialog lightbox */
body.modal-open {
  overflow: hidden;
}

.stills-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(3, 3, 3, .96);
  color: var(--paper);
}

.stills-lightbox[open] {
  display: block;
}

.stills-lightbox::backdrop {
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(7px);
}

.lightbox-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 34px 24px;
}

.lightbox-close {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(5,5,5,.58);
  color: white;
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
}

.lightbox-close:hover {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
}

.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
}

.lightbox-figure {
  min-width: 0;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 15px;
}

.lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 118px);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.lightbox-figure figcaption {
  width: min(100%, 1100px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.lightbox-nav {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(4,4,4,.55);
  color: white;
  cursor: pointer;
  font-size: 23px;
}

.lightbox-nav:hover {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
}

.lightbox-nav:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .stills-header {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 42px;
  }

  .stills-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .still-card,
  .still-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
    aspect-ratio: 16 / 8;
  }

  .lightbox-shell {
    padding: 74px 14px 20px;
  }

  .lightbox-stage {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 7px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 43px;
    height: 43px;
  }

  .lightbox-figure img {
    max-height: calc(100vh - 145px);
  }

  .lightbox-figure figcaption {
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-align: center;
  }
}


/* ==========================================================
   FILMMAKERS / CREW LIST
   ========================================================== */

.filmmakers-section {
  padding-top: 120px;
}

.filmmakers-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
  margin-bottom: 72px;
}

.filmmakers-header > p {
  max-width: 540px;
  margin: 0 0 8px;
  color: rgba(232, 228, 216, .64);
  font-size: 16px;
  line-height: 1.72;
}

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

.crew-member {
  min-height: 148px;
  padding: 27px 30px 30px 0;
  border-bottom: 1px solid var(--line);
}

.crew-member:nth-child(odd) {
  padding-right: clamp(30px, 5vw, 78px);
  border-right: 1px solid var(--line);
}

.crew-member:nth-child(even) {
  padding-left: clamp(30px, 5vw, 78px);
}

.crew-member-lead {
  grid-column: 1 / -1;
  min-height: 178px;
  padding: 35px 0 38px;
  border-right: 0 !important;
}

.crew-role {
  margin: 0 0 15px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.crew-member h3 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.crew-member-lead h3 {
  font-size: clamp(48px, 5.2vw, 82px);
}

.crew-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

@media (max-width: 820px) {
  .filmmakers-header {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 48px;
  }

  .crew-list {
    grid-template-columns: 1fr;
  }

  .crew-member,
  .crew-member:nth-child(odd),
  .crew-member:nth-child(even),
  .crew-member-lead {
    grid-column: auto;
    min-height: 0;
    padding: 25px 0 27px;
    border-right: 0;
  }

  .crew-member h3,
  .crew-member-lead h3 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .crew-footer {
    justify-content: flex-start;
  }
}


/* ==========================================================
   FILMMAKERS — CREW PANEL + RESTORED DIRECTOR STATEMENT
   ========================================================== */

.filmmakers-section {
  padding-top: 120px;
}

.filmmakers-layout {
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(0, 1fr);

  gap: clamp(60px, 8vw, 125px);
  align-items: start;
}

.crew-panel {
  position: relative;
  padding: 32px 32px 30px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(187,20,25,.08), transparent 42%),
    rgba(8,8,8,.56);
}

.crew-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 72px;
  height: 2px;
  background: var(--accent-bright);
}

.crew-panel-title {
  margin: 0 0 30px;
  font-size: clamp(40px, 4vw, 62px);
}

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

.crew-compact-member {
  display: grid;
  grid-template-columns: minmax(130px, .8fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.crew-compact-member p {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  line-height: 1.45;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.crew-compact-member h3 {
  margin: 0;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(23px, 2.1vw, 32px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

.crew-imdb-link {
  display: inline-block;
  margin-top: 28px;
}

.director-statement {
  padding-top: 8px;
}

.director-statement h2 {
  margin-bottom: 35px;
}

.director-statement p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(232,228,216,.67);
}

.director-statement .large-copy {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(21px, 1.75vw, 26px);
  line-height: 1.55;
  color: var(--paper);
}

@media (max-width: 980px) {
  .filmmakers-layout {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
    gap: 48px;
  }

  .crew-panel {
    padding: 27px 25px 25px;
  }

  .crew-compact-member {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 820px) {
  .filmmakers-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .crew-panel {
    order: 2;
  }

  .director-statement {
    order: 1;
  }

  .crew-compact-member {
    grid-template-columns: minmax(125px, .72fr) minmax(0, 1fr);
    gap: 18px;
  }

  .crew-compact-member h3 {
    font-size: clamp(25px, 7vw, 34px);
  }
}

@media (max-width: 520px) {
  .crew-compact-member {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}


/* ==========================================================
   CAST SELECTED CREDITS
   ========================================================== */

.cast-info .cast-credits-label {
  margin: 15px 0 7px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  line-height: 1.3;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.cast-info .cast-credits {
  margin: 0;
  color: #969188;
  font-size: 13px;
  line-height: 1.65;
}


/* ==========================================================
   COMPACT FOOTER
   ========================================================== */

footer {
  padding: 28px 38px;
}

.footer-meta {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.footer-meta a {
    color: var(--accent-bright);
}
@media (max-width: 820px) {
  footer {
    padding: 26px 22px;
  }
}

/* ==========================================================
   CONTACT
   ========================================================== */

.contact-section {
  padding-top: 105px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: start;
}

.contact-intro h2 {
  max-width: 620px;
}

.contact-lede {
  max-width: 540px;
  margin: 30px 0 42px;
  color: rgba(232, 228, 216, .67);
  font-size: 17px;
  line-height: 1.75;
}

.contact-lede em {
  color: var(--paper);
}

.contact-direct {
  display: grid;
  gap: 9px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-direct p {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.contact-direct a {
  width: fit-content;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: color .2s ease, border-color .2s ease;
}

.contact-direct a:hover {
  color: var(--accent-bright);
  border-color: var(--accent-bright);
}

.contact-panel {
  position: relative;
  padding: clamp(25px, 3.2vw, 44px);
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(187,20,25,.09), transparent 43%),
    rgba(8,8,8,.62);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.018),
    0 30px 70px rgba(0,0,0,.25);
}

.contact-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 82px;
  height: 2px;
  background: var(--accent-bright);
  box-shadow: 0 0 18px rgba(237,40,40,.45);
}

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

.contact-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.contact-field label span {
  color: var(--accent-bright);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  outline: none;
  appearance: none;
  background: rgba(0,0,0,.48);
  color: var(--paper);
  font: 14px Inter, Arial, sans-serif;
  transition:
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.contact-field input,
.contact-field select {
  height: 54px;
  padding: 0 15px;
}

.contact-field textarea {
  min-height: 170px;
  padding: 15px;
  line-height: 1.55;
  resize: vertical;
}

.contact-field select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.62) 50%),
    linear-gradient(135deg, rgba(255,255,255,.62) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 15px) 23px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-field select option {
  background: #0b0b0a;
  color: var(--paper);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255,255,255,.3);
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: rgba(255,255,255,.32);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--accent-bright);
  background-color: rgba(0,0,0,.72);
  box-shadow: 0 0 0 1px var(--accent-bright);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--accent-bright);
  border-radius: 0;
  cursor: pointer;
  background: var(--accent-bright);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.contact-submit:hover {
  border-color: #fff;
  background: #fff;
  color: #090909;
}

.contact-submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.contact-note {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-status {
  display: none;
  margin: 18px 0 0;
  color: #cbd5cc;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-status.visible {
  display: block;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-intro {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-wide {
    grid-column: auto;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-note {
    text-align: center;
  }
}
