/* ============================================================
   Pineapple Avenue Creative — dark cinematic editorial
   ink / bone / champagne · Instrument Serif + Hanken Grotesk
   Push-through intro · Storyline thread · light-table stills
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --ink: #0B0A08;
  --ink-2: #14120D;
  --bone: #F1EDE2;
  --bone-85: rgba(241, 237, 226, 0.85);
  --bone-70: rgba(241, 237, 226, 0.72);
  --muted: #9A927E;
  --gold: #C6A15B;
  --line: rgba(241, 237, 226, 0.14);
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(20px, 5vw, 84px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-micro: 0.3s;
  --z-nav: 40;
  --z-overlay: 50;
  --z-cursor: 70;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 80;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
a { color: inherit; text-decoration: none; }
figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

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

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

.container { padding-inline: var(--pad); position: relative; }
.section { position: relative; padding-block: clamp(120px, 18vh, 250px); }
main { position: relative; z-index: 1; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 90;
  padding: 12px 18px;
  background: var(--bone);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus-visible { transform: none; }

/* ---------- shared type ---------- */
.label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-gold { color: var(--gold); }
.section-label { color: var(--gold); margin-bottom: clamp(44px, 7vh, 100px); }

em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.display {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.display em { color: var(--gold); }

.display-md {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.014em;
}
.display-md em { color: var(--gold); }

.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.display-sm em { color: var(--gold); }

.mark { color: var(--gold); font-style: normal; }

/* masked line reveals */
.rl { display: block; overflow: hidden; }
.rl-inner { display: inline-block; will-change: transform; }

/* pre-hide reveal targets once JS confirms motion will run — GSAP's inline
   styles take over from here, so nothing flashes before its reveal */
html.motion [data-reveal] { opacity: 0; }
html.motion .rl-inner { transform: translateY(112%); }

/* ---------- the storyline ---------- */
.storyline {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.storyline path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.1;
  opacity: 0.5;
}
.storyline circle { fill: var(--gold); opacity: 0.45; }

/* ---------- intro ---------- */
.intro {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  will-change: transform, opacity;
}
.no-js .intro, .intro.is-done { display: none; }
.intro-svg { width: 100%; height: 100%; }
.intro-shade { fill: var(--ink); }
.intro-word text {
  font-family: var(--font-serif);
  font-size: clamp(64px, 13.5vw, 200px);
  letter-spacing: -0.015em;
  text-anchor: middle;
  fill: #000;
}
.intro-flank {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
}
.intro-flank-left { left: var(--pad); }
.intro-flank-right { right: var(--pad); text-align: right; }
.intro-hint {
  position: absolute;
  left: 50%;
  bottom: 7vh;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.intro-hint-line {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: hintPulse 2.6s var(--ease-out) infinite;
}
@keyframes hintPulse {
  0% { transform: scaleX(0); opacity: 0.2; }
  45% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1) translateX(16px); opacity: 0; }
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(11, 10, 8, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-brand { display: flex; align-items: baseline; gap: 10px; padding: 8px 0; }
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-brand-short { display: none; }
.nav-brand-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 40px); }
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 12px 2px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-70);
  transition: color var(--dur-micro) ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { color: var(--gold) !important; }
.nav-cta:hover { color: var(--bone) !important; }

/* ---------- hero ---------- */
.hero { position: relative; }
.hero.has-pin { height: 340vh; }
.hero-pin {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-frame {
  position: relative;
  width: min(66vw, 1000px);
  aspect-ratio: 16 / 9;
  overflow: clip;
  transform: translateY(-6vh);
  will-change: transform;
}
.hero-frame-inner {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-frame video, .hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-frame img { z-index: 0; }
.hero-frame video { z-index: 1; }

.hero-copy { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-copy-left { position: absolute; top: 14vh; left: var(--pad); }
.hero-copy-right { position: absolute; top: 14vh; right: var(--pad); text-align: right; }
.hero-tagline {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 30ch;
}
.hero-cta {
  position: absolute;
  left: var(--pad);
  bottom: 3.2vh;
  pointer-events: auto;
  display: inline-block;
  padding-block: 10px;
  color: var(--bone-70);
  transition: color var(--dur-micro) ease;
}
.hero-cta:hover { color: var(--gold); }
.hero-title {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 9vh;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.hero-title em { color: var(--gold); }

/* ---------- 01 the films ---------- */
.films-lede { max-width: 24em; margin-bottom: clamp(70px, 12vh, 150px); }
.bts-break {
  width: min(72vw, 1100px);
  margin-inline: auto;
  margin-bottom: clamp(150px, 26vh, 340px);
}
.bts-break img { width: 100%; height: auto; }
.bts-caption { margin-top: 12px; }
.features {
  display: grid;
  row-gap: clamp(150px, 24vh, 320px);
}
.feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  column-gap: clamp(32px, 5vw, 90px);
  align-items: center;
}
.feature--flip { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); }
.feature--flip .feature-media { order: 2; }
.feature--flip .feature-info { order: 1; text-align: right; }
.feature-media { will-change: transform; }
.feature-trigger { position: relative; display: block; width: 100%; overflow: clip; }
.feature-trigger img {
  width: 100%;
  height: auto;
  filter: grayscale(14%) contrast(1.02);
  transform: scale(1.001);
  transition: transform 1.1s var(--ease-out), filter 0.6s ease;
}
.feature-trigger:hover img,
.feature-trigger:focus-visible img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.03);
}
.feature-trigger:focus-visible { outline-offset: -4px; }
.feature-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.feature-preview video { width: 100%; height: 100%; object-fit: cover; }
.feature-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(241, 237, 226, 0.45);
  border-radius: 50%;
  color: var(--bone);
  background: rgba(11, 10, 8, 0.25);
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .js .feature-play { display: none; }
}
.feature-trigger:hover .feature-play { background: var(--bone); color: var(--ink); transform: scale(1.06); }
.feature-info { display: grid; gap: 14px; }
.feature-index { color: var(--gold); }
.feature-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}
.feature:hover .feature-name { color: var(--bone); }
.feature-meta { color: var(--muted); }
.feature-impact {
  margin-top: 6px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.35;
  color: var(--bone-70);
  max-width: 22ch;
}
.feature--flip .feature-impact { margin-left: auto; }

/* proof interlude */
.feature-quote { display: flex; justify-content: center; }
.quote { margin: 0; max-width: 21em; text-align: center; }
.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.9rem);
  line-height: 1.25;
  color: var(--bone);
}
.quote-cite { display: block; margin-top: 26px; font-style: normal; color: var(--gold); }

.cohort {
  margin-top: clamp(140px, 22vh, 280px);
  text-align: center;
  display: grid;
  gap: 18px;
}
.cohort-names {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  color: var(--bone-70);
  letter-spacing: 0.01em;
}
.cohort-names .mark { padding-inline: 0.5em; }

/* ---------- 02 stills: light table ---------- */
.lighttable-lede { max-width: 18em; }
.stills-support {
  margin-top: clamp(20px, 3vh, 34px);
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 46ch;
  margin-bottom: clamp(56px, 9vh, 120px);
}
.lighttable {
  /* floored against viewport WIDTH too: photo heights scale with vw, so
     short-and-wide windows must not compress the lanes into collisions */
  position: relative;
  height: max(clamp(2400px, 340vh, 3600px), 200vw);
}
.lt-item {
  position: absolute;
  width: var(--w, 30vw);
  left: var(--x, 0);
  top: var(--y, 0);
  will-change: transform;
}
.lt-item img { width: 100%; height: auto; }
.lt-caption { margin-top: 12px; display: grid; gap: 4px; }
.lt-client { color: var(--bone-85); }
.lt-outcome {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- 03 about ---------- */
.about { background: var(--ink-2); }
.about-title { max-width: 13em; }
.about-grid {
  margin-top: clamp(60px, 9vh, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: start;
}
.about-people { display: grid; gap: clamp(40px, 6vh, 64px); }
.about-person-name {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1;
}
.about-person-bio {
  margin-top: 14px;
  color: var(--bone-70);
  font-size: 1.0625rem;
  max-width: 46ch;
}
.about-joint {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  color: var(--bone-70);
}
.about-joint em { color: var(--gold); }
.about-portraits { position: relative; }
.about-portrait { overflow: clip; }
.about-portrait img { width: 100%; height: auto; will-change: transform; }
.about-portrait-main { width: min(34vw, 460px); }
.about-portrait-side {
  width: min(20vw, 280px);
  margin-left: auto;
  margin-top: clamp(-60px, -6vh, -30px);
}
.about-portrait-caption { margin-top: 12px; }

/* ---------- 04 how we work ---------- */
.plan-lede { max-width: 18em; }
.plan-steps {
  margin-top: clamp(56px, 9vh, 110px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}
.plan-step { border-top: 1px solid var(--line); padding-top: 24px; }
.plan-step-index { color: var(--gold); font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; }
.plan-step-name { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-top: 14px; line-height: 1.05; }
.plan-step-desc { color: var(--muted); margin-top: 12px; font-size: 0.9375rem; max-width: 32ch; }

/* ---------- 05 start ---------- */
.contact { overflow: clip; padding-bottom: 0; }
.contact-title { position: relative; z-index: 1; }
.contact-email {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(44px, 7vh, 90px);
  padding-block: 10px;
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bone);
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 1px;
  transition: background-size 0.5s var(--ease-out), color var(--dur-micro) ease;
}
.contact-email:hover { color: var(--gold); background-size: 100% 1px; }
.contact-arrow {
  width: 0.9em;
  height: 0.9em;
  transition: transform 0.35s var(--ease-out);
}
.contact-email:hover .contact-arrow { transform: translate(3px, -3px); }
.contact-promise {
  margin-top: clamp(30px, 5vh, 54px);
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 52ch;
}
.contact-promise em { color: var(--bone-70); }
.contact-meta {
  margin-top: clamp(38px, 6vh, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-socials { display: flex; gap: 28px; }
.contact-socials a {
  display: inline-block;
  padding: 12px 0;
  color: var(--bone-70);
  transition: color var(--dur-micro) ease;
}
.contact-socials a:hover { color: var(--gold); }

.footer {
  margin-top: clamp(70px, 10vh, 130px);
  padding-block: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer .label { color: rgba(154, 146, 126, 0.75); }
.footer-top { transition: color var(--dur-micro) ease; padding-block: 12px; }
.footer-top:hover { color: var(--gold); }

/* ---------- film overlay ---------- */
.film-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  background: rgba(8, 7, 5, 0.97);
}
.film-overlay[hidden] { display: none; }
.film-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px var(--pad);
}
.film-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: -0.01em;
}
.film-meta { margin-top: 6px; }
.film-close {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone);
  transition: background-color var(--dur-micro) ease, color var(--dur-micro) ease, transform var(--dur-micro) var(--ease-out);
}
.film-close:hover { background: var(--bone); color: var(--ink); transform: scale(1.05); }
.film-close svg { width: 20px; height: 20px; }
.film-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--pad) clamp(28px, 5vh, 56px);
  min-height: 0;
}
.film-stage .film-frame {
  width: min(100%, calc((100vh - 220px) * var(--film-ratio, 1.7778)));
  max-height: 100%;
  aspect-ratio: var(--film-ratio, 16 / 9);
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  will-change: transform;
}
.film-stage .film-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: var(--z-cursor);
  width: 10px; height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--bone);
  mix-blend-mode: difference;
  pointer-events: none;
  display: none;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), margin 0.3s var(--ease-out), background-color 0.3s ease;
}
.cursor-label { color: var(--ink); opacity: 0; transition: opacity 0.2s ease; font-size: 0.625rem; }
.cursor.is-play {
  width: 88px; height: 88px;
  margin: -44px 0 0 -44px;
  background: var(--bone);
  mix-blend-mode: normal;
}
.cursor.is-play .cursor-label { opacity: 1; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-frame { width: min(88vw, 1000px); }
  .hero-copy-right { top: calc(14vh + 26px); left: var(--pad); right: auto; text-align: left; }
  .feature, .feature--flip { grid-template-columns: 1fr; row-gap: 26px; }
  .feature--flip .feature-media { order: 0; }
  .feature--flip .feature-info { order: 1; text-align: left; }
  .feature--flip .feature-impact { margin-left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait-main { width: min(80vw, 460px); }
  .about-portrait-side { width: min(52vw, 300px); margin-top: -30px; }
  .plan-steps { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav { padding-block: 12px; }
  .nav-brand-sub { display: none; }
  .nav-brand-full { display: none; }
  .nav-brand-short { display: inline; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.625rem; letter-spacing: 0.14em; }
  .hero.has-pin { height: 260vh; }
  .hero-title { font-size: clamp(2.3rem, 10.5vw, 3.6rem); bottom: 8.5vh; }
  .hero-copy-left { top: 12vh; }
  .hero-copy-right { top: calc(12vh + 24px); }
  .hero-cta { bottom: 3vh; }
  .intro-flank-left { left: 50%; transform: translateX(-50%); top: 26%; }
  .intro-flank-right { right: 50%; transform: translateX(50%); top: auto; bottom: 26%; text-align: center; }
  .display { font-size: clamp(2.5rem, 11vw, 4.4rem); }
  .display-md { font-size: clamp(2rem, 8vw, 3.1rem); }
  .display-sm { font-size: clamp(1.7rem, 6.4vw, 2.6rem); }
  .feature-play { width: 60px; height: 60px; right: 14px; bottom: 14px; }
  .lighttable { height: auto; padding-inline: var(--pad); }
  .lt-item { position: static; width: min(82vw, 500px); margin-bottom: 56px; }
  .lt-item:nth-child(even) { margin-left: auto; }
  .contact-email { font-size: 1.05rem; }
  .film-head { padding-block: 14px; }
  .film-stage { padding-inline: 0; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .intro-hint-line { animation: none; transform: scaleX(1); }
  .intro { display: none; }
}
