@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-latin-600-normal.woff2")
    format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/barlow-condensed-latin-700-normal.woff2")
    format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin-700-normal.woff2") format("woff2");
}
:root {
  --cinema-gold: #d0b58a;
  color-scheme: dark;
  --bg: #090d0e;
  --surface: #111719;
  --surface2: #182023;
  --text: #f4f3ed;
  --muted: #a5b2b3;
  --line: #ffffff21;
  --accent: #d5e6a0;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --max: 1400px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.65 var(--body);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
img {
  max-width: 100%;
  display: block;
}
figure {
  margin: 0;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.03;
}
h1 {
  font-size: clamp(3.7rem, 8.3vw, 8.6rem);
  text-transform: uppercase;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  letter-spacing: -0.01em;
}
h3 {
  font-size: 2rem;
}
p {
  max-width: 68ch;
}
.wrap {
  width: min(var(--max), calc(100% - 112px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.muted {
  color: var(--muted);
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--accent);
  color: #0a1010;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 20px;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid #ffffff14;
}
.nav-wrap {
  min-height: 102px;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  white-space: nowrap;
}
.wordmark span {
  font-weight: 400;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 0.9rem;
}
.nav-links a {
  padding: 10px 0;
  color: #d5dddd;
}
.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 12px 25px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 600;
  border-radius: 0;
  text-align: center;
  transition:
    background 0.2s,
    color 0.2s,
    border 0.2s;
}
.button:hover {
  background: #ffffff0d;
  border-color: var(--accent);
}
.button.primary {
  background: var(--accent);
  color: #121815;
  border-color: var(--accent);
}
.button.primary:hover {
  background: #e5f3bc;
}
.button.small {
  min-height: 43px;
  padding: 9px 18px;
  font-size: 0.84rem;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 8px 13px;
}
.hero {
  position: relative;
  min-height: 790px;
  height: calc(100svh - 115px);
  max-height: 1120px;
  display: flex;
  align-items: center;
  padding: 145px 0 95px;
  isolation: isolate;
  overflow: hidden;
  background: #111719;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media video {
  position: absolute;
  inset: 0;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 11, 0.86),
      rgba(5, 10, 11, 0.45) 49%,
      rgba(5, 10, 11, 0.08)
    ),
    linear-gradient(0deg, #090d0e, transparent 25%, transparent 70%, #090d0e80);
}
.hero-copy {
  max-width: 760px;
}
.hero h1 {
  margin-bottom: 28px;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 1.1rem;
  max-width: 430px;
  color: #d0d9d8;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-bottom {
  position: absolute;
  bottom: 27px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.film-caption {
  display: flex;
  gap: 16px;
  align-items: center;
}
.film-caption strong {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.video-controls {
  display: flex;
  gap: 12px;
}
.icon-button {
  border: 1px solid #ffffff50;
  background: #0b101050;
  min-width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.stats-bar {
  border-block: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 31px;
  gap: 28px;
}
.stat:not(:first-child) {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.stat-value {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.3vw, 3.5rem);
  line-height: 1.1;
  display: block;
}
.stat-label {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 9px;
}
.stats-note {
  padding: 0 0 16px;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}
.section {
  padding: 96px 0;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}
.section-top h2 {
  margin: 0;
}
.text-link {
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  white-space: nowrap;
}
.text-link:hover {
  color: var(--accent);
}
.hall-section {
  padding-bottom: 0;
}
.hall-shell {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 20%, #1e2b30, #080c0d 72%);
  border-block: 1px solid var(--line);
}
.hall-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
}
.hall-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hall-fallback {
  display: flex;
  gap: 20px;
  padding: 80px 30px 100px;
  height: 100%;
  max-width: 1320px;
  margin: auto;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.world-card {
  flex: 1;
  min-width: 0;
  scroll-snap-align: center;
}
.world-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  opacity: 0.88;
}
.world-card h3 {
  font-size: 1.6rem;
  margin: 14px 0 0;
}
.world-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0;
}
.hall-ready .hall-fallback {
  visibility: hidden;
}
.hall-overlay {
  position: absolute;
  bottom: 22px;
  inset-inline: 25px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  pointer-events: none;
}
.hall-overlay > * {
  pointer-events: auto;
}
.hall-help {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #afc0c3;
}
.world-links {
  display: flex;
  gap: 10px;
}
.world-links a {
  font-size: 0.78rem;
  padding: 9px 15px;
  border: 1px solid var(--line);
  background: #090d0ebf;
}
.world-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 24px;
}
.film-card .image-wrap {
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.film-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition:
    transform 0.6s,
    opacity 0.4s;
}
.film-card:hover img {
  transform: scale(1.035);
  opacity: 0.85;
}
.runtime {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 3px 8px;
  background: #070a0be6;
  font-size: 0.75rem;
}
.film-card h3 {
  font-size: 1.9rem;
  margin: 18px 0 10px;
}
.film-card .category {
  margin-top: 15px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent);
}
.film-card .category + h3 {
  margin-top: 8px;
}
.film-meta {
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  gap: 7px 14px;
  flex-wrap: wrap;
}
.services-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 70px 1fr 1.5fr 40px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 29px 8px;
  transition: background 0.2s;
}
.service-row:hover {
  background: var(--surface);
}
.service-row h3 {
  font-size: 2.5rem;
  margin: 0;
}
.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.row-number {
  color: var(--muted);
  font-size: 0.75rem;
}
.row-arrow {
  font-size: 1.6rem;
  color: var(--accent);
}
.newsletter {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 70px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter h2 {
  font-size: 3.2rem;
  margin-bottom: 12px;
}
.newsletter p {
  color: var(--muted);
  margin-bottom: 0;
}
.inline-form {
  display: flex;
  gap: 12px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field label,
.check-label {
  font-size: 0.86rem;
}
.field input,
.field select,
.field textarea,
.inline-form input {
  width: 100%;
  min-width: 0;
  background: #0b1011;
  border: 1px solid #73818460;
  color: var(--text);
  border-radius: 0;
  padding: 14px 16px;
  min-height: 50px;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.inline-form input {
  flex: 1;
}
.check-label {
  display: flex;
  gap: 10px;
  align-items: start;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.76rem;
}
.check-label input {
  margin-top: 5px;
  accent-color: var(--accent);
}
.check-label a {
  text-decoration: underline;
}
.form-message {
  margin: 18px 0 0;
  color: var(--accent);
  font-size: 0.9rem;
}
.hp {
  display: none !important;
}
.site-footer {
  padding: 52px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-main,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
}
.footer-main p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 15px 0;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 0.73rem;
  color: var(--muted);
}
.page-head {
  padding: 190px 0 65px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  max-width: 1120px;
  font-size: clamp(3.5rem, 7vw, 7rem);
  margin-bottom: 25px;
}
.page-head .lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 780px;
}
.page-head .eyebrow {
  margin-bottom: 20px;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter {
  padding: 10px 19px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.88rem;
}
.filter[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #10160e;
}
.film-card[hidden] {
  display: none;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
.prose {
  max-width: 780px;
}
.prose p,
.prose li {
  color: #c1cbca;
}
.prose h2 {
  font-size: 2.5rem;
  margin-top: 45px;
}
.prose h3 {
  font-size: 1.7rem;
  margin-top: 30px;
}
.video-shell {
  aspect-ratio: 16/9;
  background: #0a0c0d;
  position: relative;
  overflow: hidden;
}
.video-shell > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  background: linear-gradient(0deg, #0009, transparent);
  border: 0;
  font-size: 1rem;
  width: 100%;
}
.play-circle {
  width: 76px;
  height: 76px;
  background: var(--accent);
  border-radius: 50%;
  color: #10150b;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}
.embed-note {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 13px;
}
.embed-note a {
  text-decoration: underline;
}
.film-detail-header {
  padding: 155px 0 38px;
}
.film-detail-header h1 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  max-width: 1100px;
}
.detail-stats {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px 30px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}
.film-story {
  padding-top: 48px;
}
.credits {
  border-left: 1px solid var(--line);
  padding-left: 30px;
  font-size: 0.9rem;
}
.credits h3 {
  font-size: 1.5rem;
}
.credits p {
  color: var(--muted);
}
.end-cta {
  padding: 65px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.end-cta h2 {
  font-size: 2.9rem;
  margin: 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  border-block: 1px solid var(--line);
  padding: 35px 0;
}
.audience-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 3.3rem;
  line-height: 1.1;
}
.audience-grid span {
  font-size: 0.85rem;
  color: var(--muted);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offer {
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(130deg, #172023, #0d1214);
}
.offer h3 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.offer .price {
  font-family: var(--display);
  font-size: 2.7rem;
  margin: 22px 0 5px;
}
.offer .price small {
  font: 400 0.75rem var(--body);
  color: var(--muted);
}
.offer p,
.offer li {
  font-size: 0.91rem;
  color: #b4c0c1;
}
.offer ul {
  padding-left: 19px;
  margin-bottom: 15px;
}
.offer .button {
  margin-top: auto;
}
.offer .offer-footer {
  margin-top: auto;
  padding-top: 15px;
}
.callout {
  padding: 25px 30px;
  background: var(--surface2);
  border-left: 2px solid var(--accent);
  margin-top: 30px;
}
.callout p {
  margin: 0;
  color: #c5d0d0;
  font-size: 0.92rem;
  max-width: none;
}
.fineprint {
  color: var(--muted);
  font-size: 0.79rem;
}
.case-study {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 45px;
  align-items: center;
}
.case-study img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.span-2 {
  grid-column: span 2;
}
.form-panel {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.form-panel h2 {
  font-size: 3rem;
}
.route-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.route-tabs a {
  padding: 10px 18px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
}
.route-tabs a[aria-current="page"] {
  background: var(--accent);
  color: #11190e;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table td,
.price-table th {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.price-table th {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}
.price-table td:last-child {
  text-align: right;
  color: var(--accent);
  white-space: nowrap;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.process div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.process h3 {
  margin: 14px 0;
  font-size: 1.8rem;
}
.process p {
  font-size: 0.86rem;
  color: var(--muted);
}
.consult-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.consult-grid .offer {
  padding: 38px;
}
.consult-grid .offer h3 {
  font-size: 2.7rem;
}
.topic-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.topic-list article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.topic-list h3 {
  font-size: 1.9rem;
}
.topic-list p {
  color: var(--muted);
  font-size: 0.95rem;
}
.about-copy {
  font-size: 1.2rem;
}
.about-copy p {
  color: #c7d0cf;
}
.big-number {
  font-family: var(--display);
  font-size: clamp(6rem, 13vw, 12rem);
  line-height: 1;
  color: var(--accent);
}
.milestone-block {
  padding: 40px;
  border: 1px solid var(--line);
}
.growth-chart {
  width: 100%;
  min-height: 240px;
}
.growth-chart svg {
  display: block;
  width: 100%;
  height: auto;
}
.growth-chart text {
  font: 14px var(--body);
  fill: #a5b2b3;
}
.growth-empty {
  padding: 35px 0;
}
.modal {
  border: 1px solid var(--line);
  background: #090d0e;
  color: white;
  padding: 16px;
  width: min(1100px, 94vw);
  max-height: 90vh;
}
.modal::backdrop {
  background: #000d;
}
.modal-close {
  display: block;
  margin: 0 0 12px auto;
  background: none;
  border: 1px solid var(--line);
  padding: 6px 16px;
}
.legal-meta {
  padding: 20px 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.noscript-note {
  padding: 12px 30px;
  text-align: center;
  font-size: 0.86rem;
  background: var(--surface);
}
.empty-note {
  padding: 45px 0;
  color: var(--muted);
}
.notice {
  padding: 15px 20px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}
.missing-media {
  background: var(--surface);
  min-height: 200px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.shop-grid .offer {
  min-height: 380px;
}
.text-only-card {
  display: flex;
  align-items: end;
  padding: 25px;
  min-height: 200px;
  background: var(--surface);
  font-family: var(--display);
  font-size: 2rem;
}
@media (min-width: 1600px) {
  .hero-copy {
    max-width: 850px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-links {
    gap: 17px;
  }
  .nav-wrap {
    gap: 20px;
  }
  .wordmark {
    font-size: 0.95rem;
  }
  .header-cta {
    display: none;
  }
  .hero {
    min-height: 720px;
  }
  .offer {
    padding: 25px;
  }
  .hall-shell {
    height: 500px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    min-height: 78px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    padding: 24px;
    background: #0a1010;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 12px;
  }
  .hero {
    min-height: 760px;
    height: auto;
    padding: 145px 0 115px;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 12vw, 6rem);
    max-width: 600px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #060b0ed9, #070c0d69),
      linear-gradient(0deg, #090d0e, transparent 60%);
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }
  .hero-bottom {
    bottom: 23px;
    gap: 20px;
  }
  .film-caption {
    display: block;
  }
  .film-caption strong {
    display: block;
    font-size: 0.7rem;
    margin-top: 5px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-block: 28px;
  }
  .stat:not(:first-child) {
    border-left: 0;
    padding-left: 0;
  }
  .stat:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 22px;
  }
  .stats-note {
    font-size: 0.65rem;
    gap: 20px;
  }
  .section {
    padding: 65px 0;
  }
  .section-top {
    align-items: start;
    gap: 20px;
  }
  .section-top .text-link {
    margin-top: 10px;
  }
  .hall-section {
    padding-bottom: 0;
  }
  .hall-shell {
    height: 420px;
  }
  .hall-fallback {
    padding: 25px 20px 95px;
    gap: 16px;
  }
  .world-card {
    min-width: 78%;
    flex: 0 0 78%;
  }
  .hall-overlay {
    inset-inline: 20px;
    bottom: 20px;
  }
  .hall-help {
    display: none;
  }
  .world-links {
    overflow: auto;
    max-width: 100%;
  }
  .world-links a {
    white-space: nowrap;
  }
  .film-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
  .film-card h3 {
    font-size: 1.65rem;
  }
  .service-row {
    grid-template-columns: 35px 1fr 30px;
    gap: 15px;
    padding: 23px 0;
  }
  .service-row h3 {
    font-size: 2.1rem;
  }
  .service-row p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.85rem;
  }
  .row-arrow {
    grid-column: 3;
    grid-row: 1;
  }
  .newsletter-grid,
  .two-col,
  .case-study {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .newsletter {
    padding: 50px 0;
  }
  .newsletter h2 {
    font-size: 2.7rem;
  }
  .footer-main,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
  .footer-bottom {
    gap: 12px;
    margin-top: 25px;
  }
  .page-head {
    padding: 140px 0 45px;
  }
  .page-head .lede {
    font-size: 1.05rem;
  }
  .page-head h1 {
    font-size: clamp(3.2rem, 10vw, 5rem);
  }
  .offer-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .offer {
    padding: 30px;
  }
  .audience-grid {
    grid-template-columns: 1fr 1fr;
  }
  .audience-grid strong {
    font-size: 2.8rem;
  }
  .form-panel {
    padding: 25px;
  }
  .credits {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 25px 0 0;
  }
  .film-detail-header {
    padding-top: 130px;
  }
  .end-cta {
    align-items: start;
    flex-direction: column;
  }
  .end-cta h2 {
    font-size: 2.5rem;
  }
  .process {
    grid-template-columns: 1fr 1fr;
  }
  .consult-grid {
    grid-template-columns: 1fr;
  }
  .topic-list {
    gap: 25px;
  }
  .about-copy {
    font-size: 1.05rem;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 710px;
  }
  .hero h1 {
    font-size: 3.85rem;
  }
  .hero .actions {
    display: grid;
    max-width: 280px;
  }
  .hero-bottom .film-caption {
    max-width: 220px;
  }
  .film-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .span-2 {
    grid-column: auto;
  }
  .inline-form {
    flex-direction: column;
  }
  .topic-list {
    grid-template-columns: 1fr;
  }
  .section-top {
    flex-direction: column;
    gap: 12px;
  }
  .footer-links {
    gap: 15px;
  }
  .stats-grid {
    gap: 23px 15px;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .world-card {
    min-width: 88%;
    flex-basis: 88%;
  }
  .world-links a {
    padding: 9px 12px;
  }
  .price-table {
    font-size: 0.85rem;
  }
  .price-table td:last-child {
    white-space: normal;
    padding-left: 20px;
  }
  .hero .eyebrow {
    font-size: 0.67rem;
  }
  .wordmark {
    font-size: 0.9rem;
    letter-spacing: 0.13em;
  }
  .form-panel {
    padding: 20px;
  }
  .offer {
    padding: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Reference design: full-bleed cinema, white type, thin borders. */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/bebas-neue-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin-300-normal.woff2")
    format("woff2");
}
:root {
  --bg: #080909;
  --surface: #101112;
  --text: #f4f4f2;
  --muted: #b9bbbc;
  --accent: #f3f3f1;
  --line: #ffffff26;
}
.wrap {
  width: min(1440px, 88.4%);
}
.site-header {
  border-bottom: 0;
  background: transparent;
}
.nav-wrap {
  min-height: 88px;
  gap: 30px;
}
.wordmark {
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  font-weight: 300;
}
.wordmark .legacy-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  color: #f5f0e8;
  letter-spacing: 0.22em;
}
.brand-image {
  width: auto;
  height: 36px;
  max-width: 260px;
  object-fit: contain;
}
.nav-links {
  font-size: 0.94rem;
  gap: 30px;
}
.nav-links a {
  color: #f2f2f2;
}
.header-cta {
  min-width: 178px !important;
  font-weight: 400;
  border-color: #ffffffb3;
}
.button {
  font-weight: 500;
  border-color: #ffffff9c;
  min-height: 50px;
}
.button.primary {
  background: #f5f5f3;
  border-color: #f5f5f3;
  color: #101112;
}
.button.primary:hover {
  background: white;
}
.hero {
  height: clamp(650px, 41.7vw, 860px);
  min-height: 650px;
  max-height: none;
  padding: 132px 0 100px;
  align-items: center;
  background: #151719;
}
.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      #000000a6 0%,
      #00000065 29%,
      #00000012 63%,
      #00000012 100%
    ),
    linear-gradient(
      0deg,
      #00000038,
      transparent 30%,
      transparent 76%,
      #0000003d
    );
}
.hero-copy {
  max-width: 620px;
}
.hero-copy .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  margin-bottom: 12px;
  color: #eceeed;
}
.hero h1 {
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-size: clamp(82px, 6.4vw, 120px);
  line-height: 0.91;
  letter-spacing: -0.012em;
  margin: 0 0 16px;
}
.hero h1 span {
  display: block;
}
.hero-copy > p:not(.eyebrow) {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #f0f0ee;
  max-width: 530px;
  margin-bottom: 0;
}
.hero .actions {
  margin-top: 24px;
  gap: 16px;
}
.hero .actions .button {
  min-width: 178px;
  padding-inline: 27px;
}
.hero-explore {
  position: absolute;
  right: 11%;
  top: 49%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #f5f5f4;
}
.explore-orbit {
  width: 44px;
  height: 44px;
  border: 1px solid #ffffffe0;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.explore-orbit span {
  width: 9px;
  height: 9px;
  background: white;
  border-radius: 50%;
}
.hero-scroll {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.42em;
}
.hero-scroll > span {
  height: 49px;
  width: 1px;
  background: #ffffffbd;
}
.hero-playback {
  position: absolute;
  right: 2.5%;
  bottom: 29px;
}
.icon-button {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: #00000020;
}
.stats-bar {
  background: #0b0c0c;
  border-color: #ffffff16;
}
.stats-grid {
  padding-block: 20px 11px;
  grid-template-columns: 1fr 1.1fr 1.1fr 1.2fr;
  gap: 25px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 15px;
}
.stat:not(:first-child) {
  padding-left: 25px;
}
.stat-value {
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.7rem;
  white-space: nowrap;
}
.stat-label {
  font-size: 0.64rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  max-width: 130px;
}
.stats-note {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 12px;
  opacity: 0.78;
}
.section {
  padding-block: 72px;
}
.selected-section {
  padding-top: 50px;
  padding-bottom: 34px;
}
.selected-section .section-top {
  margin-bottom: 15px;
  align-items: center;
}
.section-label {
  font-family: var(--body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  line-height: 1.4;
}
.more-films {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.more-films span {
  font-size: 1.1rem;
  letter-spacing: 0;
}
.selected-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 15px;
}
.selected-grid .image-wrap {
  aspect-ratio: 16/9;
}
.selected-grid .film-card:last-child {
  grid-column: 1/-1;
  max-width: calc(50% - 7.5px);
}
.selected-grid h3 {
  font-size: 1.9rem;
  max-width: 35ch;
}
.hall-section {
  padding-top: 35px;
  padding-bottom: 0;
}
.hall-shell {
  background: radial-gradient(ellipse at 50% 20%, #272c2e, #080b0c 72%);
}
.inner-page .site-header {
  background: #080909;
}
@media (min-width: 1600px) {
  .hero-copy {
    max-width: 650px;
  }
}
@media (max-width: 1150px) {
  .nav-links {
    gap: 16px;
  }
  .nav-wrap {
    gap: 18px;
  }
  .wordmark {
    font-size: 1.22rem;
  }
  .header-cta {
    display: none;
  }
  .hero {
    min-height: 620px;
    height: 620px;
  }
  .hero h1 {
    font-size: 92px;
  }
  .hero-explore {
    right: 7%;
    top: 48%;
  }
  .stat {
    display: block;
  }
  .stat-label {
    margin-top: 6px;
    max-width: 180px;
  }
  .stats-grid {
    gap: 18px;
  }
  .stat:not(:first-child) {
    padding-left: 18px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    min-height: 78px;
  }
  .nav-links {
    background: #090b0c;
  }
  .wordmark {
    font-size: 1.35rem;
  }
  .brand-image {
    max-width: 220px;
    height: 32px;
  }
  .hero {
    height: auto;
    min-height: 720px;
    padding: 145px 0 122px;
    align-items: center;
  }
  .hero h1 {
    font-size: clamp(52px, 12.6vw, 96px);
    line-height: 0.94;
  }
  .hero-copy {
    max-width: 600px;
  }
  .hero-copy .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    max-width: 370px;
  }
  .hero-explore {
    display: none;
  }
  .hero-scroll {
    bottom: 26px;
  }
  .hero-scroll > span {
    height: 32px;
  }
  .hero-playback {
    right: 20px;
    bottom: 25px;
  }
  .hero .actions {
    gap: 12px;
  }
  .hero .actions .button {
    min-width: 150px;
    padding-inline: 18px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
    padding-block: 20px 10px;
  }
  .stat-value {
    font-size: 1.65rem;
  }
  .stat:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .stat-label {
    font-size: 0.63rem;
  }
  .stats-note {
    font-size: 0.57rem;
    letter-spacing: 0.12em;
    gap: 15px;
  }
  .selected-section {
    padding-top: 35px;
  }
  .selected-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .selected-grid .film-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .selected-grid h3 {
    font-size: 1.8rem;
  }
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
  }
  .more-films {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }
  .hall-section {
    padding-top: 25px;
  }
  .section {
    padding-bottom: 55px;
  }
  .hall-section {
    padding-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll {
    scroll-behavior: auto;
  }
}

/* Audit refinements: honest release states and image-led world pages. */
[hidden] {
  display: none !important;
}
.release-banner {
  background: #171a1a;
  border-bottom: 1px solid #ffffff25;
  padding: 18px 0;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.release-banner a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.world-header-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.arc-heading {
  margin: 45px 0 22px;
  font-size: 27px;
}
.availability {
  color: #aaa;
  font-size: 14px;
  margin-top: auto;
  padding-top: 25px;
}
.release-panel {
  padding: 40px;
  background: #151819;
  border: 1px solid #ffffff25;
}
.release-panel img {
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}
.shop-grid:has(> :only-child) {
  max-width: 720px;
  grid-template-columns: 1fr;
}
.embed-note {
  font-size: 12px;
  margin: 10px 0;
}
.world-card h3 {
  font-size: 26px;
}

/* Cinematic interior pages: real film imagery, restrained depth and clear type. */
.inner-page:has(.cinema-head) .site-header,
.inner-page:has(.film-art-head) .site-header {
  position:absolute;inset:0 0 auto;z-index:50;
  background:linear-gradient(#06090bdd,transparent);
}
.cinema-head {position:relative;isolation:isolate;min-height:690px;height:min(86svh,920px);display:flex;align-items:center;overflow:clip;background:#11191d;border-bottom:1px solid #c6aa733a;}
.cinema-backdrop,.cinema-vignette,.cinema-grid {position:absolute;inset:0;pointer-events:none;}
.cinema-backdrop {z-index:-3;inset:-65px 0;transform:translateY(var(--scene-shift,0));}
.cinema-backdrop img,.cinema-backdrop video {position:absolute;width:100%;height:100%;object-fit:cover;object-position:58% center;}
.cinema-backdrop video {opacity:0;transition:opacity 1s ease;}
.cinema-backdrop video.ambient-ready {opacity:1;}
.cinema-vignette {z-index:-2;background:linear-gradient(90deg,#04090dee 0%,#050b0dc2 33%,#050b0d35 72%),linear-gradient(0deg,#090d0e 0%,transparent 35%,#04080b40 100%);}
.cinema-grid {z-index:-1;inset:112px 5.8% 92px;border-left:1px solid #ffffff13;border-right:1px solid #ffffff13;}
.cinema-copy {padding-top:80px;padding-bottom:105px;}
.cinema-copy .eyebrow {color:var(--cinema-gold);margin-bottom:22px;letter-spacing:.28em;}
.cinema-copy h1 {font-family:var(--display);font-size:clamp(58px,6.6vw,110px);line-height:.96;font-weight:600;text-transform:uppercase;letter-spacing:-.025em;max-width:12ch;margin:0 0 28px;text-wrap:balance;}
.cinema-copy .lede {font-size:clamp(16px,1.35vw,20px);line-height:1.7;max-width:43ch;color:#e4e5df;margin:0;}
.cinema-discover {display:inline-flex;align-items:center;gap:14px;margin-top:32px;font-size:12px;letter-spacing:.12em;text-transform:uppercase;}
.cinema-discover>span {display:grid;place-items:center;width:38px;height:38px;border:1px solid #ffffff70;border-radius:50%;transition:transform .25s,background .25s;}
.cinema-discover:hover>span {transform:translateY(4px);background:#ffffff18;}
.cinema-foot {position:absolute;left:0;right:0;bottom:26px;display:flex;align-items:center;justify-content:space-between;gap:24px;font-size:10px;letter-spacing:.17em;text-transform:uppercase;color:#d0d7d7;}
.cinema-credit {margin-left:auto;color:#c7cbca;font-size:10px;letter-spacing:.07em;}
.ambient-control {border:1px solid #ffffff65;color:#fff;background:#090d0e55;padding:12px 16px;min-height:44px;font-size:10px;letter-spacing:.1em;text-transform:uppercase;white-space:nowrap;}
.ambient-control:hover {background:#ffffff20;}
.cinema-content-anchor {scroll-margin-top:35px;}
.hero-playback .icon-button {width:auto;min-width:120px;border-radius:0;font-size:10px;letter-spacing:.06em;padding:0 12px;}
.scene-ribbon {background:linear-gradient(180deg,#090d0e,#101619);border-bottom:1px solid var(--line);}
.scene-triptych {display:grid;grid-template-columns:1fr 1.18fr 1fr;gap:20px;align-items:center;padding:10px 0 25px;}
.scene-tile {position:relative;display:block;aspect-ratio:3/4;overflow:hidden;background:#121e25;box-shadow:0 25px 50px #0005;}
.scene-tile:nth-child(2) {aspect-ratio:3/4.2;}
.scene-tile>img {width:100%;height:100%;object-fit:cover;transition:scale .65s;}
.scene-tile::before {content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(0deg,#03080bf5,transparent 72%);pointer-events:none;}
.scene-tile>div {position:absolute;bottom:0;left:0;right:0;z-index:2;padding:30px;}
.scene-tile .eyebrow {font-size:10px;color:var(--cinema-gold);}
.scene-tile h3 {font:500 clamp(24px,2.7vw,40px)/1.06 var(--display);max-width:12ch;margin:10px 0;}
.scene-arrow {display:inline-grid;place-items:center;width:34px;height:34px;border:1px solid #ffffff60;border-radius:50%;margin-top:12px;transition:transform .3s;}
.scene-tile:hover>img {scale:1.045;}
.scene-tile:hover .scene-arrow {transform:rotate(45deg);}
.depth-card {transform:perspective(1100px) rotateX(var(--tilt-x,0deg)) rotateY(var(--tilt-y,0deg));transition:transform .18s ease-out;}
.depth-card::after {content:"";position:absolute;inset:0;background:radial-gradient(circle at var(--shine-x,50%) var(--shine-y,50%),#ffffff18,transparent 60%);opacity:0;pointer-events:none;z-index:3;transition:opacity .3s;}
.depth-card:hover::after {opacity:1;}
.film-showcase {overflow:hidden;background:radial-gradient(ellipse at 50% 70%,#34434965,transparent 60%);border-bottom:1px solid var(--line);}
.showcase-controls {display:flex;gap:10px;}
.showcase-controls .icon-button {display:grid;place-items:center;min-width:48px;min-height:48px;font-size:23px;}
.cinema-deck {display:flex;gap:24px;overflow-x:auto;scroll-snap-type:x mandatory;padding:20px 0;}
.deck-card {min-width:80%;position:relative;background:#142029;scroll-snap-align:center;}
.deck-card>a {display:block;position:relative;width:100%;height:100%;}
.deck-card img {width:100%;height:100%;object-fit:cover;display:block;}
.deck-copy {position:absolute;inset:auto 0 0;padding:28px;background:linear-gradient(transparent,#030709f5);}
.deck-copy h3 {font:600 clamp(28px,3.1vw,48px)/1.03 var(--display);text-transform:uppercase;margin:10px 0 14px;max-width:22ch;}
.deck-copy .eyebrow {color:var(--cinema-gold);font-size:11px;}
.deck-copy .text-link {font-size:12px;}
.deck-enhanced {position:relative;display:block;overflow:visible;perspective:1300px;height:clamp(330px,38vw,550px);margin-top:30px;padding:0;touch-action:pan-y;}
.deck-enhanced .deck-card {position:absolute;left:17%;top:0;width:66%;min-width:0;height:100%;transform:translateX(calc(var(--offset)*43%)) translateZ(calc(var(--depth)*-170px)) rotateY(calc(var(--offset)*-13deg));filter:brightness(calc(1 - var(--depth)*.23));transition:transform .7s cubic-bezier(.2,.75,.2,1),filter .7s;box-shadow:0 28px 60px #0009;border:1px solid #ffffff30;}
.deck-enhanced .deck-card:not(.is-active) {pointer-events:none;}
.deck-enhanced .deck-card:not(.is-active) .deck-copy {opacity:0;}
.deck-pagination {display:flex;justify-content:center;gap:7px;margin-top:30px;}
.deck-pagination button {background:none;border:0;padding:15px 5px;min-width:36px;min-height:44px;}
.deck-pagination span {display:block;height:2px;width:26px;background:#ffffff38;transition:background .3s,width .3s;}
.deck-pagination [aria-pressed=true] span {background:var(--cinema-gold);width:45px;}
.deck-status {text-align:center;min-height:24px;margin-top:0;}
.film-art-head {position:relative;isolation:isolate;min-height:530px;display:flex;align-items:flex-end;overflow:hidden;}
.film-art-backdrop {position:absolute;inset:0;z-index:-2;}
.film-art-backdrop img {width:100%;height:100%;object-fit:cover;object-position:center 35%;}
.film-art-head::after {content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(0deg,#090d0e,#090d0e50),linear-gradient(90deg,#090d0ee0,transparent);}
.film-art-copy {padding:155px 0 60px;}
.film-art-copy h1 {max-width:20ch;font:600 clamp(44px,5vw,80px)/1 var(--display);text-transform:uppercase;margin:20px 0;}
.film-art-copy .eyebrow {color:var(--cinema-gold);}
.cinema-reveal {opacity:0;translate:0 22px;transition:opacity .7s var(--reveal-delay,0ms),translate .7s var(--reveal-delay,0ms);}
.cinema-reveal.is-revealed {opacity:1;translate:0 0;}
.topic-list article {padding:30px;background:linear-gradient(120deg,#ffffff06,transparent);border-top:1px solid #ffffff24;transition:background .3s;}
.topic-list article:hover {background:#ffffff0a;}
.about-copy {font-size:clamp(18px,1.5vw,23px);line-height:1.8;}
.form-panel {background:linear-gradient(145deg,#182125,#0b1215);box-shadow:0 25px 65px #0004;border:1px solid #ffffff20;}
:focus-visible {outline:2px solid var(--cinema-gold);outline-offset:5px;}
@media(max-width:800px) {
  .cinema-head {height:auto;min-height:720px;}
  .cinema-copy {padding-top:150px;padding-bottom:145px;}
  .cinema-copy h1 {font-size:clamp(48px,10vw,76px);max-width:13ch;}
  .cinema-copy .lede {max-width:34ch;font-size:16px;}
  .cinema-vignette {background:linear-gradient(90deg,#060b0dcc,#060b0d55),linear-gradient(0deg,#090d0e,transparent 60%);}
  .cinema-grid {inset:90px 5.8% 115px;}
  .cinema-foot {flex-wrap:wrap;gap:12px;bottom:22px;}
  .cinema-credit {order:3;width:100%;margin-left:0;}
  .ambient-control {margin-left:auto;}
  .scene-triptych {grid-template-columns:1fr;gap:24px;}
  .scene-tile,.scene-tile:nth-child(2) {aspect-ratio:16/10;}
  .scene-tile>div {padding:24px;}
  .scene-tile h3 {font-size:32px;max-width:20ch;}
  .deck-enhanced {height:350px;margin-top:20px;}
  .deck-enhanced .deck-card {left:7%;width:86%;}
  .deck-copy {padding:24px 20px;}
  .deck-copy h3 {font-size:32px;}
  .showcase-controls {align-self:center;}
  .film-showcase .section-top {gap:18px;}
  .film-art-head {min-height:450px;}
}
@media(max-width:420px) {
  .nav-wrap {gap:10px;}
  .wordmark {font-size:1.02rem;min-width:0;}
  .menu-toggle {flex-shrink:0;padding:9px 11px;}
  .brand-image {max-width:180px;}
  .cinema-head {min-height:700px;}
  .cinema-foot {font-size:9px;letter-spacing:.1em;}
  .film-showcase .section-top h2 {font-size:36px;}
  .deck-enhanced {height:320px;}
}
@media(prefers-reduced-motion:reduce) {
  .cinema-backdrop,.depth-card {transform:none !important;}
  .cinema-reveal {opacity:1;translate:none;}
  .deck-enhanced .deck-card,.cinema-backdrop video,.scene-tile>img {transition:none;}
}

/* Illustrative studio image beside the biography. */
.about-studio {margin:0;max-width:520px;margin-left:auto;}
.about-studio-image {position:relative;aspect-ratio:4/5;overflow:hidden;background:#171612;border:1px solid #ffffff20;}
.about-studio-image img {display:block;width:100%;height:100%;object-fit:cover;}
.about-studio figcaption {padding:18px 0;border-bottom:1px solid var(--line);font:500 19px var(--display);letter-spacing:.04em;}
.about-studio figcaption span {display:block;font:400 11px/1.6 var(--body);color:var(--muted);margin-top:6px;letter-spacing:.06em;}
@media(max-width:800px) {.about-studio {margin:0 auto;width:100%;max-width:450px;}}
