/* Hero — minimal type, range-left, modern.
   System: one accent (Frozen Lake), one display weight (500), one mono label size. */

:root {
  --ink: #0A0A0A;            /* Near-black — primary bg */
  --ink-deep: #000000;       /* True black — deeper layer */
  --bg: #0A0A0A;
  --linen: #FFFFFF;          /* White — light bg / inverse / text */
  --ivory: #FFFFFF;          /* legacy alias → White */
  --slate: #FF5E5B;          /* Vibrant Coral — primary accent */
  --frozen: #FF5E5B;         /* legacy alias → Coral */
  --periwinkle: #A8A6A2;     /* Warm Grey — muted text (no pink) */
  --pale: #A8A6A2;           /* Warm Grey — neutral / mono labels */
  --grey: #A8A6A2;           /* legacy alias → Warm Grey */
  --line: rgba(255, 255, 255, 0.18);
  --line-light: rgba(10, 10, 10, 0.14);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --gutter: clamp(22px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  background: var(--ink);
  color: var(--linen);
  font-family: 'Geist', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle grain texture for premium feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.5) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

@media (hover: hover) and (pointer: fine) {
  body, body * { cursor: none; }
}

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

/* Mono label — single canonical size + tracking */
.mono, .label {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Universal punct reset — kept as a hook in case markup keeps .punct spans */
.punct { color: inherit; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2147483600;
  padding: 28px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  pointer-events: none;
  isolation: isolate;
  transition: opacity 380ms var(--ease), transform 380ms var(--ease);
}

body.in-films .nav {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

body.in-films .nav * { pointer-events: none; }

.nav > * { pointer-events: auto; }

.nav-logo {
  font-weight: 600;
  font-size: 26.25px;
  letter-spacing: -0.045em;
  color: #FFFFFF;
  line-height: 1;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.45);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-link {
  color: #FFFFFF;
  font-size: 10.8px;
  font-weight: 500;
  font-family: 'Geist', sans-serif;
  letter-spacing: 0.06em;
  text-transform: none;
  position: relative;
  padding: 0;
  line-height: 1;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0;
  height: 1px;
  background: var(--slate);
  transition: width 320ms var(--ease);
}

.nav-link:hover::after,
.nav-link:focus-visible::after { width: 100%; }

/* ============ CURSOR ============ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 280ms var(--ease), height 280ms var(--ease),
              background 220ms var(--ease);
  will-change: transform;
  box-shadow: 0 0 20px rgba(255, 94, 91, 0.5);
}

.cursor.is-film {
  width: 96px;
  height: 96px;
  background: rgba(255, 94, 91, 0.92);
  box-shadow: 0 8px 40px rgba(255, 94, 91, 0.45);
}

.cursor.is-link {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--slate);
  box-shadow: none;
}

.cursor-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--linen);
  opacity: 0;
  transition: opacity 220ms var(--ease);
  white-space: nowrap;
  font-weight: 500;
}

.cursor.is-close {
  width: 96px;
  height: 96px;
  background: var(--slate);
  box-shadow: 0 8px 40px rgba(255, 94, 91, 0.45);
}

.cursor.is-close .cursor-label {
  opacity: 1;
}

.cursor.is-film .cursor-label,
.cursor.is-close .cursor-label {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

/* ============ HERO ============ */
.intro {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: slideCycle 5s infinite;
}

.slide picture,
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* 5 slides × 1s each = 5s cycle */
.slide:nth-child(1)  { animation-delay: 0s; background: radial-gradient(ellipse at 30% 40%, #1a1212 0%, #000000 70%); }
.slide:nth-child(2)  { animation-delay: 1s; background: radial-gradient(ellipse at 70% 60%, #1c1414 0%, #000000 70%); }
.slide:nth-child(3)  { animation-delay: 2s; background: radial-gradient(ellipse at 50% 30%, #161212 0%, #000000 72%); }
.slide:nth-child(4)  { animation-delay: 3s; background: radial-gradient(ellipse at 25% 65%, #1f1414 0%, #000000 72%); }
.slide:nth-child(5)  { animation-delay: 4s; background: radial-gradient(ellipse at 80% 30%, #181414 0%, #000000 72%); }

@keyframes slideCycle {
  0%   { opacity: 0; }
  1%   { opacity: 1; }
  20%  { opacity: 1; }
  21.5%{ opacity: 0; }
  100% { opacity: 0; }
}

.slide-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0) 55%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.05) 28%, rgba(10,10,10,0) 52%, rgba(10,10,10,0.45) 78%, rgba(10,10,10,0.94) 100%);
}

.intro-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) 18vh;
  pointer-events: none;
  gap: 28px;
}

.intro-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pale);
  opacity: 0.85;
}

.intro-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--slate);
  display: inline-block;
}

.intro-meta .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  opacity: 1;
}

.intro-meta .live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate);
  animation: pulse 1.6s ease-in-out infinite;
}

.intro-title {
  font-size: clamp(40px, 6.4vw, 124px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.94;
  color: var(--linen);
  max-width: 1500px;
  text-wrap: balance;
}

.intro-title em {
  font-style: normal;
  color: var(--slate);
  font-weight: 500;
}

/* ============ BRAND BANNER (bottom of hero) ============ */
.brand-banner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  overflow: hidden;
}

.brand-banner-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%);
  font-family: 'Geist', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pale);
  white-space: nowrap;
  font-weight: 500;
}

.brand-banner-label .num {
  color: var(--slate);
  margin-left: 10px;
  opacity: 0.9;
}

.brand-banner-track-wrap {
  display: flex;
  padding-left: 220px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 200px, #000 260px, #000 94%, transparent);
}

.brand-banner-track {
  display: flex;
  gap: 0;
  padding-right: 28px;
  animation: scroll 80s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
  align-items: center;
}

.brand-banner:hover .brand-banner-track { animation-play-state: paused; }

/* Wordmark treatment — white-out logo feel.
   Each brand reads as its own logotype: heavy weight, tight tracking, all-caps,
   pure white, with a hairline divider between marks instead of bullet dots. */
.brand-banner-track span {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  height: 24px;
  transition: color 200ms var(--ease), letter-spacing 240ms var(--ease);
}

.brand-banner-track span:hover {
  color: var(--slate);
  letter-spacing: 0.04em;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* ============ REEL ============ */
.films {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 0;
  font-size: 0;
}

.film {
  position: relative;
  width: 100vw;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--ink-deep);
  margin-bottom: -3px;
  display: block;
  font-size: 0;
}

.film + .film {
  margin-top: -1px;
}

.film-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.film-poster picture,
.film-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.film-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0) 24%, rgba(10,10,10,0) 56%, rgba(10,10,10,0.85) 100%);
}

.film-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 800ms var(--ease);
}

.film-video.loaded { opacity: 1; }

/* Meta (top): index + brand + year */
.film-meta {
  position: absolute;
  top: calc(var(--gutter) + 56px);
  left: var(--gutter);
  right: var(--gutter);
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pale);
  pointer-events: none;
}

.film-meta .index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.film-meta .index::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--slate);
}

.film-meta .index .total {
  color: var(--pale);
  opacity: 0.5;
}

.film-meta .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.film-meta .tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate);
  box-shadow: 0 0 8px rgba(255, 94, 91, 0.7);
}

/* Bottom overlay — info banner (text always visible, button reveals on hover) */
/* Bottom overlay — info banner (compact, mobile-friendly) */
.film-overlay {
  position: absolute;
  left: var(--gutter);
  bottom: var(--gutter);
  right: var(--gutter);
  max-width: 560px;
  z-index: 3;
  padding: 24px 30px 26px;
  background: rgba(10, 10, 10, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  pointer-events: none;
  overflow: hidden;
}

.film-overlay-text {
  min-width: 0;
  display: grid;
  row-gap: 12px;
}

.film-credits {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.film-credits .film-brand-name { color: var(--linen); }

.film-credits .film-credits-divider {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey);
  opacity: 0.7;
  flex-shrink: 0;
}

.film-credits .film-duration {
  color: var(--slate);
}

.film-title {
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
  color: var(--linen);
  text-wrap: balance;
  margin: 0;
}

.film-blurb {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 680px;
  text-wrap: pretty;
  margin-top: 6px;
}

.film-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: auto;
  flex-shrink: 0;
  align-self: start;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 380ms var(--ease), transform 460ms var(--ease-out-expo);
}

.film:hover .film-actions,
.film.is-active .film-actions {
  opacity: 1;
  transform: translateX(0);
}

/* Subtle hairline that grows in from the left on hover — visual anchor */
.film-overlay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--slate);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 540ms var(--ease-out-expo);
}

.film:hover .film-overlay::before,
.film.is-active .film-overlay::before {
  transform: scaleY(1);
}

.film-watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 20px;
  background: var(--slate);
  color: var(--linen);
  border: 0;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.film-watch::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.film-watch:hover {
  background: var(--linen);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(255, 94, 91, 0.28);
}

.film-spec {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.film-spec span { display: inline-flex; align-items: center; gap: 8px; }
.film-spec span::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.film-spec span:first-child::before { display: none; }

/* ============ STUDIO ============ */
.studio {
  background: var(--ink);
  padding: 18vh var(--gutter) 16vh;
  position: relative;
}

.studio-inner {
  max-width: 1280px;
  display: grid;
  gap: 12px;
}

.studio-line {
  font-size: clamp(24px, 2.6vw, 46px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--linen);
  text-wrap: pretty;
  max-width: 1180px;
}

.studio-line.dim {
  color: var(--periwinkle);
  opacity: 0.7;
}

.studio-line.lead {
  font-size: clamp(48px, 6.4vw, 116px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin-bottom: 40px;
  color: var(--linen);
}

.studio-line.lead em {
  font-style: normal;
  color: var(--slate);
}

.studio-line.manifesto {
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.32;
  color: var(--periwinkle);
  max-width: 1180px;
  text-wrap: pretty;
}

.studio-line.body {
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.32;
  color: var(--periwinkle);
  max-width: 1180px;
  text-wrap: pretty;
}

.studio-line.body .named {
  color: var(--linen);
  font-weight: 500;
  border-bottom: 1px solid var(--slate);
  padding-bottom: 1px;
}

.studio-line.body em .named {
  color: var(--slate);
}

.studio-line em {
  font-style: normal;
  color: var(--slate);
  font-weight: 500;
}

.studio-break { height: 32px; }
.studio-break.big { height: 64px; }

/* Founder block — text + portrait */
.founder {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}

.founder > .founder-text { order: 1; }
.founder > .founder-portrait { order: 2; }

.founder-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.founder-text .studio-line.body {
  margin: 0;
  text-align: left;
}

.founder-portrait {
  margin: 0;
  position: relative;
}

.founder-portrait picture,
.founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 600ms var(--ease);
}

.founder:hover .founder-portrait img {
  filter: grayscale(0%) contrast(1);
}

.founder-portrait figcaption {
  margin-top: 14px;
  font-family: 'Geist', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pale);
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-portrait figcaption::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--slate);
}

.founder .studio-line.body {
  margin: 0;
}

@media (max-width: 900px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-portrait {
    max-width: 240px;
  }
}

.say-hi {
  display: inline-block;
  font-size: clamp(64px, 11vw, 220px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  color: var(--slate);
  position: relative;
}

.say-hi em {
  font-style: normal;
  color: var(--periwinkle);
}

.say-hi::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6px;
  width: 100%;
  height: 2px;
  background: var(--slate);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms var(--ease-out-expo);
}

.say-hi:hover::after { transform: scaleX(1); }

/* ============ WORDS (testimonials) ============ */
.words {
  background: var(--ink);
  color: var(--linen);
  padding: 18vh var(--gutter);
}

.words-header {
  max-width: 1280px;
  margin-bottom: 14vh;
  display: grid;
  gap: 16px;
}

.words-title {
  font-size: clamp(56px, 9vw, 184px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--linen);
}

.words-sub {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--pale);
  max-width: 720px;
  line-height: 1.45;
}

.words-sub em {
  font-style: normal;
  color: var(--slate);
}

.words-list {
  max-width: 1280px;
  display: grid;
  gap: 10vh;
}

.word {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1180px;
}

.word-portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.word-portrait picture,
.word-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.05) brightness(0.96);
  transition: filter 600ms var(--ease);
}

.word:hover .word-portrait img {
  filter: grayscale(0%) contrast(1) brightness(1);
}

.word-body {
  padding-top: 18px;
}

.word-text {
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--linen);
  text-wrap: balance;
  margin-bottom: 28px;
}

.word-text em {
  font-style: normal;
  color: var(--slate);
  font-weight: 500;
}

.word-attr {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  font-family: 'Geist', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.word-attr .name { color: var(--linen); font-weight: 500; }
.word-attr .role { color: var(--pale); opacity: 0.7; }
.word-attr .role::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--slate);
  margin-right: 14px;
  vertical-align: middle;
}

@media (max-width: 700px) {
  .word {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .word-portrait { width: 88px; height: 88px; }
  .word-body { padding-top: 0; }
}
.quotes {
  background: var(--linen);
  color: var(--ink);
  padding: 18vh var(--gutter);
}

.quotes-inner {
  max-width: 1320px;
  display: grid;
  gap: 12vh;
}

.quote {
  max-width: 1180px;
  display: grid;
  gap: 32px;
}

.quote-num {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-num::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--slate);
}

.quote-text {
  font-size: clamp(26px, 3.1vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}

.quote-text em {
  font-style: normal;
  color: var(--slate);
  font-weight: 500;
}

.quote-attr {
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-attr .role {
  color: rgba(10, 10, 10, 0.4);
}

/* ============ RECOGNITION ============ */
.recognition {
  background: var(--ink);
  padding: 18vh var(--gutter) 18vh;
}

.recognition-inner {
  max-width: 1320px;
}

.recognition-lead {
  font-size: clamp(36px, 5.4vw, 96px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--linen);
  margin-bottom: 56px;
  text-wrap: balance;
  max-width: 1200px;
}

.recognition-lead em {
  font-style: normal;
  color: var(--slate);
}

.recognition-statement {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.42;
  color: var(--periwinkle);
  text-wrap: pretty;
  max-width: 1280px;
}

.recognition-statement .org {
  color: var(--linen);
  font-weight: 500;
}

.recognition-statement .org::after {
  content: ' · ';
  color: var(--slate);
}

.recognition-statement .org:last-of-type::after { display: none; }

.recognition-foot {
  margin-top: 56px;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pale);
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.recognition-foot::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--slate);
}

/* ============ SECTION MARKS (W system) ============ */
.section-mark {
  background: var(--ink);
  padding: 72px var(--gutter) 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.section-mark.light {
  background: var(--linen);
  border-top-color: var(--line-light);
}

.section-mark .w-letter {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.04em;
  color: var(--slate);
  text-transform: none;
  line-height: 1;
  position: relative;
  top: 2px;
}

.section-mark .w-rest {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pale);
  white-space: nowrap;
}

.section-mark.light .w-rest { color: rgba(10, 10, 10, 0.55); }

.section-mark .w-rest em {
  font-style: normal;
  color: var(--periwinkle);
  margin-left: 8px;
}

.section-mark.light .w-rest em { color: rgba(10, 10, 10, 0.4); }

.section-mark .w-mark-left {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}

.section-mark .w-counter {
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pale);
  opacity: 0.5;
}

.section-mark.light .w-counter { color: rgba(10, 10, 10, 0.4); }

/* ============ WHERE ============ */
.where {
  background: var(--ink);
  padding: 16vh var(--gutter) 14vh;
  position: relative;
  overflow: hidden;
}

.where::before {
  content: '';
  position: absolute;
  top: 40%; left: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(255, 94, 91, 0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}

.where-inner {
  max-width: 1500px;
  position: relative;
  z-index: 1;
}

.where-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pale);
  opacity: 0.6;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.where-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--slate);
}

.where-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  font-family: 'Geist', sans-serif;
}

.where-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.where-meta-item .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pale);
  opacity: 0.55;
}

.where-meta-item .v {
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--linen);
  font-family: 'Geist', sans-serif;
  font-weight: 400;
}

.where-meta-item .v a:hover { color: var(--slate); }

/* ============ FOOTER ============ */
.ride-banner {
  margin: 0;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.ride-banner picture,
.ride-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ride-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.32) 100%);
  pointer-events: none;
}

.footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--line);
  padding: 40px var(--gutter) 28px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pale);
  opacity: 0.7;
}

.footer-row .footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--linen);
  font-weight: 500;
}

.footer-row .footer-mark::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate);
}

.footer-easter {
  font-family: 'Geist', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pale);
  opacity: 0.55;
}

.footer a {
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease);
}

.footer a:hover { color: var(--slate); }

.footer-social {
  display: flex;
  gap: 22px;
}

/* ============ FADE-IN ============ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.modal.is-open { display: flex; }

.modal-frame {
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: 28px; right: 32px;
  background: transparent;
  color: var(--linen);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 18px;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

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

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
  html { scroll-snap-type: none; }
}

/* ============ MOBILE ============ */
@media (max-width: 700px) {
  /* Film overlays — compact, full-width, padded */
  .film-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px 16px;
    max-width: none;
    border-radius: 3px;
  }
  .film-credits {
    font-size: 10px;
    gap: 8px;
    letter-spacing: 0.16em;
  }
  .film-credits .film-credits-divider {
    width: 3px;
    height: 3px;
  }
  .film-title {
    font-size: clamp(20px, 5vw, 28px);
    letter-spacing: -0.035em;
  }
  .film-blurb {
    font-size: 12px;
    line-height: 1.45;
  }
  .film-overlay-text { row-gap: 8px; }
}

@media (max-width: 900px) {
  .nav { padding: 16px var(--gutter); }
  .nav-links { gap: 18px; }

  .intro-overlay { padding-bottom: 22vh; }

  .film-overlay { opacity: 1; transform: none; }
  .film-index { top: 60px; }

  .studio { padding: 16vh var(--gutter) 14vh; }
  .studio-line.founder { margin-top: 64px; }
  .say-hi { margin-top: 56px; }

  .quotes { padding: 14vh var(--gutter); }
  .quotes-inner { gap: 10vh; }

  .recognition { padding: 14vh var(--gutter); }

  .footer-row {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
