:root {
  --ink: #0a0908;
  --ink-2: #100d0a;
  --paper: #f4f0e8;
  --muted: #a39b8a;
  --line: rgba(244, 240, 232, 0.14);
  --line-strong: rgba(244, 240, 232, 0.26);
  --ember: #e0552d;
  --gold: #d8b15e;
  --gold-soft: #e8cf9a;
  --sea: #2a7d86;
  --white: #fffaf0;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.1, 1);
  --pad: clamp(18px, 5vw, 80px);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

/* ---------- Background atmosphere ---------- */
#atmosphere {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 22% 12%, rgba(216, 79, 42, 0.24), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(42, 125, 134, 0.2), transparent 30%),
    radial-gradient(circle at 50% 120%, rgba(216, 177, 94, 0.12), transparent 45%),
    linear-gradient(180deg, #050403, #12100c 52%, #050403);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.74' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 95;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  z-index: 96;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 250, 240, 0.7);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
  will-change: transform;
}

.cursor-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  color: var(--ink);
}

.cursor.is-active {
  width: 50px;
  height: 50px;
  background: rgba(255, 250, 240, 0.12);
  border-color: rgba(255, 250, 240, 0.4);
}

.cursor.is-media {
  width: 96px;
  height: 96px;
  background: var(--gold);
  border-color: transparent;
}

.cursor.is-media .cursor-label {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  gap: 36px;
  background: #050403;
  transition: opacity 0.6s var(--ease);
}

.preloader.is-done {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.preloader-mark {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--gold);
}

.preloader-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 7vw, 76px);
  line-height: 1;
  font-optical-sizing: auto;
  color: var(--white);
  overflow: hidden;
}

.preloader-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.preloader-bar {
  width: min(280px, 60vw);
  height: 1px;
  margin: 0 auto;
  background: rgba(255, 250, 240, 0.16);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--ember), var(--gold));
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px var(--pad);
  color: var(--white);
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    padding 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.site-header.is-scrolled {
  padding-block: 13px;
  background: rgba(8, 7, 6, 0.66);
  border-bottom: 1px solid rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand-image img {
  width: clamp(150px, 14vw, 184px);
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.5));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 36px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
  color: rgba(255, 250, 240, 0.66);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 250, 240, 0.04);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(2.75px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(-2.75px) rotate(-45deg);
}

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 120px var(--pad) 48px;
  background: rgba(7, 6, 5, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
}

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

.mobile-nav nav {
  display: grid;
  gap: clamp(4px, 1.4vw, 12px);
}

.mobile-nav nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(34px, 11vw, 60px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
}

body.menu-open .mobile-nav nav a {
  animation: navIn 0.6s var(--ease) forwards;
}

.mobile-nav nav a span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.mobile-nav-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes navIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Shared section bits ---------- */
.section-dark {
  position: relative;
  background: rgba(6, 5, 4, 0.34);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow .idx {
  color: rgba(244, 240, 232, 0.42);
}

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

.hero-title,
h2,
.development-stage h3,
.timeline h3,
.talent-card h3,
.contact-panel h3,
.quote {
  font-family: var(--display);
  font-optical-sizing: auto;
}

h2 {
  max-width: 16ch;
  font-size: clamp(34px, 5.4vw, 76px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
}

h3 {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.05;
}

em {
  font-style: italic;
}

.reel,
.work,
.studio,
.development,
.featured-film,
.talent,
.process,
.contact {
  padding: clamp(76px, 11vw, 168px) var(--pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) 1fr;
  gap: clamp(20px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(38px, 6vw, 84px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px var(--pad) 78px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.78);
  transform: scale(1.06);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.86) 0%, rgba(5, 5, 4, 0.3) 50%, rgba(5, 5, 4, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.34) 0%, rgba(5, 5, 4, 0.12) 40%, rgba(5, 5, 4, 0.92) 100%);
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 7px);
  opacity: 0.2;
  z-index: 1;
}

.letterbox {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: clamp(24px, 5vh, 56px);
  background: #050403;
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: center;
}

.letterbox-top {
  top: 0;
  transform-origin: top;
}

.letterbox-bottom {
  bottom: 0;
  transform-origin: bottom;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 1240px;
}

.hero-title {
  margin: 0 0 30px;
  font-weight: 400;
  font-size: clamp(52px, 10.5vw, 168px);
  letter-spacing: -0.02em;
  line-height: 0.86;
  color: var(--white);
}

.hero-title em {
  color: var(--gold-soft);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.95s var(--ease);
}

.hero-title.is-revealed .line > span {
  transform: translateY(0);
}

.hero-title.is-revealed .line:nth-child(2) > span {
  transition-delay: 0.09s;
}

.hero-title.is-revealed .line:nth-child(3) > span {
  transition-delay: 0.18s;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 540px) auto;
  gap: clamp(22px, 6vw, 84px);
  align-items: end;
}

.hero-lede,
.studio-copy p,
.contact-copy p {
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  padding: 14px 26px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}

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

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

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

.button.ghost {
  background: rgba(255, 250, 240, 0.06);
}

.button.ghost:hover {
  background: rgba(255, 250, 240, 0.14);
  border-color: rgba(255, 250, 240, 0.5);
}

.hero-panel {
  position: absolute;
  right: var(--pad);
  bottom: 92px;
  z-index: 3;
  display: grid;
  gap: 18px;
  width: min(280px, 24vw);
  color: rgba(255, 250, 240, 0.74);
}

.hero-panel div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 250, 240, 0.2);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--display);
  font-weight: 400;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.metric-text {
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 240, 0.6);
}

.scroll-cue-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.scroll-cue-track {
  position: relative;
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255, 250, 240, 0.4);
  border-radius: 999px;
}

.scroll-cue-track span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

/* ---------- Showreel ---------- */
.reel-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 0;
  color: var(--white);
  background: #050403;
  cursor: pointer;
}

.reel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Clear and bright — this is the fix for "we can't see it" */
  filter: saturate(1) contrast(1.04) brightness(0.96);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.reel-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 40%, rgba(5, 5, 4, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.1), rgba(5, 5, 4, 0.55));
  opacity: 0.8;
  transition: opacity 0.6s var(--ease);
}

.reel-frame:hover::after {
  opacity: 0.5;
}

.reel-frame:hover video {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05) brightness(1.02);
}

.reel-corner {
  position: absolute;
  z-index: 3;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 250, 240, 0.55);
  transition: border-color 0.5s var(--ease);
}

.reel-corner.tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; }
.reel-corner.tr { top: 18px; right: 18px; border-left: 0; border-bottom: 0; }
.reel-corner.bl { bottom: 18px; left: 18px; border-right: 0; border-top: 0; }
.reel-corner.br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; }

.reel-frame:hover .reel-corner {
  border-color: var(--gold);
}

.reel-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(86px, 11vw, 132px);
  height: clamp(86px, 11vw, 132px);
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.34);
  border: 1px solid rgba(255, 250, 240, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.5s var(--ease);
}

.reel-play::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid rgba(216, 177, 94, 0.6);
  animation: pulseRing 2.6s var(--ease) infinite;
}

.reel-frame:hover .reel-play {
  background: var(--gold);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.06);
}

.reel-play-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--white);
  transition: border-left-color 0.5s var(--ease);
}

.reel-frame:hover .reel-play-icon {
  border-left-color: var(--ink);
}

.reel-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reel-tag {
  color: var(--gold-soft);
}

.reel-time {
  color: rgba(255, 250, 240, 0.78);
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Marquee ---------- */
.work {
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  margin-bottom: clamp(40px, 6vw, 80px);
  color: transparent;
  font-family: var(--display);
  font-size: clamp(54px, 9vw, 138px);
  line-height: 0.9;
  -webkit-text-stroke: 1px rgba(255, 250, 240, 0.16);
  animation: marquee 36s linear infinite;
}

.marquee span {
  padding-right: 28px;
  white-space: nowrap;
}

/* ---------- In Development ---------- */
.development-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.72fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.development-stage-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 42%, rgba(216, 177, 94, 0.18), transparent 28%),
    radial-gradient(circle at 24% 18%, rgba(224, 85, 45, 0.13), transparent 32%),
    linear-gradient(145deg, #0a0908, #15110d 54%, #060504);
}

.growth-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.growth-caption {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  right: clamp(20px, 3vw, 40px);
  bottom: clamp(20px, 3vw, 36px);
  z-index: 3;
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s var(--ease) 0.6s, transform 1s var(--ease) 0.6s;
  pointer-events: none;
}

.is-visible .growth-caption,
.development-stage.is-visible .growth-caption {
  opacity: 1;
  transform: translateY(0);
}

.growth-caption span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.growth-caption strong {
  max-width: 20ch;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 400;
  line-height: 1.05;
}

.development-stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 0 10%, rgba(216, 79, 42, 0.16), transparent 40%),
    rgba(9, 8, 7, 0.84);
}

.development-stage h3 {
  margin-bottom: 22px;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1;
}

.development-stage p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.7);
  font-size: 17px;
  line-height: 1.6;
}

.development-stage .button {
  align-self: flex-start;
}

.development-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.strip-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.04);
  cursor: pointer;
}

.strip-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.84);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.strip-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

/* ---------- Films / poster wall ---------- */
.poster-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  align-items: start;
}

.poster {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 0;
  background: #14110e;
  cursor: pointer;
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.poster:nth-child(even) {
  margin-top: 56px;
}

.poster:hover {
  transform: translateY(-12px);
  border-color: rgba(216, 177, 94, 0.6);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.45);
}

.poster img {
  width: 100%;
  aspect-ratio: 690 / 1024;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.92);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.poster:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.poster-plus {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.5);
  border: 1px solid rgba(255, 250, 240, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}

.poster-plus::before,
.poster-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.poster-plus::before { width: 12px; height: 1.5px; }
.poster-plus::after { width: 1.5px; height: 12px; }

.poster:hover .poster-plus {
  opacity: 1;
  transform: scale(1);
  background: var(--gold);
}

.poster:hover .poster-plus::before,
.poster:hover .poster-plus::after {
  background: var(--ink);
}

/* ---------- Featured production ---------- */
.featured-film {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(224, 85, 45, 0.18), transparent 32%),
    radial-gradient(circle at 82% 58%, rgba(42, 125, 134, 0.24), transparent 34%),
    linear-gradient(135deg, #070604 0%, #16110c 52%, #050403 100%);
}

.featured-film::before {
  content: "Prayer";
  position: absolute;
  right: -0.08em;
  top: 6%;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 280px);
  line-height: 0.8;
  -webkit-text-stroke: 1px rgba(255, 250, 240, 0.08);
  pointer-events: none;
}

.featured-film-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid rgba(216, 177, 94, 0.26);
  background:
    linear-gradient(120deg, rgba(255, 250, 240, 0.08), rgba(255, 250, 240, 0.02)),
    rgba(8, 7, 6, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.featured-film-copy h2 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: var(--white);
}

.featured-film-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
}

.featured-film-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.featured-qr-card {
  justify-self: end;
  width: min(100%, 420px);
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(255, 250, 240, 0.16);
  background:
    radial-gradient(circle at 0 0, rgba(216, 177, 94, 0.18), transparent 44%),
    rgba(255, 250, 240, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.featured-qr-frame {
  padding: clamp(12px, 2vw, 22px);
  border: 1px solid rgba(10, 9, 8, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
}

.featured-qr-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 6px;
}

.featured-qr-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin-top: 18px;
}

.featured-qr-caption span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-qr-caption p {
  margin: 0;
  color: rgba(255, 250, 240, 0.74);
  text-align: right;
}

/* ---------- Talent ---------- */
.talent {
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(224, 85, 45, 0.14), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(216, 177, 94, 0.24), transparent 30%),
    linear-gradient(135deg, #f4f0e8 0%, #e7dfcf 50%, #cfc4ad 100%);
}

.talent .eyebrow {
  color: #9e3c21;
}

.talent .eyebrow .idx {
  color: rgba(9, 8, 7, 0.38);
}

.talent .section-heading h2 {
  max-width: 18ch;
  color: var(--ink);
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}

.talent-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: clamp(520px, 42vw, 610px);
  overflow: hidden;
  border: 1px solid rgba(9, 8, 7, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(255, 250, 240, 0.62)),
    rgba(244, 240, 232, 0.84);
  box-shadow: 0 24px 70px rgba(10, 9, 8, 0.13);
}

.talent-card img {
  width: 100%;
  height: clamp(260px, 24vw, 340px);
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.84) contrast(1.02) brightness(0.86);
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.talent-card:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.96);
}

.talent-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: clamp(20px, 2.4vw, 30px);
}

.talent-card span {
  display: block;
  margin-bottom: 10px;
  color: #9e3c21;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.talent-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 400;
}

.talent-card p {
  margin-bottom: 0;
  max-width: 46ch;
  color: rgba(9, 8, 7, 0.7);
  line-height: 1.5;
}

.talent-more {
  margin-top: auto;
  padding-top: 20px;
}

.talent-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  border: 1px solid rgba(9, 8, 7, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.talent-more summary::-webkit-details-marker {
  display: none;
}

.talent-more summary::after {
  content: "+";
  color: #9e3c21;
  font-size: 14px;
  line-height: 1;
}

.talent-more[open] summary {
  margin-bottom: 14px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.talent-more[open] summary::after {
  content: "-";
  color: var(--gold);
}

.talent-more p {
  font-size: 15px;
  line-height: 1.55;
}

.talent-more p + p {
  margin-top: 10px;
}

/* ---------- Company / studio ---------- */
.studio {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 104px);
  align-items: center;
}

.studio-image {
  position: relative;
  min-height: clamp(460px, 58vw, 660px);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(216, 177, 94, 0.28);
  background:
    radial-gradient(circle at 54% 38%, rgba(216, 177, 94, 0.14), transparent 24%),
    radial-gradient(circle at 28% 18%, rgba(224, 85, 45, 0.14), transparent 32%),
    radial-gradient(circle at 84% 16%, rgba(42, 125, 134, 0.18), transparent 32%),
    linear-gradient(145deg, #050403 0%, #11100d 54%, #050403 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.studio-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 38%, transparent 0 22%, rgba(5, 5, 4, 0.42) 54%, rgba(5, 5, 4, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 5, 4, 0), rgba(5, 5, 4, 0.58));
  pointer-events: none;
}

.studio-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 240, 0.18);
  pointer-events: none;
}

.studio-image-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: grid;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 240, 0.22);
}

.studio-image-caption span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-image-caption strong {
  max-width: 18ch;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(28px, 3.3vw, 46px);
  font-weight: 400;
  line-height: 1.02;
}

.galaxy-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.studio-copy h2 {
  margin-bottom: 28px;
}

.quote {
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  color: var(--white);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
}

.quote span {
  color: var(--ember);
  margin-right: 6px;
}

/* ---------- Process timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline li {
  position: relative;
  min-height: 340px;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(150deg, rgba(255, 250, 240, 0.05), transparent 60%),
    var(--ink-2);
  transition: background 0.5s var(--ease);
}

.timeline li:hover {
  background:
    linear-gradient(150deg, rgba(216, 177, 94, 0.12), transparent 60%),
    var(--ink-2);
}

.timeline span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.timeline h3 {
  margin: 56px 0 18px;
  font-weight: 400;
}

.timeline p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 520px);
  gap: clamp(34px, 8vw, 110px);
  align-items: start;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 79, 42, 0.16), transparent 38%),
    radial-gradient(circle at 90% 80%, rgba(42, 125, 134, 0.12), transparent 40%),
    linear-gradient(135deg, #f4f0e8, #ddd4c1);
  color: var(--ink);
}

.contact .eyebrow {
  color: #9e3c21;
}

.contact h2 {
  max-width: 18ch;
}

.contact-copy p {
  color: rgba(9, 8, 7, 0.7);
}

.contact-copy a {
  border-bottom: 1px solid rgba(9, 8, 7, 0.3);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-copy a:hover {
  color: #9e3c21;
  border-color: #9e3c21;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid rgba(9, 8, 7, 0.16);
  background:
    radial-gradient(circle at 100% 0, rgba(42, 125, 134, 0.18), transparent 38%),
    rgba(255, 250, 240, 0.62);
  box-shadow: 0 26px 70px rgba(10, 9, 8, 0.14);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(9, 8, 7, 0.08);
  pointer-events: none;
}

.contact-panel-kicker {
  display: block;
  margin-bottom: 18px;
  color: #9e3c21;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-panel h3 {
  position: relative;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
}

.contact-panel p {
  position: relative;
  margin-bottom: 26px;
  color: rgba(9, 8, 7, 0.7);
  font-size: 17px;
  line-height: 1.65;
}

.mail-button {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 20px 58px 20px 22px;
  border: 1px solid var(--ink);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(224, 85, 45, 0.18), transparent 45%),
    var(--ink);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.mail-button::after {
  content: "->";
  position: absolute;
  right: 22px;
  top: 50%;
  color: var(--gold);
  font-family: var(--mono);
  transform: translateY(-50%);
}

.mail-button span {
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mail-button strong {
  overflow-wrap: anywhere;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mail-button:hover {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.16), transparent 48%),
    #9e3c21;
  border-color: #9e3c21;
}

.contact-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(9, 8, 7, 0.68);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-row a {
  border: 1px solid rgba(9, 8, 7, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(9, 8, 7, 0.74);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.social-row a:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(48px, 7vw, 96px) var(--pad) clamp(34px, 4vw, 52px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}

.footer-wordmark {
  display: block;
  margin-bottom: 40px;
  color: var(--white);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 15vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}

.footer-wordmark:hover {
  color: var(--gold);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-top {
  color: var(--gold);
}

/* ---------- Modals ---------- */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 4, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.reel-modal[hidden],
.poster-modal[hidden] {
  display: none;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 250, 240, 0.07);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.modal-close:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.modal-stage {
  width: min(1080px, 94vw);
}

.modal-stage video {
  width: 100%;
  max-height: 78vh;
  background: #000;
  border: 1px solid var(--line);
}

.modal-stage p {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.64);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poster-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 70px 22px 28px;
  background: rgba(5, 5, 4, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.poster-modal img {
  max-width: min(620px, 90vw);
  max-height: 84vh;
  border: 1px solid var(--line);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

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

/* ---------- Keyframes ---------- */
@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 16px); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-panel {
    position: static;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    margin-top: 52px;
  }

  .hero-grid,
  .section-heading,
  .studio,
  .featured-film-inner,
  .contact {
    grid-template-columns: 1fr;
  }

  .timeline,
  .development-stage,
  .talent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .development-strip,
  .poster-wall {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-qr-card {
    justify-self: stretch;
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 680px) {
  .cursor {
    display: none;
  }

  .hero {
    padding: 124px 18px 60px;
    align-items: end;
  }

  .hero-title {
    line-height: 0.92;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-panel div {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-block: 14px;
  }

  .metric {
    margin-bottom: 0;
    font-size: 34px;
  }

  .development-stage,
  .talent-grid {
    grid-template-columns: 1fr;
  }

  .featured-film-inner {
    padding: 22px;
  }

  .featured-film-actions {
    flex-direction: column;
  }

  .featured-film-actions .button {
    width: 100%;
  }

  .featured-qr-caption {
    display: grid;
    gap: 6px;
  }

  .featured-qr-caption p {
    text-align: left;
  }

  .talent-card img {
    height: 300px;
  }

  .development-strip,
  .poster-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster:nth-child(even) {
    margin-top: 0;
  }

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

  .timeline li {
    min-height: auto;
  }

  .timeline h3 {
    margin-top: 28px;
  }

  .reel-frame {
    aspect-ratio: 4 / 3;
  }

  .reel-meta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 9px;
  }

  .reel-corner {
    width: 18px;
    height: 18px;
  }

  .reel-corner.tl, .reel-corner.tr { top: 12px; }
  .reel-corner.bl, .reel-corner.br { bottom: 12px; }
  .reel-corner.tl, .reel-corner.bl { left: 12px; }
  .reel-corner.tr, .reel-corner.br { right: 12px; }

  .studio-image {
    min-height: 420px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

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

  .hero-title .line > span {
    transform: none;
  }

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