:root {
  --ink: #050607;
  --ink-soft: #0d1012;
  --charcoal: #17191a;
  --fog: #aeb6b3;
  --paper: #ece9e1;
  --red: #bd111a;
  --red-deep: #68070c;
  --ice: #7fa0a7;
  --line: rgba(236, 233, 225, 0.18);
  --shell: min(1180px, calc(100% - 48px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  color: white;
  background: var(--red);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: background-color 300ms ease, border-color 300ms ease, min-height 300ms ease;
}

.site-header.scrolled {
  min-height: 60px;
  background: rgba(5, 6, 7, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  position: relative;
  z-index: 52;
  width: 118px;
}

.wordmark img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.76);
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
}

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

.site-nav .nav-trailer {
  padding: 9px 15px;
  color: white;
  background: var(--red);
}

.site-nav .nav-trailer::after {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 52;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade,
.smoke {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -5;
  top: -6%;
  bottom: -6%;
  background: #050607;
  overflow: hidden;
  transform: translate3d(0, var(--hero-parallax, 0), 0);
  will-change: transform;
}

.hero-image::before {
  position: absolute;
  inset: -2%;
  content: "";
  background-image: url("assets/stills/Blind_Owl_Still_27_01h20m04s.webp");
  background-position: center 34%;
  background-size: cover;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -4;
  background: linear-gradient(90deg, rgba(3, 4, 5, 0.94) 0%, rgba(3, 4, 5, 0.72) 33%, rgba(3, 4, 5, 0.12) 67%, rgba(3, 4, 5, 0.34) 100%), linear-gradient(0deg, rgba(3, 4, 5, 0.9) 0%, transparent 44%, rgba(3, 4, 5, 0.32) 100%);
}

.smoke {
  z-index: -3;
  width: 80%;
  height: 36%;
  top: auto;
  bottom: 2%;
  opacity: 0.3;
  filter: blur(34px);
  background: linear-gradient(112deg, transparent 6%, rgba(162, 177, 179, 0.14) 35%, rgba(79, 106, 112, 0.2) 49%, transparent 80%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.smoke-one {
  left: -36%;
  animation: smoke-drift 18s linear infinite;
}

.smoke-two {
  right: -36%;
  left: auto;
  bottom: 22%;
  opacity: 0.18;
  animation: smoke-drift-reverse 24s linear infinite;
}

.hero-content {
  z-index: 2;
  width: min(590px, calc(100% - 48px));
  margin: 0 0 clamp(76px, 10vh, 118px) max(24px, 7vw);
  will-change: transform, opacity;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--fog);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  width: min(570px, 74vw);
  margin: 0;
}

.hero h1 img {
  width: 100%;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.75));
}

.hero-deck {
  max-width: 540px;
  margin: 19px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  gap: 12px;
  color: white;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d21822;
}

.button-quiet,
.button-outline {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(5, 6, 7, 0.28);
  backdrop-filter: blur(8px);
}

.button-quiet:hover,
.button-quiet:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid currentColor;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 28px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.scroll-cue span {
  width: 8px;
  height: 8px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: translateY(-2px) rotate(45deg);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(92px, 12vw, 160px) 0;
}

.section-band {
  padding: clamp(92px, 12vw, 160px) max(24px, calc((100vw - 1180px) / 2));
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
  min-height: 82vh;
  background: var(--paper);
  color: var(--charcoal);
}

.story-image {
  position: relative;
}

.story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: contrast(1.04);
}

.frame-note {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: #646260;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.story-copy .eyebrow {
  color: var(--red-deep);
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  line-height: 0.98;
}

.story-copy .lead {
  margin: 28px 0 18px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.24;
}

.story-copy > p:not(.eyebrow, .lead) {
  color: #555351;
}

.film-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 20, 20, 0.18);
}

.film-facts dt {
  margin-bottom: 5px;
  color: #77726e;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.film-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.15;
}

.key-art {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(390px, 0.8fr);
  min-height: min(94vh, 980px);
  overflow: hidden;
  background: #030404;
}

.key-art-scene {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 720px;
  overflow: hidden;
}

.key-art-scene-image,
.key-art-scene-shade {
  position: absolute;
  inset: 0;
}

.key-art-scene-image {
  background: url("assets/stills/Blind_Owl_Still_02_00h02m25s.webp") center / cover no-repeat;
  filter: grayscale(1) contrast(1.06);
  transform: scale(1.04);
  transition: transform 1.3s cubic-bezier(0.2, 0.7, 0, 1);
}

.key-art:hover .key-art-scene-image {
  transform: scale(1.075);
}

.key-art-scene-shade {
  background: linear-gradient(0deg, rgba(3, 4, 5, 0.94), transparent 58%), linear-gradient(90deg, rgba(3, 4, 5, 0.26), rgba(3, 4, 5, 0.72));
}

.key-art-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 6vw 7vw;
}

.key-art-copy h2 {
  font-size: clamp(52px, 6vw, 88px);
}

.poster-display {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: clamp(36px, 5vw, 76px);
  border: 0;
  color: white;
  background: #0b0d0e;
  cursor: zoom-in;
}

.poster-display::before {
  position: absolute;
  inset: 7% 8%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.poster-display img {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.68);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1);
}

.poster-display:hover img,
.poster-display:focus-visible img {
  transform: translateY(-6px);
}

.poster-display span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  color: var(--fog);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.trailer-section {
  background: var(--ink);
}

.trailer-frame {
  position: relative;
  display: block;
  height: min(78vh, 850px);
  min-height: 540px;
  overflow: hidden;
}

.trailer-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0, 1);
}

.trailer-frame:hover img,
.trailer-frame:focus-visible img {
  transform: scale(1.035);
}

.trailer-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 4, 5, 0.84), rgba(3, 4, 5, 0.08) 62%), linear-gradient(90deg, rgba(3, 4, 5, 0.54), transparent 55%);
}

.trailer-copy {
  position: absolute;
  right: 5vw;
  bottom: 7vw;
  left: 6vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px 30px;
}

.trailer-copy .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.trailer-copy strong {
  max-width: 740px;
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 90px);
  font-weight: 500;
  line-height: 0.94;
}

.trailer-play {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.trailer-play .play-icon {
  border-top-width: 9px;
  border-bottom-width: 9px;
  border-left-width: 14px;
  transform: translateX(2px);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-heading .eyebrow {
  margin: 0 0 7px;
  color: var(--red);
}

.cast {
  background: var(--ink);
}

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

.cast-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--charcoal);
}

.cast-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.12);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 700ms ease;
}

.cast-card:hover img {
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.06);
}

.cast-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 4, 5, 0.95), transparent 56%);
}

.cast-caption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 18px;
  left: 14px;
}

.cast-caption h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 500;
  line-height: 1;
}

.cast-caption p {
  margin: 5px 0 0;
  color: var(--fog);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.transformation {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(84vh, 900px);
  overflow: hidden;
}

.transformation-image,
.transformation-shade {
  position: absolute;
  inset: 0;
}

.transformation-image {
  background: url("assets/stills/Blind_Owl_Still_26_01h19m16s.webp") center / cover no-repeat;
  transform: translateY(var(--parallax, 0px)) scale(1.08);
}

.transformation-shade {
  background: linear-gradient(0deg, rgba(3, 4, 5, 0.9), transparent 54%), linear-gradient(90deg, rgba(3, 4, 5, 0.74), transparent 60%);
}

.transformation-copy {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 48px));
  margin: 0 0 7vw 7vw;
}

.transformation-copy blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(43px, 6vw, 82px);
  line-height: 0.98;
}

.gallery {
  padding-bottom: clamp(100px, 13vw, 180px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  color: white;
  background: var(--charcoal);
  cursor: zoom-in;
}

.gallery-item:nth-child(5n + 1),
.gallery-item:nth-child(5n + 2) {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 500ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.gallery-item:nth-child(n + 13) {
  display: none;
}

.gallery-grid.expanded .gallery-item {
  display: block;
}

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.awards {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
  background: #e7e9e5;
  color: #101415;
}

.awards-intro .eyebrow {
  color: var(--red-deep);
}

.awards-intro p:last-child {
  max-width: 450px;
  margin-top: 24px;
  color: #575d5c;
}

.award-list {
  border-top: 1px solid rgba(15, 18, 19, 0.25);
}

.award {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid rgba(15, 18, 19, 0.25);
}

.award::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: var(--red);
  transition: width 400ms ease;
}

.award:hover::before {
  width: 100%;
}

.award p {
  margin: 0;
  color: #666c6b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.award-winner p {
  color: var(--red);
}

.award h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 41px);
  font-weight: 500;
  line-height: 1;
}

.award span {
  color: #666c6b;
  font-size: 12px;
}

.press {
  background: var(--ink);
}

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

.press-story {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr 160px 32px;
  gap: 24px;
  align-items: center;
  min-height: 154px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, padding 200ms ease;
}

.press-story:hover,
.press-story:focus-visible {
  color: white;
  padding-right: 12px;
  padding-left: 12px;
}

.press-source {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.press-story h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.08;
}

.press-meta {
  color: var(--fog);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.press-arrow {
  font-size: 24px;
}

.distributor {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: 560px;
  background: #d9dedc;
  color: #121617;
}

.distributor-art {
  min-height: 460px;
  overflow: hidden;
  background: #020303;
}

.distributor-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.distributor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 100px);
}

.distributor-copy .eyebrow {
  color: var(--red-deep);
}

.distributor-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 24px 0;
  color: #545c5b;
  font-family: var(--serif);
  font-size: 23px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid #303839;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.partners {
  padding-bottom: 110px;
}

.primary-partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.primary-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 36px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #07090a;
}

.primary-logo:last-child {
  border-right: 0;
}

.primary-logo img {
  max-width: 72%;
  max-height: 128px;
  object-fit: contain;
}

.primary-logo:nth-child(-n + 2) img {
  filter: brightness(1.5);
}

.primary-logo:last-child img {
  width: 160%;
  max-width: none;
  max-height: none;
  transform: scale(1.35);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.08);
}

.sponsor-logo {
  display: grid;
  min-height: 118px;
  padding: 22px;
  place-items: center;
  background: #111415;
}

.sponsor-logo img {
  width: 100%;
  height: 66px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  mix-blend-mode: screen;
  opacity: 0.78;
  transition: filter 220ms ease, opacity 220ms ease;
}

.sponsor-logo:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}

.credits {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 8vw, 120px);
  color: #111516;
  background: #e7e4dc;
}

.credits-title .eyebrow {
  color: var(--red-deep);
}

.credit-lines {
  align-self: center;
  border-top: 1px solid rgba(17, 21, 22, 0.2);
}

.credit-lines p {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 21, 22, 0.2);
  font-family: var(--serif);
  font-size: 20px;
}

.credit-lines strong {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  justify-items: center;
  padding: 86px 24px 42px;
  text-align: center;
  background: #030404;
}

.site-footer > img {
  width: min(330px, 68vw);
}

.site-footer > p {
  margin: 26px 0 4px;
  color: var(--fog);
  font-family: var(--serif);
  font-size: 21px;
}

.site-footer > a {
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 22px;
  margin: 26px 0 50px;
  color: var(--fog);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer small {
  color: #6d7372;
  font-size: 10px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: white;
  background: rgba(1, 2, 2, 0.96);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
}

.lightbox::backdrop {
  background: rgba(1, 2, 2, 0.86);
}

.lightbox figure {
  display: grid;
  align-content: center;
  height: 100%;
  margin: 0;
  padding: 72px 20px 34px;
}

.lightbox figure img {
  width: 100%;
  max-height: calc(100vh - 145px);
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--fog);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.lightbox button {
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 34px;
}

.lightbox-nav {
  width: 58px;
  height: 58px;
  font-size: 28px;
}

.lightbox.poster-mode .lightbox-nav {
  visibility: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

.hero-content.reveal {
  opacity: 0;
  transform: translate3d(0, calc(28px + var(--hero-copy-shift, 0px)), 0);
}

.hero-content.reveal.visible {
  opacity: var(--hero-copy-opacity, 1);
  transform: translate3d(0, var(--hero-copy-shift, 0px), 0);
}

@keyframes hero-breathe {
  from { transform: scale(1.035); }
  to { transform: scale(1.075); }
}

@keyframes smoke-drift {
  0% { transform: translateX(0) skewX(-8deg); }
  50% { transform: translateX(118vw) skewX(5deg); }
  100% { transform: translateX(0) skewX(-8deg); }
}

@keyframes smoke-drift-reverse {
  0% { transform: translateX(0) skewX(5deg); }
  50% { transform: translateX(-118vw) skewX(-6deg); }
  100% { transform: translateX(0) skewX(5deg); }
}

@media (max-width: 1100px) {
  .cast-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cast-card {
    min-height: 570px;
  }

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

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .site-header {
    min-height: 62px;
    padding: 0 18px;
  }

  .wordmark {
    width: 103px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 84px 9vw;
    visibility: hidden;
    background: rgba(4, 5, 6, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
    text-transform: none;
  }

  .site-nav .nav-trailer {
    margin-top: 12px;
    padding: 8px 18px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero {
    min-height: 92svh;
  }

  .hero-image::before {
    background-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(3, 4, 5, 0.96) 0%, rgba(3, 4, 5, 0.5) 52%, rgba(3, 4, 5, 0.24) 100%);
  }

  .hero-content {
    margin: 0 18px 82px;
  }

  .hero h1 {
    width: min(500px, 88vw);
  }

  .hero-deck {
    max-width: 90%;
    font-size: 23px;
  }

  .scroll-cue {
    display: none;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story-image {
    margin-right: 10px;
  }

  .film-facts {
    grid-template-columns: 1fr 1fr;
  }

  .trailer-frame {
    min-height: 620px;
  }

  .key-art {
    grid-template-columns: 1fr;
  }

  .key-art-scene {
    min-height: 620px;
  }

  .key-art-copy {
    margin: 0 24px 54px;
  }

  .poster-display {
    min-height: 720px;
    padding: 54px 30px;
  }

  .poster-display img {
    width: min(100%, 430px);
    max-height: none;
  }

  .trailer-frame img {
    object-position: 61% center;
  }

  .trailer-copy {
    right: 24px;
    bottom: 54px;
    left: 24px;
  }

  .trailer-copy strong {
    font-size: clamp(44px, 11vw, 70px);
  }

  .cast-grid {
    display: grid;
    grid-auto-columns: minmax(250px, 78vw);
    grid-template-columns: none;
    grid-auto-flow: column;
    gap: 10px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .cast-grid::-webkit-scrollbar {
    display: none;
  }

  .cast-card {
    min-height: 520px;
    scroll-snap-align: start;
  }

  .transformation {
    min-height: 700px;
  }

  .transformation-image {
    background-position: 57% center;
  }

  .transformation-copy {
    margin: 0 24px 64px;
  }

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

  .gallery-item,
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 2) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

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

  .award {
    grid-template-columns: 90px 1fr;
  }

  .award span {
    grid-column: 2;
  }

  .press-story {
    grid-template-columns: 1fr 32px;
    gap: 8px 20px;
    padding: 28px 0;
  }

  .press-source,
  .press-meta {
    grid-column: 1;
  }

  .press-story h3 {
    grid-column: 1;
  }

  .press-arrow {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
  }

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

  .distributor-art {
    min-height: 360px;
  }

  .primary-partners {
    grid-template-columns: 1fr;
  }

  .partners .section-heading {
    display: block;
  }

  .partners .section-heading h2 {
    margin-top: 10px;
  }

  .primary-logo {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 520px) {
  .hero-content {
    width: calc(100% - 36px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  h2 {
    font-size: 49px;
  }

  .film-facts {
    grid-template-columns: 1fr;
  }

  .trailer-copy {
    grid-template-columns: 1fr;
  }

  .trailer-play {
    width: 62px;
    height: 62px;
    margin-top: 10px;
  }

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

  .award {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .award span {
    grid-column: 1;
  }

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

  .credit-lines p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .lightbox[open] {
    grid-template-columns: 44px 1fr 44px;
  }

  .lightbox figure {
    padding-right: 0;
    padding-left: 0;
  }

  .lightbox-nav {
    width: 42px;
  }
}

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

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

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

  .hero-image,
  .hero-content.reveal,
  .hero-content.reveal.visible {
    opacity: 1;
    transform: none;
  }
}
