:root {
  color-scheme: dark;
  --ink: #05080d;
  --ink-soft: #090e15;
  --navy: #0b151f;
  --navy-light: #142331;
  --paper: #f0ebe2;
  --muted: #aaa8a3;
  --gold: #c4a05d;
  --gold-light: #e0c17f;
  --gold-dark: #755a30;
  --red: #682128;
  --line: rgba(196, 160, 93, 0.23);
  --line-soft: rgba(240, 235, 226, 0.1);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1240px, calc(100% - 56px));
  --header-height: 94px;
  --ease: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open { overflow: hidden; }

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

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

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

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.shell {
  width: var(--page);
  margin-inline: auto;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(240, 235, 226, 0.09);
  background: rgba(5, 8, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--ease), box-shadow var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 8, 13, 0.975);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  display: flex;
  width: min(1480px, calc(100% - 80px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.wordmark {
  position: relative;
  z-index: 102;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  letter-spacing: 0.18em;
}

.wordmark__name {
  font-family: var(--serif);
  font-size: 1.46rem;
}

.wordmark__type {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 1.75vw, 32px);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.55vw, 29px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  position: relative;
  color: rgba(240, 235, 226, 0.74);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--paper);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.back-film {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border: 1px solid rgba(196, 160, 93, 0.82);
  background: rgba(196, 160, 93, 0.08);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.back-film:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--ink);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__line,
.menu-toggle::before,
.menu-toggle::after {
  position: absolute;
  left: 11px;
  width: 24px;
  height: 1px;
  background: var(--paper);
  content: "";
  transition: transform var(--ease), opacity var(--ease), top var(--ease);
}

.menu-toggle::before { top: 15px; }
.menu-toggle__line { top: 22px; }
.menu-toggle::after { top: 29px; }
.menu-toggle[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__line { opacity: 0; }
.menu-toggle[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }

/* Type and shared elements */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.display-title,
.section-title,
.page-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}

.display-title {
  max-width: 700px;
  font-size: clamp(4.4rem, 8vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.page-title {
  max-width: 860px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.section-title {
  font-size: clamp(2.55rem, 4.5vw, 4.9rem);
  line-height: 0.99;
  letter-spacing: -0.035em;
}

.lede {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(240, 235, 226, 0.76);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  font-style: italic;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid var(--gold);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

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

.button--primary {
  background: var(--gold);
  color: var(--ink);
}

.button--primary:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.button--disabled,
.button--disabled:hover {
  border-color: rgba(196, 160, 93, 0.58);
  background: rgba(196, 160, 93, 0.58);
  color: var(--ink);
  cursor: default;
  transform: none;
}

.button--ghost {
  border-color: rgba(240, 235, 226, 0.66);
  background: rgba(5, 8, 13, 0.22);
  color: var(--paper);
  backdrop-filter: blur(6px);
}

.button--ghost:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold-dark);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap var(--ease), border-color var(--ease);
}

.text-link::after { content: "→"; }
.text-link:hover { gap: 16px; border-color: var(--gold-light); }

.text-link--crew {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(224, 193, 127, 0.5);
  letter-spacing: 0.14em;
}

.text-link--crew::after {
  font-size: 1rem;
  transition: transform var(--ease);
}

.text-link--crew:hover {
  border-color: var(--gold-light);
  background: rgba(196, 160, 93, 0.07);
}

.text-link--crew:hover::after {
  transform: translateX(3px);
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 126px) 0;
}

.section--compact { padding: clamp(66px, 7vw, 96px) 0; }
.section--navy { border-block: 1px solid var(--line-soft); background: var(--ink-soft); }
.section--red-glow {
  background: radial-gradient(circle at 88% 18%, rgba(104, 33, 40, 0.16), transparent 30%), var(--ink);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(38px, 5.5vw, 68px);
}

.section-heading--tight { margin-bottom: clamp(32px, 4vw, 50px); }
.section-heading--top { align-items: flex-start; }

.section-heading__copy {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 9vw, 130px);
  align-items: start;
}

.intro-copy {
  margin: 0 0 24px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.45vw, 2.2rem);
  line-height: 1.38;
}

.body-copy { max-width: 680px; color: var(--muted); }
.body-copy p { margin-block: 0 16px; }
.body-copy p:last-child { margin-bottom: 0; }

/* Homepage */
.home-page .site-header {
  border-bottom-color: rgba(240, 235, 226, 0.1);
  background: rgba(5, 8, 13, 0.92);
}

.home-hero {
  position: relative;
  height: calc(100svh - var(--header-height));
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.home-hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 6, 10, 0.66) 0%, rgba(3, 6, 10, 0.1) 40%, transparent 62%),
    linear-gradient(0deg, rgba(3, 6, 10, 0.92) 0%, rgba(3, 6, 10, 0.13) 38%, transparent 62%);
  content: "";
  pointer-events: none;
}

.home-hero__content {
  position: absolute;
  bottom: clamp(46px, 6.5vh, 72px);
  left: max(40px, calc((100% - min(1480px, calc(100% - 80px))) / 2));
  z-index: 2;
  width: min(610px, calc(100% - 56px));
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.72);
}

.home-hero__subtitle {
  margin: 30px 0 0;
  color: rgba(240, 235, 226, 0.87);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-style: italic;
}

.home-hero .button-row { margin-top: 40px; }
.home-hero .button { min-height: 58px; padding: 15px 29px; }

.home-trailer { background: #070b11; }

.js .home-page .reveal-section {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .home-page .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trailer-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
}

.trailer-poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 6, 10, 0.78), transparent 30%);
  content: "";
  transition: background var(--ease);
}

.trailer-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 700ms ease;
}

.trailer-poster:hover img { transform: scale(1.015); }
.trailer-poster:hover::after { background: linear-gradient(0deg, rgba(3, 6, 10, 0.66), transparent 34%); }

.screening-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid rgba(224, 193, 127, 0.78);
  background: rgba(3, 6, 10, 0.68);
  color: var(--paper);
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
  backdrop-filter: blur(5px);
}

.trailer-poster:hover .screening-mark {
  border-color: var(--gold-light);
  background: rgba(3, 6, 10, 0.82);
  transform: translate(-50%, -50%) scale(1.06);
}

.trailer-poster__meta {
  position: absolute;
  right: 25px;
  bottom: 20px;
  z-index: 3;
  color: rgba(240, 235, 226, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.crew-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--navy);
  transition: border-color var(--ease), transform var(--ease);
}

.character-card { cursor: pointer; }

.crew-card__open {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.crew-card__open:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -5px;
}

.crew-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.crew-card > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.88) contrast(1.03);
  transition: filter var(--ease), transform 600ms ease;
}

.crew-card:hover > img,
.crew-card:hover .crew-card__triptych img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.015);
}

.crew-card--rat > img { object-position: center; }

.crew-card--adventurers {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.7fr);
}

.crew-card__triptych {
  display: grid;
  min-height: 500px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.crew-card__triptych img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.88) contrast(1.03);
  transition: filter var(--ease), transform 600ms ease;
}

.crew-card--adventurers .crew-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 0;
  border-left: 1px solid var(--line-soft);
}

.crew-card--adventurers .crew-card__body::before {
  top: auto;
  bottom: 0;
  left: 26px;
}

.crew-card__body {
  position: relative;
  padding: 25px 26px 28px;
  border-top: 1px solid var(--line-soft);
}

.crew-card__body::before {
  position: absolute;
  top: -1px;
  left: 26px;
  width: 44px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.crew-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.crew-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.crew-card__prompt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.crew-card__prompt::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1rem;
  transition: transform var(--ease);
}

.character-card:hover .crew-card__prompt::after { transform: rotate(90deg); }

.character-dialog {
  width: min(980px, calc(100% - 40px));
  max-width: none;
  max-height: min(780px, calc(100dvh - 40px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 160, 93, 0.42);
  background: var(--ink-soft);
  color: var(--paper);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.74);
}

.character-dialog::backdrop {
  background: rgba(2, 4, 7, 0.82);
  backdrop-filter: blur(8px);
}

.character-dialog[open] { animation: dialog-fade 220ms ease both; }
.character-dialog[open]::backdrop { animation: backdrop-fade 220ms ease both; }
.character-dialog[open] .character-dialog__surface { animation: dialog-rise 320ms ease both; }

@keyframes dialog-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes backdrop-fade {
  from { background: rgba(2, 4, 7, 0); }
  to { background: rgba(2, 4, 7, 0.82); }
}

@keyframes dialog-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.character-dialog__surface {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  min-height: 600px;
}

.character-dialog__portrait {
  min-height: 0;
  overflow: hidden;
  background: var(--navy);
}

.character-dialog__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.character-dialog__copy {
  align-self: center;
  padding: clamp(42px, 6vw, 76px);
}

.character-dialog__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.character-dialog__lead {
  margin: 24px 0 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.45;
}

.character-dialog__bio { margin-top: 24px; color: var(--muted); }
.character-dialog__bio p { margin: 0; }
.character-dialog__bio p + p { margin-top: 14px; }

.character-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(240, 235, 226, 0.28);
  border-radius: 50%;
  background: rgba(5, 8, 13, 0.72);
  color: var(--paper);
  font-size: 1.5rem;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}

.character-dialog__close:hover { border-color: var(--gold-light); background: var(--navy); transform: rotate(4deg); }

.studio-teaser { background: var(--ink); }

.studio-teaser__visual {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}

.studio-teaser__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 6, 10, 0.15), transparent 55%), linear-gradient(0deg, rgba(3, 6, 10, 0.88), transparent 60%);
  content: "";
}

.studio-teaser__visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms ease;
}

.studio-teaser__visual:hover img { transform: scale(1.012); }

.studio-teaser__copy {
  position: absolute;
  bottom: clamp(30px, 5vw, 64px);
  left: clamp(26px, 5vw, 64px);
  z-index: 2;
  max-width: 640px;
}

.studio-teaser__copy .text-link { margin-top: 30px; }

/* Image-led film and project pages */
.film-hero,
.projects-hero {
  position: relative;
  min-height: max(620px, 88svh);
  overflow: hidden;
  background: var(--ink);
}

.film-hero > img,
.projects-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-hero > img { object-position: 50% 34%; }
.projects-hero > img { object-position: 50% center; }

.film-hero::after,
.projects-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 6, 10, 0.94), transparent 53%), linear-gradient(90deg, rgba(3, 6, 10, 0.45), transparent 48%);
  content: "";
}

.film-hero__content,
.projects-hero .page-hero__content {
  position: absolute;
  right: 0;
  bottom: clamp(50px, 8vh, 90px);
  left: 0;
  z-index: 2;
  padding: 0;
}

.film-world {
  position: relative;
  min-height: clamp(560px, 58vw, 760px);
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
}

.film-world > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.film-world::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 6, 10, 0.84) 0%, rgba(3, 6, 10, 0.58) 34%, transparent 68%), linear-gradient(0deg, rgba(3, 6, 10, 0.54), transparent 56%);
  content: "";
}

.film-world__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(340px, 590px) minmax(0, 1fr);
  align-items: end;
  padding-block: clamp(48px, 9%, 88px);
}

.film-world__copy {
  grid-column: 1;
}

.film-world__copy .section-title { max-width: 640px; font-size: clamp(2.8rem, 5.2vw, 5.6rem); }

.film-world__copy p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(240, 235, 226, 0.72);
  font-size: 1.06rem;
}

.crew-grid--film { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.film-stakes {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  min-height: 720px;
  border-block: 1px solid var(--line-soft);
  background: var(--ink-soft);
}

.film-stakes__art { min-height: 580px; overflow: hidden; }
.film-stakes__art img { width: 100%; height: 100%; object-fit: cover; object-position: 45% center; }

.film-stakes__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 106px);
  background: radial-gradient(circle at 100% 0, rgba(104, 33, 40, 0.16), transparent 36%), var(--ink-soft);
}

.film-stakes__lead {
  margin: 28px 0 0;
  color: rgba(240, 235, 226, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.5;
}

.stakes-list { margin-top: 42px; border-top: 1px solid var(--line-soft); }
.stakes-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.stakes-list span { color: var(--gold-dark); font-family: var(--serif); }
.stakes-list p { margin: 0; color: var(--muted); }

/* Interior page heroes */
.page-hero {
  position: relative;
  display: flex;
  min-height: clamp(420px, 38vw, 470px);
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background-color: var(--navy);
  background-position: center 34%;
  background-size: cover;
}

.page-hero--trailer { background-image: url("../assets/images/trailer-black-reef.png"); background-position: center 30%; }
.page-hero--support { background-image: url("../assets/images/420d20b5-85be-4107-9ee0-672ff41a0551.png"); background-position: center 43%; }
.page-hero--roadmap { background-image: url("../assets/images/future-projects.png"); background-position: center 50%; }
.page-hero--about { min-height: clamp(520px, 50vw, 680px); background-image: url("../assets/images/370b3db3-9d6c-4b3a-a5e7-503d457cbce5.png"); background-position: center 4%; }

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 6, 10, 0.96), rgba(3, 6, 10, 0.14) 74%), linear-gradient(90deg, rgba(3, 6, 10, 0.58), transparent 64%);
  content: "";
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin-inline: auto;
  padding: 0 0 clamp(48px, 5vw, 66px);
}

.support-hero__actions { margin-top: 30px; }

.page-title--wide {
  max-width: 1080px;
  font-size: clamp(3.2rem, 6vw, 6.15rem);
}

/* Trailer page */
.trailer-stage { position: relative; }

.trailer-stage__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  aspect-ratio: 16 / 9;
}

.trailer-stage__frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(3, 6, 10, 0.88), transparent 48%);
  content: "";
  pointer-events: none;
}

.trailer-stage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screening-status {
  position: absolute;
  right: clamp(20px, 4vw, 52px);
  bottom: clamp(20px, 4vw, 46px);
  left: clamp(20px, 4vw, 52px);
  z-index: 2;
  max-width: 620px;
}

.screening-status__label {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.screening-status h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.screening-status a {
  display: inline-flex;
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold-dark);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap var(--ease), border-color var(--ease);
}

.screening-status a:hover { gap: 15px; border-color: var(--gold-light); }

.trailer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1px;
  border: 1px solid var(--line-soft);
}

.meta-item {
  padding: 25px 28px;
  border-right: 1px solid var(--line-soft);
}

.meta-item:last-child { border-right: 0; }
.meta-item__label { display: block; margin-bottom: 4px; color: var(--gold); font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; }
.meta-item__value { font-family: var(--serif); font-size: 1.2rem; }

/* Support */
.support-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.support-milestone {
  position: relative;
  min-height: 300px;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  background: var(--ink-soft);
}

.support-milestone--complete::after {
  position: absolute;
  right: -38px;
  bottom: -68px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(196, 160, 93, 0.12);
  border-radius: 50%;
  content: "";
}

.support-milestone__label {
  margin: 0;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-milestone__value {
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.support-milestone > p:last-child { margin: 16px 0 0; color: var(--muted); }
.support-milestone .status-mark { display: inline-grid; width: 34px; height: 34px; margin: 0 8px 0 0; vertical-align: 0.12em; font-family: var(--sans); font-size: 0.82rem; }

.funding-amount { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(4rem, 7.5vw, 6.8rem); font-weight: 400; line-height: 1; }
.status-mark { place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); }

.tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tier-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line-soft);
  background: var(--ink-soft);
  transition: border-color var(--ease), transform var(--ease);
}
.tier-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); }
.tier-card--patron { border-color: rgba(196, 160, 93, 0.3); background: linear-gradient(145deg, rgba(196, 160, 93, 0.05), transparent 42%), var(--ink-soft); }
.tier-card--featured { grid-column: 1 / -1; min-height: 0; border-color: rgba(196, 160, 93, 0.42); background: radial-gradient(circle at 90% 10%, rgba(104, 33, 40, 0.18), transparent 32%), var(--ink-soft); }
.tier-card__amount { margin: 0; color: var(--gold-light); font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.tier-card h3 { margin: 17px 0 10px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.tier-card p { max-width: 760px; margin: 0; color: var(--muted); font-size: 0.92rem; }
.tier-card__number { position: absolute; right: 16px; bottom: -24px; color: rgba(240, 235, 226, 0.028); font-family: var(--serif); font-size: 8rem; line-height: 1; }
.tier-card__rewards { position: relative; z-index: 1; margin: 16px 0 0; padding: 0; color: var(--muted); font-size: 0.92rem; list-style: none; }
.tier-card__rewards li { position: relative; padding-left: 18px; }
.tier-card__rewards li + li { margin-top: 6px; }
.tier-card__rewards li::before { position: absolute; top: 0.72em; left: 0; width: 6px; height: 1px; background: var(--gold-dark); content: ""; }
.tier-card .tier-card__terms { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: 0.84rem; }

.support-note {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(32px, 7vw, 92px);
  padding: clamp(36px, 5vw, 62px);
  border-left: 2px solid var(--red);
  background: rgba(104, 33, 40, 0.07);
}
.support-note h2 { margin: 0; font-family: var(--serif); font-size: 2.1rem; font-weight: 400; line-height: 1.1; }
.support-note p { margin: 0; color: var(--muted); }
.support-note a { color: var(--gold-light); border-bottom: 1px solid var(--gold-dark); }
.support-note a:hover { border-color: var(--gold-light); }

/* Roadmap */
.roadmap { position: relative; margin: 0; padding: 0; list-style: none; }
.roadmap::before { position: absolute; top: 18px; bottom: 18px; left: 18px; width: 1px; background: var(--line-soft); content: ""; }
.roadmap::after { position: absolute; top: 18px; left: 18px; width: 1px; height: 0; background: linear-gradient(var(--gold-light), var(--gold-dark)); content: ""; transition: height 900ms ease; }
.roadmap.is-visible::after { height: 44%; }
.roadmap__step { position: relative; display: grid; grid-template-columns: 76px minmax(240px, 0.72fr) minmax(220px, 0.48fr); gap: clamp(20px, 4vw, 54px); padding: 0 0 clamp(38px, 4.5vw, 58px); }
.roadmap__step:last-child { padding-bottom: 0; }
.roadmap__marker { position: relative; z-index: 2; display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid var(--gold-dark); border-radius: 50%; background: var(--ink); color: var(--gold-light); font-size: 0.63rem; transition: background var(--ease), box-shadow var(--ease), transform var(--ease); }
.roadmap__step.is-complete .roadmap__marker { background: var(--gold); color: var(--ink); }
.roadmap__step.is-active .roadmap__marker { border-color: var(--gold-light); box-shadow: 0 0 34px rgba(196, 160, 93, 0.28); transform: scale(1.08); }
.roadmap__status { display: block; margin-bottom: 8px; color: var(--gold); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.roadmap__step.is-active .roadmap__status { color: var(--gold-light); }
.roadmap__title { margin: 0; font-family: var(--serif); font-size: clamp(1.75rem, 2.8vw, 2.6rem); font-weight: 400; line-height: 1.05; }
.roadmap__toggle { align-self: start; display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 20px; padding: 10px 0 12px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--gold-light); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: border-color var(--ease), color var(--ease); }
.roadmap__toggle:hover { border-color: var(--gold-light); color: var(--paper); }
.roadmap__toggle-mark { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.roadmap__detail { grid-column: 2 / -1; margin-top: -18px; padding: 24px 0 0; border-top: 1px solid var(--line-soft); animation: detail-reveal 240ms ease both; }
.roadmap__detail p { max-width: 720px; margin: 0; color: var(--muted); }

@keyframes detail-reveal {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Future projects */
.film-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.film-card {
  position: relative;
  display: flex;
  min-height: 490px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(30px, 4.5vw, 52px);
  border: 1px solid var(--line-soft);
  background: var(--navy);
  transition: border-color var(--ease), transform var(--ease);
}
.film-card::after { position: absolute; inset: 0; z-index: 0; background: linear-gradient(0deg, rgba(3, 6, 10, 0.98), transparent 75%); content: ""; }
.film-card > * { position: relative; z-index: 1; }
.film-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.film-card--black-reef { grid-column: 1 / -1; min-height: 520px; background-image: url("../assets/images/hero-black-reef.png"); background-position: 50% 38%; background-size: cover; }
.film-card--unknown {
  min-height: 365px;
  background: repeating-linear-gradient(135deg, transparent 0 48px, rgba(196, 160, 93, 0.03) 48px 49px), linear-gradient(145deg, var(--navy-light), #070b10);
}
.film-card__index { position: absolute; top: 20px; right: 26px; color: rgba(240, 235, 226, 0.07); font-family: var(--serif); font-size: 6.8rem; line-height: 1; }
.film-card__status { margin: 0 0 12px; color: var(--gold); font-size: 0.69rem; letter-spacing: 0.1em; text-transform: uppercase; }
.film-card h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.3rem, 4.8vw, 4.5rem); font-weight: 400; line-height: 0.96; }
.film-card--unknown h2 { max-width: 440px; font-size: clamp(2.1rem, 3.8vw, 3.65rem); }
.film-card p:not(.film-card__status) { max-width: 540px; margin: 18px 0 0; color: var(--muted); }
.film-card .text-link { align-self: flex-start; margin-top: 26px; }
/* About */
.about-statement { max-width: 1100px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 4.4rem); line-height: 1.2; letter-spacing: -0.025em; }
.about-statement em { color: var(--gold-light); font-style: normal; }
.about-manifesto { background: radial-gradient(circle at 10% 15%, rgba(196, 160, 93, 0.07), transparent 24%), var(--ink); }
.about-manifesto__grid { display: grid; grid-template-columns: 130px 1fr; gap: clamp(36px, 7vw, 100px); align-items: start; }
.about-manifesto__index { margin: 10px 0 0; color: var(--gold-dark); font-family: var(--serif); font-size: 0.82rem; letter-spacing: 0.08em; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line-soft); background: var(--line-soft); }
.principle { min-height: 285px; padding: clamp(28px, 4vw, 42px); background: var(--ink-soft); }
.principle__index { color: var(--gold-dark); font-family: var(--serif); }
.principle h3 { margin: 64px 0 13px; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.principle p { margin: 0; color: var(--muted); }
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 8vw, 105px); align-items: center; }
.story-copy p { margin: 23px 0 0; color: var(--muted); }
.about-film-one .story-grid { grid-template-columns: 1.15fr 0.85fr; }
.about-film-art { position: relative; overflow: hidden; border: 1px solid var(--line-soft); aspect-ratio: 3 / 2; }
.about-film-art img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }

/* Contact */
.contact-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.68), rgba(5, 8, 13, 0.2)),
    linear-gradient(0deg, rgba(5, 8, 13, 0.92), rgba(5, 8, 13, 0.22)),
    url("../assets/images/future-projects.png") center 44% / cover;
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(96px, 13vw, 150px);
  padding-bottom: clamp(60px, 8vw, 90px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.contact-aside {
  padding-top: 8px;
}

.contact-email {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold-dark);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.25vw, 2rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: color var(--ease), border-color var(--ease);
}

.contact-email:hover {
  border-color: var(--gold-light);
  color: var(--paper);
}

.contact-categories {
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.contact-categories li { position: relative; padding-left: 17px; }
.contact-categories li + li { margin-top: 7px; }
.contact-categories li::before { position: absolute; top: 0.78em; left: 0; width: 6px; height: 1px; background: var(--gold-dark); content: ""; }

.contact-options { border-top: 1px solid var(--line-soft); }
.contact-option { position: relative; padding: clamp(34px, 5vw, 58px) 0; border-bottom: 1px solid var(--line-soft); }
.contact-option__index { position: absolute; top: 18px; right: 0; color: rgba(240, 235, 226, 0.05); font-family: var(--serif); font-size: clamp(4rem, 7vw, 6.5rem); line-height: 1; }
.contact-option h2 { max-width: 520px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.3rem); font-weight: 400; line-height: 1.04; }
.contact-option > p:not(.eyebrow) { max-width: 580px; margin: 18px 0 0; color: var(--muted); }
.contact-option .button { margin-top: 28px; }

/* Closing callout and footer */
.closing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 130px) 0;
  border-top: 1px solid var(--line-soft);
  background: radial-gradient(circle at 84% 50%, rgba(104, 33, 40, 0.17), transparent 28%), linear-gradient(135deg, #0c1721, var(--ink));
  text-align: center;
}
.closing-cta--image { background: linear-gradient(rgba(3, 6, 10, 0.78), rgba(3, 6, 10, 0.91)), url("../assets/images/trailer-black-reef.png") center 46% / cover; }
.closing-cta__inner { position: relative; z-index: 1; }
.closing-cta .eyebrow { justify-content: center; }
.closing-cta .button-row { justify-content: center; }

.site-footer { padding: 56px 0 28px; border-top: 1px solid var(--line-soft); background: #030509; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; padding-bottom: 48px; }
.footer-title { margin: 0; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-copy { max-width: 360px; margin: 10px 0 0; color: rgba(240, 235, 226, 0.45); font-size: 0.82rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 24px; max-width: 560px; margin: 0; padding: 0; list-style: none; }
.footer-nav a { color: rgba(240, 235, 226, 0.55); font-size: 0.68rem; font-weight: 650; letter-spacing: 0.09em; text-transform: uppercase; transition: color var(--ease); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(240, 235, 226, 0.06); color: rgba(240, 235, 226, 0.31); font-size: 0.65rem; letter-spacing: 0.07em; text-transform: uppercase; }

@media (max-width: 1250px) {
  :root { --header-height: 78px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    height: 100dvh;
    min-height: 100dvh;
    z-index: 101;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 34px;
    padding: calc(var(--header-height) + 36px) max(24px, 8vw) 42px;
    overflow-y: auto;
    background: radial-gradient(circle at 90% 10%, rgba(104, 33, 40, 0.2), transparent 28%), rgba(5, 8, 13, 0.99);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  }
  .site-nav[data-open="true"] { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav__list { flex-direction: column; align-items: flex-start; gap: clamp(10px, 2vh, 17px); }
  .site-nav__link { font-family: var(--serif); font-size: clamp(1.45rem, 4.3vw, 2.2rem); font-weight: 400; letter-spacing: 0; text-transform: none; }
  .site-nav__link::after { bottom: -3px; }
  .back-film { min-height: 48px; padding-inline: 20px; }
  .crew-grid,
  .crew-grid--film { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .crew-card { grid-column: auto; }
  .crew-card--adventurers { grid-column: 1 / -1; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principle:last-child { grid-column: 1 / -1; }
  .film-stakes { grid-template-columns: 1fr; }
  .film-stakes__art { min-height: 520px; }
  .character-dialog__surface { grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr); }
}

@media (max-width: 900px) {
  .film-world__inner {
    grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  }
}

@media (max-width: 760px), (max-device-width: 760px) {
  :root { --page: min(100% - 32px, 1240px); }
  .nav-wrap { width: calc(100% - 32px); }
  .site-header { background: rgba(5, 8, 13, 0.96); }
  .wordmark__name { font-size: 1rem; }

  .home-hero { height: calc(100svh - var(--header-height)); min-height: 620px; }
  .home-hero__art { object-position: 49% 48%; }
  .home-hero::before {
    background: linear-gradient(0deg, rgba(3, 6, 10, 0.96) 0%, rgba(3, 6, 10, 0.25) 55%, rgba(3, 6, 10, 0.2) 100%);
  }
  .home-hero__content { bottom: 30px; left: 16px; width: calc(100% - 32px); }
  .display-title { max-width: 340px; font-size: clamp(3.45rem, 16vw, 5.2rem); line-height: 0.9; }
  .home-hero__subtitle { max-width: 320px; margin-top: 24px; font-size: 1.05rem; }

  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .home-hero .button-row { gap: 10px; margin-top: 32px; }
  .home-hero .button { min-height: 52px; padding-inline: 24px; }

  .section-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .section-heading .text-link { align-self: flex-start; }
  .section-title { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .section-heading__copy { max-width: 100%; }
  .intro-grid,
  .support-summary,
  .support-note,
  .film-card-grid,
  .story-grid { grid-template-columns: 1fr; }

  .trailer-poster img,
  .trailer-stage__frame { aspect-ratio: 4 / 3; }
  .trailer-poster img,
  .trailer-stage__frame img { object-position: center; }
  .screening-mark { min-height: 46px; padding: 11px 14px; font-size: 0.61rem; }
  .trailer-poster__meta { right: 14px; bottom: 11px; font-size: 0.62rem; }

  .crew-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .crew-grid--film { grid-template-columns: 1fr 1fr; }
  .crew-card > img { aspect-ratio: 3 / 4; object-position: center 20%; }
  .crew-card--adventurers { grid-template-columns: 1fr; }
  .crew-card__triptych { min-height: 430px; }
  .crew-card--adventurers .crew-card__body { border-top: 1px solid var(--line-soft); border-left: 0; }
  .crew-card__body { padding: 19px 16px 21px; }
  .crew-card__body::before { left: 16px; }
  .crew-card h3 { font-size: 1.3rem; }
  .crew-card p { font-size: 0.77rem; line-height: 1.45; }

  .studio-teaser__visual,
  .studio-teaser__visual img { min-height: 500px; }
  .studio-teaser__visual img { object-position: 62% center; }
  .studio-teaser__visual::after { background: linear-gradient(0deg, rgba(3, 6, 10, 0.94), transparent 78%); }
  .studio-teaser__copy { right: 24px; bottom: 28px; left: 24px; }

  .film-hero,
  .projects-hero { min-height: max(570px, 80svh); }
  .film-hero > img { object-position: 47% center; }
  .projects-hero > img { object-position: 63% center; }
  .film-hero::after,
  .projects-hero::after { background: linear-gradient(0deg, rgba(3, 6, 10, 0.95), transparent 62%); }
  .film-hero__content,
  .projects-hero .page-hero__content { bottom: 45px; width: var(--page); }

  .film-world { min-height: 590px; max-height: none; }
  .film-world > img { object-position: 71% center; }
  .film-world::after { background: linear-gradient(0deg, rgba(3, 6, 10, 0.95), transparent 72%); }
  .film-world__inner { grid-template-columns: 1fr; padding-block: 42px; }
  .film-world__copy p:last-child { font-size: 0.95rem; }

  .page-hero { min-height: 420px; background-position: center !important; }
  .page-hero__content { padding: 0 0 44px; }
  .page-title { font-size: clamp(3rem, 13vw, 4.5rem); }
  .page-title--wide { max-width: 100%; font-size: clamp(2.8rem, 12vw, 4.1rem); }
  .page-hero--trailer { background-position: center 35% !important; }
  .page-hero--support { background-position: 68% center !important; }
  .page-hero--about { min-height: 500px; background-position: 65% center !important; }

  .trailer-meta { grid-template-columns: 1fr; }
  .meta-item { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .meta-item:last-child { border-bottom: 0; }
  .screening-status {
    right: 0;
    bottom: 0;
    left: 0;
    max-width: none;
    padding: 20px;
    border-top: 1px solid var(--line);
    background: rgba(3, 6, 10, 0.82);
  }
  .screening-status__label { margin-bottom: 6px; font-size: 0.59rem; }
  .screening-status h2 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .screening-status a { margin-top: 11px; font-size: 0.59rem; }

  .tier-grid { grid-template-columns: 1fr; }
  .tier-card--featured { grid-column: auto; }
  .support-milestone { min-height: 235px; }

  .roadmap__step { grid-template-columns: 50px 1fr; gap: 14px; padding-bottom: 48px; }
  .roadmap__stage,
  .roadmap__toggle,
  .roadmap__detail { grid-column: 2; }
  .roadmap__toggle { width: 100%; }
  .roadmap__detail { margin-top: 0; }

  .film-card { min-height: 430px; }
  .film-card--black-reef { grid-column: auto; background-position: 49% center; }
  .film-card--unknown { min-height: 325px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle:last-child { grid-column: auto; }
  .about-manifesto__grid { grid-template-columns: 1fr; gap: 22px; }
  .about-film-one .story-grid { grid-template-columns: 1fr; }
  .about-film-art { max-height: 620px; aspect-ratio: 4 / 3; }

  .contact-hero { min-height: 390px; background-position: 58% center; }
  .contact-hero__inner { padding-top: 84px; padding-bottom: 55px; }
  .contact-layout { grid-template-columns: 1fr; gap: 45px; }
  .character-dialog { width: calc(100% - 24px); max-height: calc(100dvh - 24px); overflow-y: auto; }
  .character-dialog__surface { grid-template-columns: 1fr; min-height: 0; }
  .character-dialog__portrait { height: min(46dvh, 380px); }
  .character-dialog__copy { padding: 34px 24px 40px; }

  .film-stakes { min-height: 0; }
  .film-stakes__art { min-height: 360px; }
  .film-stakes__content { padding: 54px 24px; }

  .footer-top,
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 420px), (max-device-width: 420px) {
  .crew-grid { grid-template-columns: 1fr; }
  .crew-grid--film { grid-template-columns: 1fr; }
  .crew-card > img { aspect-ratio: 4 / 5; }
  .crew-card__triptych { min-height: 380px; }
}

@media (max-width: 760px) and (max-height: 700px) {
  .site-nav { gap: 22px; padding-top: calc(var(--header-height) + 24px); }
  .site-nav__list { gap: 7px; }
  .site-nav__link { font-size: 1.28rem; }
  .back-film { min-height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .js .home-page .reveal-section { opacity: 1; transform: none; }
  .character-dialog,
  .character-dialog::backdrop,
  .character-dialog__surface,
  .roadmap__detail { animation: none !important; }
  .roadmap::after { transition: none; }
}
