:root {
  color-scheme: dark;
  --background: #08090b;
  --surface: #101316;
  --surface-light: #171c20;
  --foreground: #f5f1e8;
  --muted: #9a9993;
  --faint: rgba(245, 241, 232, 0.08);
  --line: rgba(245, 241, 232, 0.14);
  --line-strong: rgba(245, 241, 232, 0.26);
  --teal: #2dd4bf;
  --cyan: #67e8f9;
  --gold: #d6a15d;
  --rose: #8f3340;
  --ink: #050607;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--foreground);
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.08), transparent 28rem),
    linear-gradient(135deg, rgba(143, 51, 64, 0.08), transparent 36rem),
    linear-gradient(180deg, #08090b 0%, #0b0d10 48%, #08090b 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 4px
    );
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--foreground);
  color: var(--ink);
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(8, 9, 11, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand small {
  display: inline-block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav a,
.site-footer a,
.text-link {
  color: var(--muted);
  text-decoration: none;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.site-nav a {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.site-footer a:hover,
.text-link:hover {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
}

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

.nav-bars {
  position: relative;
}

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

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

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

.nav-open .nav-bars {
  transform: rotate(45deg);
}

.nav-open .nav-bars::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-open .nav-bars::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 108px 18px 72px;
}

.page-hero {
  min-height: auto;
  padding: 148px clamp(18px, 4vw, 56px) 74px;
  place-items: stretch;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.home-hero .hero-image {
  opacity: 0.46;
}

.page-hero .hero-image {
  opacity: 0.2;
  filter: blur(3px);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.42), rgba(8, 9, 11, 0.82) 72%, var(--background)),
    radial-gradient(circle at center, transparent 0%, rgba(8, 9, 11, 0.3) 44%, var(--background) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-center {
  text-align: center;
}

.eyebrow,
.overline {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.brand span {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 10ch;
  margin: 20px auto 0;
  font-size: clamp(54px, 10vw, 126px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
}

.page-hero h1 {
  max-width: 780px;
  margin: 16px 0 0;
  font-size: clamp(44px, 7vw, 88px);
}

.hero-copy {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

.page-copy {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

.action-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.12);
  color: var(--teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: rgba(45, 212, 191, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--muted);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--foreground);
  color: var(--foreground);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 118px) 0;
}

.thesis-section {
  border-bottom: 1px solid var(--line);
}

.thesis-grid,
.dossier-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.thesis-grid h2,
.dossier-grid h2 {
  max-width: 660px;
  margin: 16px 0 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.98;
}

.thesis-copy > p {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--foreground);
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.35;
}

.principle-grid,
.contact-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.principle-grid article,
.contact-lanes article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(16, 19, 22, 0.64);
}

.principle-grid span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.principle-grid h3,
.contact-lanes span {
  display: block;
  margin: 22px 0 8px;
  color: var(--foreground);
  font-family: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principle-grid p,
.contact-lanes p,
.material-list {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.section-kicker {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 46px;
}

.section-kicker span,
.split-heading::after,
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.34), transparent);
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(250px, 410px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.poster-link {
  display: block;
  max-width: 410px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.poster-link img {
  width: 100%;
  transition: transform 500ms ease;
}

.poster-link:hover img {
  transform: scale(1.035);
}

.release-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 7vw, 74px);
  line-height: 0.95;
}

.release-copy > p:not(.overline),
.body-copy p,
.founder-card p,
.contact-card p,
.film-meta p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.release-copy > p:not(.overline) {
  max-width: 560px;
  font-size: 18px;
}

.release-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 26px 0 0;
}

.release-facts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(16, 19, 22, 0.62);
}

.release-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-facts dd {
  margin: 0;
  color: var(--foreground);
  font-size: 14px;
}

.trailer-placeholder {
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  aspect-ratio: 16 / 9;
  margin: 28px 0 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.05), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.play-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 10px;
  border: 1px solid rgba(45, 212, 191, 0.34);
  border-radius: 999px;
}

.play-mark::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--teal);
  content: "";
}

.trailer-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  color: var(--teal);
  font-size: 14px;
  font-weight: 750;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.muted-link {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.split-heading h2 {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.split-heading a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.still-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  overflow: hidden;
}

.lightbox-trigger img {
  transition:
    transform 400ms ease,
    filter 400ms ease;
}

.lightbox-trigger:hover img,
.lightbox-trigger:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.still-strip img,
.still-gallery img,
.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.still-strip img {
  aspect-ratio: 16 / 9;
}

.statement-section {
  border-top: 1px solid var(--line);
}

.statement {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.statement p {
  max-width: 800px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.04;
}

.statement span {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.55;
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 clamp(76px, 9vw, 128px);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.film-card,
.coming-soon,
.founder-card,
.contact-card,
.press-card {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(16, 19, 22, 0.72);
}

.film-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--foreground);
  text-decoration: none;
}

.film-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.film-card:hover img {
  transform: scale(1.035);
}

.film-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.95));
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(214, 161, 93, 0.32);
  border-radius: 3px;
  background: rgba(214, 161, 93, 0.1);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-card h2,
.coming-soon h2 {
  margin: 16px 0 6px;
  font-size: 25px;
}

.film-card p,
.coming-soon p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.coming-soon {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 28px;
  border-style: dashed;
  text-align: center;
}

.plus-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: rgba(245, 241, 232, 0.32);
  font-size: 30px;
  line-height: 1;
}

.nurture-hero {
  display: grid;
  grid-template-columns: minmax(250px, 380px) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 76px);
  align-items: start;
}

.nurture-hero .poster-link {
  max-width: 380px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.back-link:hover {
  color: var(--teal);
}

.film-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}

.film-meta p,
.credit-grid p {
  margin: 0;
}

.film-meta span,
.credit-grid span,
.contact-form span,
.contact-card h2,
.press-card h2 {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.film-meta strong,
.credit-grid strong {
  font-size: 15px;
  font-weight: 700;
}

.credit-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 12px 22px;
  max-width: 520px;
  margin-top: 12px;
}

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

.still-gallery img {
  aspect-ratio: 1.52 / 1;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  margin-bottom: clamp(72px, 9vw, 116px);
}

.approach-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 5px;
}

.body-copy h2,
.founders-heading h2 {
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.body-copy p {
  font-size: 18px;
}

.founders-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

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

.founder-card {
  padding: clamp(24px, 4vw, 36px);
}

.initials {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-light);
  color: rgba(245, 241, 232, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.founder-card h2 {
  margin-bottom: 6px;
  font-size: 26px;
}

.founder-card .role {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(36px, 7vw, 86px);
}

.contact-lanes {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(34px, 5vw, 58px);
}

.contact-lanes article {
  min-height: 150px;
}

.contact-lanes span {
  margin-top: 0;
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--foreground);
  outline: none;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.24);
  outline-offset: 3px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-stack {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-card,
.press-card {
  padding: 24px;
}

.direct-email {
  color: var(--foreground);
  font-size: 15px;
  text-decoration: none;
}

.direct-email:hover {
  color: var(--teal);
}

.social-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-buttons a,
.social-buttons span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.social-buttons a:hover {
  border-color: rgba(45, 212, 191, 0.42);
  color: var(--teal);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(120px, 0.5fr) minmax(160px, 0.7fr);
  gap: 30px;
  padding: 42px clamp(18px, 4vw, 56px) 30px;
  border-top: 1px solid var(--line);
  background: rgba(16, 19, 22, 0.5);
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: 19px;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 14px;
}

.site-footer nav,
.footer-social {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer-social span {
  color: rgba(154, 153, 147, 0.5);
  font-size: 14px;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.material-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.material-list li {
  position: relative;
  padding-left: 22px;
}

.material-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  content: "";
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(3, 4, 5, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  width: min(1120px, 100%);
}

.lightbox-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.lightbox-frame img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.78);
  color: var(--foreground);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.lightbox-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .release-grid,
  .nurture-hero,
  .approach-grid,
  .contact-layout,
  .thesis-grid,
  .dossier-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
  }

  .brand {
    gap: 8px;
  }

  .brand span {
    font-size: 17px;
  }

  .brand small {
    max-width: 12ch;
    font-size: 9px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 62px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    transform: translateY(-120%);
    background: rgba(8, 9, 11, 0.97);
    border-bottom: 1px solid var(--line);
    transition: transform 180ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    display: grid;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 88svh;
  }

  h1 {
    font-size: 56px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .action-row,
  .contact-form .button {
    display: grid;
  }

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

  .film-grid,
  .founder-grid,
  .still-gallery,
  .film-meta,
  .release-facts,
  .principle-grid,
  .contact-lanes {
    grid-template-columns: 1fr;
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

  .split-heading::after {
    display: none;
  }

  .coming-soon {
    min-height: 260px;
  }
}

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