/* ============================================
   ¡MUCHO! · Full Site v6
   ============================================ */

:root {
  --bg: #0a1f22;
  --bg-alt: #0d2a1f;
  --bg-card: #133227;
  --bg-elevated: #1a4031;
  --green: #1f5037;
  --green-deep: #133b29;
  --green-light: #2d6b4e;
  --teal: #154a4a;
  --teal-light: #1a6b65;
  --red: #c94030;
  --red-warm: #9b2c23;
  --blue-teal: #163e4f;
  --border: rgba(255, 255, 255, 0.08);
  --border-color: rgba(201, 149, 44, 0.18);
  --gold: #d4a23a;
  --gold-bright: #ecc05a;
  --gold-dim: rgba(212, 162, 58, 0.14);
  --white: #f1ede5;
  --white-dim: #a8a89f;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Anton', 'Space Grotesk', system-ui, sans-serif;
  --font-section: 'Staatliches', 'Anton', system-ui, sans-serif;
  --retro-red: #e23e2a;
  --retro-orange: #f06a2a;
  --retro-yellow: #f2c14e;
  --retro-blue: #2e6cb8;
  --retro-cyan: #3db5c8;
  --retro-magenta: #c63673;
  --retro-green: #2a7c47;
  --cream: #f0e9d6;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 640px; }

/* ====== UTILITY ====== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--bg);
  padding: 0.5rem 1rem; z-index: 100;
  font-family: var(--font-body); font-size: 0.85rem;
  text-decoration: none; border-radius: 3px;
}
.skip-link:focus { top: 0.5rem; }

.heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 2rem;
}
.heading--center { text-align: center; }
.heading__kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.divider {
  border: none; height: 1px;
  background: var(--border);
  margin: 0;
  max-width: 68rem;
  margin: 0 auto;
}

/* ====== NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 1.75rem;
  background: rgba(6, 10, 11, 0.78);
  backdrop-filter: blur(20px) saturate(1.2); -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, padding 0.3s;
}
.nav--scrolled { padding: 0.65rem 2rem; background: rgba(10, 31, 34, 0.92); }
.nav__logo {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  letter-spacing: -0.01em; color: var(--white); text-decoration: none;
  display: inline-block;
  padding: 0.35rem 0.55rem;
  margin: -0.35rem -0.55rem;
  transition: filter 0.18s ease, color 0.18s ease, text-shadow 0.18s ease;
}
.nav__logo:hover { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.02em; text-decoration: none;
  color: var(--white-dim); transition: color 0.2s;
}
.nav__link:hover { color: var(--white); }
.nav__link--active { color: var(--gold); }

/* ====== LANDING (video bg + vertical nav) ====== */
.body--landing {
  overflow-x: hidden;
}

.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 4rem 2rem 8.75rem;
}

.landing__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background: #060f10;
}
.landing__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: saturate(1.12) contrast(1.08) brightness(0.94);
}

.landing__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      rgba(0, 0, 0, 0.02) 1px 2px,
      transparent 2px 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.012) 0 1px,
      rgba(0, 0, 0, 0.012) 1px 2px,
      transparent 2px 3px
    );
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.landing__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(18, 22, 24, 0.1) 0%, rgba(6, 9, 10, 0.68) 84%),
    linear-gradient(180deg, rgba(6, 9, 10, 0.44) 0%, rgba(6, 9, 10, 0.18) 38%, rgba(6, 9, 10, 0.8) 100%);
  pointer-events: none;
}

.landing__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  max-width: 40rem;
  padding-bottom: 2.75rem;
}

.landing__footer {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: min(calc(100% - 2rem), 42rem);
  text-align: center;
}

.landing__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  letter-spacing: 0;
  color: #f7d67a;
  line-height: 0.9;
  text-shadow:
    0 2px 0 rgba(86, 50, 12, 0.54),
    0 9px 22px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(222, 176, 83, 0.08),
    0 0 34px rgba(179, 101, 33, 0.05);
  filter: drop-shadow(0 0 12px rgba(212, 158, 66, 0.12)) saturate(1.22);
  white-space: nowrap;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.landing__title::before {
  content: "";
  position: absolute;
  inset: 18% -5% 6%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 44%, rgba(241, 221, 162, 0.13) 0%, rgba(201, 149, 59, 0.06) 36%, rgba(151, 89, 31, 0.025) 62%, transparent 78%),
    radial-gradient(circle at 50% 58%, rgba(162, 82, 27, 0.04) 0%, transparent 70%);
  filter: blur(16px);
  opacity: 0.68;
  pointer-events: none;
}

.landing__title span {
  display: inline-block;
  color: #ffe7a3;
  background: linear-gradient(180deg, #fce8a8 0%, #dca74a 38%, #c0711b 70%, #8a4410 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 2px rgba(255, 238, 188, 0.8),
    0 0 7px rgba(235, 188, 92, 0.6),
    0 0 16px rgba(207, 126, 44, 0.38),
    0 0 30px rgba(158, 82, 28, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.42);
  filter: saturate(1.18);
  animation: neon-flicker-a 6.8s linear infinite;
  animation-delay: var(--flicker-delay, 0s);
  will-change: opacity, text-shadow, transform, filter;
  transition: transform 180ms ease, text-shadow 180ms ease, filter 180ms ease;
  transform-origin: 50% 78%;
  margin-right: 0.035em;
}
.landing__title span:last-child { margin-right: 0; }

.landing__title .flicker-a { animation-name: neon-flicker-a; }
.landing__title .flicker-b { animation-name: neon-flicker-b; }
.landing__title .flicker-c { animation-name: neon-flicker-c; }
.landing__title .flicker-d { animation-name: neon-flicker-d; }
.landing__title .flicker-e { animation-name: neon-flicker-e; }

.landing__title span:nth-child(1),
.landing__title span:last-child {
  transform: translateY(-0.02em) scale(0.94);
}

.landing__title:hover span,
.landing__title:focus-within span {
  animation-play-state: running;
}

.landing__title span:hover {
  transform: translateY(-0.05em) scale(1.08);
  filter: brightness(1.12) saturate(1.3);
  text-shadow:
    0 0 4px rgba(252, 238, 194, 0.92),
    0 0 12px rgba(234, 196, 120, 0.72),
    0 0 22px rgba(203, 128, 50, 0.44),
    0 0 38px rgba(148, 78, 30, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.44);
}

@keyframes neon-flicker-a {
  0%, 18%, 22%, 24%, 53%, 100% {
    opacity: 1;
    filter: brightness(1) saturate(1.18);
    text-shadow:
      0 0 2px rgba(255, 238, 188, 0.8),
      0 0 7px rgba(235, 188, 92, 0.6),
      0 0 16px rgba(207, 126, 44, 0.38),
      0 0 30px rgba(158, 82, 28, 0.22),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }

  19% {
    opacity: 0.76;
    filter: brightness(0.88);
  }

  20% {
    opacity: 0.58;
    filter: brightness(0.76);
    text-shadow:
      0 0 1px rgba(231, 212, 166, 0.42),
      0 0 3px rgba(194, 150, 72, 0.22),
      0 0 7px rgba(156, 94, 36, 0.1),
      0 5px 12px rgba(0, 0, 0, 0.3);
  }

  21% {
    opacity: 0.9;
    filter: brightness(1.01);
    text-shadow:
      0 0 3px rgba(248, 238, 206, 0.84),
      0 0 8px rgba(229, 189, 106, 0.58),
      0 0 17px rgba(197, 126, 53, 0.34),
      0 0 30px rgba(145, 79, 31, 0.16),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }

  23% {
    opacity: 0.66;
    filter: brightness(0.82);
    text-shadow:
      0 0 1px rgba(231, 212, 166, 0.36),
      0 0 4px rgba(194, 150, 72, 0.2),
      0 0 9px rgba(156, 94, 36, 0.1),
      0 6px 14px rgba(0, 0, 0, 0.34);
  }

  54% {
    opacity: 0.74;
    filter: brightness(0.88);
    text-shadow:
      0 0 2px rgba(238, 220, 174, 0.5),
      0 0 5px rgba(205, 162, 82, 0.28),
      0 0 10px rgba(169, 103, 42, 0.14),
      0 6px 16px rgba(0, 0, 0, 0.36);
  }

  55% {
    opacity: 0.92;
    filter: brightness(1.02);
    text-shadow:
      0 0 3px rgba(248, 238, 206, 0.86),
      0 0 8px rgba(229, 189, 106, 0.6),
      0 0 18px rgba(197, 126, 53, 0.36),
      0 0 32px rgba(145, 79, 31, 0.18),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }
}

@keyframes neon-flicker-b {
  0%, 20%, 24.5%, 27%, 56%, 100% {
    opacity: 1;
    filter: brightness(1) saturate(1.18);
    text-shadow:
      0 0 2px rgba(255, 238, 188, 0.8),
      0 0 7px rgba(235, 188, 92, 0.6),
      0 0 16px rgba(207, 126, 44, 0.38),
      0 0 30px rgba(158, 82, 28, 0.22),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }

  21.15% {
    opacity: 0.8;
    filter: brightness(0.89);
  }

  21.8% {
    opacity: 0.56;
    filter: brightness(0.74);
  }

  22.32% {
    opacity: 0.91;
    filter: brightness(1.03);
    text-shadow:
      0 0 3px rgba(248, 238, 206, 0.82),
      0 0 8px rgba(229, 189, 106, 0.56),
      0 0 17px rgba(197, 126, 53, 0.34),
      0 0 30px rgba(145, 79, 31, 0.16),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }

  23.18% {
    opacity: 0.68;
    filter: brightness(0.83);
  }

  23.92% {
    opacity: 0.93;
    filter: brightness(1.04);
  }

  57.1% {
    opacity: 0.74;
    filter: brightness(0.87);
  }

  58.2% {
    opacity: 0.6;
    filter: brightness(0.77);
  }

  59.35% {
    opacity: 0.92;
    filter: brightness(1.03);
  }
}

@keyframes neon-flicker-c {
  0%, 15%, 18.4%, 22.2%, 51%, 100% {
    opacity: 1;
    filter: brightness(1) saturate(1.18);
    text-shadow:
      0 0 2px rgba(255, 238, 188, 0.8),
      0 0 7px rgba(235, 188, 92, 0.6),
      0 0 16px rgba(207, 126, 44, 0.38),
      0 0 30px rgba(158, 82, 28, 0.22),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }

  15.7% {
    opacity: 0.82;
    filter: brightness(0.9);
  }

  16.08% {
    opacity: 0.66;
    filter: brightness(0.82);
  }

  16.42% {
    opacity: 0.88;
    filter: brightness(1.01);
  }

  17.45% {
    opacity: 0.58;
    filter: brightness(0.76);
  }

  18.02% {
    opacity: 0.92;
    filter: brightness(1.03);
  }

  52.4% {
    opacity: 0.76;
    filter: brightness(0.88);
  }

  53.9% {
    opacity: 0.63;
    filter: brightness(0.79);
  }

  54.85% {
    opacity: 0.91;
    filter: brightness(1.02);
  }
}

@keyframes neon-flicker-d {
  0%, 23%, 27.2%, 30.8%, 60%, 100% {
    opacity: 1;
    filter: brightness(1) saturate(1.18);
    text-shadow:
      0 0 2px rgba(255, 238, 188, 0.8),
      0 0 7px rgba(235, 188, 92, 0.6),
      0 0 16px rgba(207, 126, 44, 0.38),
      0 0 30px rgba(158, 82, 28, 0.22),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }

  24.25% {
    opacity: 0.79;
    filter: brightness(0.9);
  }

  25.1% {
    opacity: 0.55;
    filter: brightness(0.74);
  }

  25.9% {
    opacity: 0.9;
    filter: brightness(1.02);
  }

  28.6% {
    opacity: 0.7;
    filter: brightness(0.84);
  }

  29.75% {
    opacity: 0.94;
    filter: brightness(1.04);
  }

  61.35% {
    opacity: 0.75;
    filter: brightness(0.88);
  }

  62.9% {
    opacity: 0.62;
    filter: brightness(0.8);
  }

  64.05% {
    opacity: 0.92;
    filter: brightness(1.03);
  }
}

@keyframes neon-flicker-e {
  0%, 26%, 30.6%, 33.2%, 64%, 100% {
    opacity: 1;
    filter: brightness(1) saturate(1.18);
    text-shadow:
      0 0 2px rgba(255, 238, 188, 0.8),
      0 0 7px rgba(235, 188, 92, 0.6),
      0 0 16px rgba(207, 126, 44, 0.38),
      0 0 30px rgba(158, 82, 28, 0.22),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }

  27.35% {
    opacity: 0.81;
    filter: brightness(0.91);
  }

  28.42% {
    opacity: 0.6;
    filter: brightness(0.78);
  }

  28.88% {
    opacity: 0.93;
    filter: brightness(1.03);
    text-shadow:
      0 0 3px rgba(248, 238, 206, 0.8),
      0 0 8px rgba(229, 189, 106, 0.54),
      0 0 17px rgba(197, 126, 53, 0.32),
      0 0 30px rgba(145, 79, 31, 0.16),
      0 8px 20px rgba(0, 0, 0, 0.42);
  }

  31.4% {
    opacity: 0.72;
    filter: brightness(0.85);
  }

  32.55% {
    opacity: 0.95;
    filter: brightness(1.04);
  }

  65.2% {
    opacity: 0.76;
    filter: brightness(0.88);
  }

  66.6% {
    opacity: 0.64;
    filter: brightness(0.8);
  }

  67.85% {
    opacity: 0.93;
    filter: brightness(1.03);
  }
}
.landing__tag {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  letter-spacing: 0.32em;
  color: rgba(255, 247, 227, 0.96);
  text-transform: uppercase;
  margin-top: 0.6rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.landing__teaser {
  margin-top: 1rem;
  font-family: 'Jost', 'Futura', sans-serif;
  font-size: clamp(0.7rem, 1.3vw, 0.82rem);
  letter-spacing: 0.56em;
  text-transform: uppercase;
  color: rgba(247, 214, 122, 0.6);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.landing__trailer-cue {
  position: absolute;
  left: 50%;
  bottom: 5.4rem;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 247, 227, 0.55);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  transition: color 0.2s ease, transform 0.25s ease, opacity 0.3s ease;
  opacity: 0.9;
}
.landing__trailer-cue:hover {
  color: #f7d67a;
  transform: translateX(-50%) translateY(3px);
}
.landing__trailer-cue-label {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}
.landing__trailer-cue-arrow {
  animation: trailer-cue-bob 2.4s ease-in-out infinite;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}
@keyframes trailer-cue-bob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(5px); opacity: 1; }
}
body.is-scrolled .landing__trailer-cue {
  opacity: 0;
  pointer-events: none;
}

.landing__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.landing__link {
  font-family: 'Jost', 'Futura', 'Avant Garde', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.3vw, 2.1rem);
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  transition: color 0.25s ease, letter-spacing 0.3s ease, transform 0.3s ease;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
}
.landing__link:hover,
.landing__link:focus-visible {
  color: var(--gold);
  letter-spacing: 0.12em;
  transform: translateY(-1px);
}

.landing__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--white-dim);
  text-align: center;
  width: 100%;
}
.landing__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.95rem;
  height: 1.95rem;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(240, 233, 214, 0.16);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.18s ease, background 0.2s ease;
}
.landing__social:hover {
  color: var(--gold);
  border-color: rgba(212, 162, 58, 0.4);
  background: rgba(212, 162, 58, 0.08);
  transform: translateY(-1px);
}
.landing__social svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
}
.landing__social--facebook svg {
  fill: currentColor;
  stroke: none;
}

.landing__legal {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  opacity: 0.7;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  width: 100%;
}

@media (max-width: 640px) {
  .landing { padding: 3rem 1.5rem 5.5rem; }
  .landing__content { gap: 2rem; }
  .landing__meta { flex-direction: column; gap: 0.25rem; }
  .landing__meta span { display: none; }
  .landing__footer { bottom: 0.9rem; gap: 0.35rem; }
}

/* ====== HERO ====== */
.hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(212, 162, 58, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0a1f22 0%, #0d2a1f 60%, #133b29 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(212,162,58,0.025) 120px 121px);
  pointer-events: none;
  opacity: 0.7;
}
.hero__content { padding: 5rem 2rem 3rem; }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 15vw, 10rem);
  letter-spacing: 0.03em; color: var(--gold); line-height: 0.9;
  text-shadow: 0 3px 40px rgba(201,149,44,0.12);
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.2vw, 1.3rem);
  letter-spacing: 0.25em; color: var(--white); margin-top: 0.6rem;
  text-transform: uppercase;
}
.hero__scroll {
  display: block; margin: 2rem auto 0; width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.35;
  animation: pulse-scroll 2s ease-in-out infinite;
}
@keyframes pulse-scroll {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.4; }
}

/* ====== TRAILER ====== */
.trailer {
  padding: 4rem 0 3rem;
  background: var(--bg);
}
.trailer__embed {
  aspect-ratio: 16 / 9; max-width: 860px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
}
.trailer__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: var(--white-dim);
}
.trailer__placeholder svg { opacity: 0.2; }
.trailer__placeholder p {
  font-family: var(--font-heading); font-size: 0.85rem;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.trailer__cta {
  text-align: center; margin-top: 1rem;
  font-size: 0.85rem;
}
.trailer__cta a {
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(201,149,44,0.3);
  transition: border-color 0.25s;
}
.trailer__cta a:hover { border-color: var(--gold); }

/* ====== ABOUT ====== */
.about { padding: 5rem 0; position: relative; }
.about__bg { display: none; }
.about__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem; align-items: center;
}
.about__image-wrap {
  border-radius: 2px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.about__image-wrap img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3;
}
.about__text p {
  font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.15rem; color: var(--white);
}
.about__text p:first-child {
  font-size: 1.35rem; line-height: 1.55; font-weight: 500; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 1.5rem;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text em { color: var(--gold); font-style: italic; }

/* ====== OUR STORY ====== */
.story { padding: 5rem 0; background: transparent; }
.story__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.story__text p {
  font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.1rem; color: var(--white);
}
.story__text p:first-child {
  font-size: 1.3rem; font-style: italic; color: var(--gold-bright);
  line-height: 1.5; margin-bottom: 1.5rem;
}
.story__text p:last-child { margin-bottom: 0; }
.story__text em { color: var(--gold); font-style: italic; }
.story__image { border-radius: 2px; overflow: hidden; }
.story__placeholder {
  aspect-ratio: 4 / 3;
  background: var(--bg-card); border: 1px dashed var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim); font-size: 0.85rem;
  font-style: italic;
}

/* ====== TEAM ====== */
.team {
  padding: 5rem 0;
}
.team__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 0.5rem;
}
.team__card {
  background: transparent; border: 0;
  padding: 0; text-align: left;
}
.team__photo {
  width: 100%; aspect-ratio: 4 / 5; border-radius: 2px;
  margin: 0 0 1.25rem; overflow: hidden;
  background: var(--bg-card);
  filter: saturate(0.92);
  transition: filter 0.4s ease;
}
.team__photo img { width: 100%; height: 100%; object-fit: cover; }
.team__card:hover .team__photo { filter: saturate(1.05); }
.team__photo--placeholder {
  background: var(--bg-elevated);
  display: flex; align-items: center; justify-content: center;
}
.team__photo--placeholder span {
  font-family: var(--font-heading); font-size: 3rem; color: var(--gold); opacity: 0.35;
  font-weight: 700;
}
.team__name {
  font-family: var(--font-heading); font-size: 1.35rem;
  letter-spacing: -0.01em; color: var(--white); font-weight: 600;
}
.team__role {
  font-size: 0.72rem; color: var(--gold); margin: 0.3rem 0 0.85rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
}
.team__bio {
  font-size: 0.9rem; line-height: 1.65; color: var(--white-dim);
}

/* ====== CAST ====== */
.cast {
  padding: 3rem 0 5rem;
}
.cast__grid {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; margin-top: 0.5rem;
}
.cast__card {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; padding: 1.25rem 1.5rem;
  max-width: 480px; width: 100%;
}
.cast__photo {
  width: 72px; height: 72px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--border-color);
}
.cast__photo img { width: 100%; height: 100%; object-fit: cover; }
.cast__photo--placeholder {
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
}
.cast__photo--placeholder span {
  font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); opacity: 0.5;
}
.cast__name {
  font-family: var(--font-heading); font-size: 1.1rem; color: var(--white);
}
.cast__desc {
  font-size: 0.85rem; line-height: 1.6; color: var(--white-dim); margin-top: 0.2rem;
}

/* ====== GALLERY ====== */
.gallery { padding: 4rem 0 6rem; }

.gallery__grid {
  column-count: 3;
  column-gap: 0.9rem;
  margin-top: 2rem;
}

.gallery__item {
  break-inside: avoid;
  margin: 0 0 0.9rem;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #0a0d0b;
  cursor: zoom-in;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.85) brightness(0.95);
}

.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,10,9,0.55) 100%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}

.gallery__item:hover img {
  transform: scale(1.025);
  filter: saturate(1) brightness(1);
}
.gallery__item:hover::after { opacity: 1; }

/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: clamp(0.9rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 226, 154, 0.08), transparent 26rem),
    rgba(4, 6, 7, 0.18);
  backdrop-filter: blur(20px) saturate(0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.34s ease, background 0.34s ease, backdrop-filter 0.34s ease;
}
.lightbox-open,
.lightbox-open body {
  overflow: hidden;
}
.body--viewer-open > *:not(.lightbox) {
  filter: blur(10px) saturate(0.75) brightness(0.44);
  transition: filter 0.34s ease;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 228, 163, 0.1), transparent 24rem),
    rgba(4, 6, 7, 0.62);
}

.lightbox__shell {
  position: relative;
  width: min(94vw, 72rem);
  max-height: min(92vh, 56rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 245, 217, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(24, 30, 31, 0.8), rgba(11, 14, 15, 0.58));
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.34s ease, opacity 0.34s ease;
}
.lightbox__shell::before {
  content: "";
  position: absolute;
  inset: -16% -8% auto;
  height: 16rem;
  background: radial-gradient(circle at top center, rgba(247, 206, 123, 0.14), transparent 62%);
  pointer-events: none;
}
.lightbox__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.03));
  border-radius: inherit;
  pointer-events: none;
}
.lightbox.is-open .lightbox__shell { transform: translateY(0) scale(1); }

.lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 0.1rem 3rem 0 0.35rem;
}
.lightbox__meta {
  min-width: 0;
}
.lightbox__eyebrow {
  margin: 0 0 0.25rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.44);
}
.lightbox__count {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.58);
}

.lightbox__viewport {
  position: relative;
  min-height: 0;
}
.lightbox__stage {
  min-height: 0;
  overflow: auto;
  padding: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at top center, rgba(255, 220, 142, 0.08), transparent 48%),
    rgba(9, 11, 12, 0.62);
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 42px rgba(0, 0, 0, 0.28);
}
.lightbox__img {
  display: block;
  width: min(100%, 82rem);
  max-height: min(68vh, 42rem);
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.46);
}
.lightbox__stage:focus-visible {
  outline: 1px solid rgba(245, 204, 115, 0.48);
  outline-offset: -1px;
}

.lightbox__close,
.lightbox__nav,
.lightbox__thumb {
  border: 0;
  cursor: pointer;
}
.lightbox__close,
.lightbox__nav {
  background: rgba(255, 245, 217, 0.08);
  color: var(--gold);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 213, 127, 0.14);
  color: #f7d986;
}

.lightbox__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  line-height: 1;
  border-radius: 999px;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  opacity: 0.92;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
  z-index: 2;
}
.lightbox__nav--prev { left: 0.9rem; }
.lightbox__nav--next { right: 0.9rem; }
.lightbox__nav:disabled {
  opacity: 0.28;
}

.lightbox__thumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.1rem 0 0.2rem;
}
.lightbox__thumb {
  flex: 0 0 4.3rem;
  width: 4.3rem;
  height: 2.7rem;
  padding: 0;
  background: rgba(255, 245, 217, 0.08);
  border: 1px solid rgba(255, 245, 217, 0.12);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0.58;
  transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox__thumb:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.lightbox__thumb.is-active {
  opacity: 1;
  border-color: rgba(245, 204, 115, 0.72);
  box-shadow:
    0 0 0 1px rgba(245, 204, 115, 0.16),
    0 10px 20px rgba(0, 0, 0, 0.18);
}

@media (max-width: 720px) {
  .lightbox {
    padding: 0.8rem;
  }
  .lightbox__shell {
    width: 100%;
    max-height: 92vh;
    padding: 0.75rem;
    gap: 0.75rem;
    border-radius: 22px;
  }
  .lightbox__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding-right: 2.2rem;
  }
  .lightbox__nav {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.35rem;
  }
  .lightbox__nav--prev { left: 0.45rem; }
  .lightbox__nav--next { right: 0.45rem; }
  .lightbox__stage {
    border-radius: 18px;
  }
  .lightbox__img {
    max-height: 58vh;
    border-radius: 16px;
  }
  .lightbox__thumb {
    flex-basis: 3.2rem;
    width: 3.2rem;
    height: 2.15rem;
    border-radius: 10px;
  }
}

/* ====== UPDATES ====== */
.updates { padding: 5rem 0; }
.update {
  background: transparent; border: 0;
  border-left: 2px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.5rem;
  box-shadow: none; border-radius: 0;
}
.update time {
  display: block;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase;
}
.update p {
  font-size: 1.05rem; line-height: 1.7; margin-top: 0.65rem; color: var(--white);
}

/* ====== SUPPORT ====== */
.support { padding: 5rem 0; text-align: center; }
.support__sub {
  font-size: 1.1rem; color: var(--white); margin-bottom: 2rem;
  max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.support__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.support__btn {
  display: inline-block; padding: 0.85rem 1.75rem;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em; text-decoration: none;
  background: var(--gold); color: #12201d;
  border-radius: 2px; transition: background 0.25s, transform 0.25s;
}
.support__btn:hover { background: var(--gold-bright); transform: translateY(-1px); }
.support__btn--ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--border);
}
.support__btn--ghost:hover { background: transparent; border-color: var(--gold); color: var(--gold); }

/* ====== SIGNUP ====== */
.signup { padding: 5rem 0; text-align: center; }
.signup__sub {
  font-size: 1rem; color: var(--white-dim); margin-bottom: 1.75rem;
  max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.signup__form { display: flex; max-width: 440px; margin: 0 auto; }
.signup__form input {
  flex: 1; padding: 0.85rem 1.1rem;
  font-family: var(--font-body); font-size: 0.95rem;
  background: var(--bg-elevated); color: var(--white);
  border: 1px solid var(--border); border-right: none;
  border-radius: 2px 0 0 2px; outline: none;
  transition: border-color 0.2s;
}
.signup__form input::placeholder { color: var(--white-dim); }
.signup__form input:focus { border-color: var(--gold); }
.signup__form button {
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--gold); color: #12201d;
  border: 1px solid var(--gold); border-radius: 0 2px 2px 0;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.signup__form button:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.signup__privacy {
  font-size: 0.75rem; color: var(--white-dim); margin-top: 0.75rem;
  opacity: 0.7;
}
.signup__msg {
  margin-top: 1rem; padding: 0.75rem 1rem;
  font-size: 0.9rem; border-radius: 3px;
  max-width: 400px; margin-left: auto; margin-right: auto;
}
.signup__msg--success { background: rgba(42,92,70,0.3); color: var(--green-light); }
.signup__msg--error { background: rgba(181,52,42,0.2); color: var(--red); }

/* ====== PARTNERS ====== */
.partners {
  padding: 3rem 0 2rem;
}
.partners__heading {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white-dim); margin-bottom: 1.25rem;
}
.partners__grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.5rem 1.5rem;
}
.partners__item {
  font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; text-decoration: none;
  color: var(--white-dim); opacity: 0.5;
  transition: opacity 0.25s, color 0.25s;
  padding: 0.4rem 0;
}
.partners__item:hover { opacity: 1; color: var(--gold); }

/* ====== LANDING HERO ====== */
.hero--landing { min-height: 45vh; }

/* ====== TRAILER FEATURE ====== */
.trailer-feature {
  padding: 0 0 3rem;
}
.trailer-feature__wrap {
  position: relative; max-width: 900px; margin: 0 auto;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border);
}
.trailer-feature__poster {
  width: 100%; display: block;
  aspect-ratio: 16 / 9; object-fit: cover;
  filter: brightness(0.6);
}
.trailer-feature__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  background: rgba(14,18,16,0.3);
}
.trailer-feature__play {
  background: none; border: none; cursor: pointer;
  color: var(--white); opacity: 0.8;
  transition: opacity 0.25s, transform 0.25s;
}
.trailer-feature__play:hover { opacity: 1; transform: scale(1.1); }
.trailer-feature__label {
  font-family: var(--font-heading); font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); opacity: 0.7;
}

/* ====== TILES ====== */
.tiles { padding: 0 0 4rem; }
.tiles__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.tile {
  position: relative; display: block;
  border-radius: 4px; overflow: hidden;
  text-decoration: none;
  aspect-ratio: 16 / 10;
}
.tile__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.45) saturate(0.8);
}
.tile:hover .tile__img {
  transform: scale(1.04);
  filter: brightness(0.55) saturate(1);
}
.tile__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.tile__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.04em; color: var(--gold);
}
.tile__sub {
  font-size: 0.8rem; color: var(--white-dim);
  margin-top: 0.25rem; text-align: center;
}

/* ====== PAGE HEADER ====== */
.page-header {
  padding: 8rem 2rem 3.5rem;
  text-align: left;
  max-width: 68rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.page-header__kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.05;
}
.page-header__subtitle {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.65;
}

/* ====== FOOTER ====== */
.footer {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer__inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer__logo {
  font-family: var(--font-heading); font-size: 1rem;
  letter-spacing: 0.1em; color: var(--gold);
}
.footer__copy { font-size: 0.8rem; color: var(--white-dim); }
.footer__contact a {
  font-size: 0.8rem; color: var(--white-dim);
  text-decoration: none; transition: color 0.25s;
}
.footer__contact a:hover { color: var(--gold); }
.footer__socials { display: flex; gap: 1.25rem; }
.footer__socials a {
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.06em; color: var(--white-dim);
  text-decoration: none; transition: color 0.25s; text-transform: uppercase;
}
.footer__socials a:hover { color: var(--gold); }
.footer__legal {
  font-size: 0.7rem; color: var(--white-dim); opacity: 0.5;
  margin-top: 1rem; text-align: center;
}

/* ====== ANIMATIONS ====== */
.fade-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in--visible { opacity: 1; transform: translateY(0); }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .hero { min-height: 55vh; }
  .about { padding: 3.5rem 0; }
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .story { padding: 3.5rem 0; }
  .story__grid { grid-template-columns: 1fr; gap: 2rem; }
  .team { padding: 3.5rem 0; }
  .team__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cast { padding: 2rem 0 3.5rem; }
  .gallery { padding: 3rem 0 4.5rem; }
  .gallery__grid { column-count: 2; column-gap: 0.7rem; }
  .gallery__item { margin-bottom: 0.7rem; }
  .updates, .support, .signup { padding: 3.5rem 0; }
  .tiles__grid { gap: 0.75rem; }
}
@media (max-width: 480px) {
  .nav { padding: 0.5rem 1rem; }
  .nav__links { gap: 0.6rem; }
  .nav__link { font-size: 0.65rem; }
  .hero { min-height: 50vh; }
  .hero__content { padding: 4rem 1.5rem 2.5rem; }
  .gallery__grid { column-count: 1; column-gap: 0.6rem; }
  .gallery__item { margin-bottom: 0.6rem; }
  .lightbox { padding: 0.55rem; }
  .lightbox__shell { padding: 0.65rem; max-height: 93vh; }
  .lightbox__nav { width: 2rem; height: 2.8rem; font-size: 1.2rem; }
  .lightbox__close { width: 1.8rem; height: 1.8rem; font-size: 1.35rem; }
  .lightbox__thumb { flex-basis: 3.35rem; width: 3.35rem; height: 2.45rem; }
  .signup__form { flex-direction: column; gap: 0.5rem; }
  .signup__form input { border-right: 1px solid var(--border); border-radius: 3px; }
  .signup__form button { border-radius: 3px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .tiles__grid { grid-template-columns: 1fr; }
}

/* ================================================
   INTERIOR PAGES · v7 minimal pamphlet
   ================================================ */

.body--interior {
  background: #060f10;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.body--interior::before {
  content: '';
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.7) contrast(0.85) blur(0.5px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.body--interior::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,10,11,0.55) 0%, rgba(6,10,11,0.78) 100%);
  z-index: 0;
  pointer-events: none;
}
.body--interior > *:not(.lightbox) { position: relative; z-index: 1; }

.body--bg-stripes::before { background-image: url('images/banner-stripes.jpg'); }
.body--bg-orange::before { background-image: url('images/banner-orange.jpg'); }
.body--bg-green::before { background-image: url('images/banner-green.jpg'); }
.body--bg-collage::before { background-image: url('images/banner-collage.jpg'); }

/* Paper-edge borders (cream), for cards and section frames */
.paper-border {
  border: 2px solid rgba(240, 233, 214, 0.35);
  outline: 1px solid rgba(240, 233, 214, 0.15);
  outline-offset: 4px;
}

/* Full-bleed hero · compact image bg, text centered */
.hero-full {
  position: relative;
  min-height: 32vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #060f10;
  padding: 4.5rem 2rem 2.5rem;
}
.hero-full::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(6,10,11,0) 0%, rgba(6,10,11,0.7) 55%, rgba(6,10,11,0.98) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-full__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: saturate(0.8) brightness(0.55) contrast(1.03);
}
.hero-full--top .hero-full__bg { background-position: center 30%; }
.hero-full__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,10,11,0.35) 0%, rgba(6,10,11,0.15) 30%, rgba(6,10,11,0.55) 100%);
}
.hero-full__content {
  position: relative;
  z-index: 3;
  text-align: left;
  width: min(100%, 96rem);
  max-width: 96rem;
  margin: 0 auto;
}
.hero-full__kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--retro-yellow);
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--retro-yellow);
  border-radius: 2px;
  margin-bottom: 1.1rem;
  background: rgba(6,10,11,0.35);
}
.hero-full__title {
  font-family: var(--font-section);
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--cream);
  text-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
.hero-full__sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.55;
  color: var(--white);
  max-width: 36rem;
  margin: 0.85rem 0 0;
  opacity: 0.88;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* Prose column · clean editorial body */
.prose {
  padding: 3.5rem 2rem;
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
}
.prose--rail { /* removed retro rail, keep clean */ }

/* Section container · inner content wrapped in cream paper frame */
.banner-section {
  position: relative;
  padding: 4rem 2rem;
}
.banner-section__bg { display: none; }
.banner-section__inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin: 0 auto;
  background: rgba(6, 10, 11, 0.32);
  border: 1px solid rgba(240, 233, 214, 0.22);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
}
.banner-section__inner .prose__kicker,
.banner-section__inner .prose__title,
.banner-section__inner p {
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.prose__kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.prose__title {
  font-family: var(--font-section);
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.prose__lede {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 1.15rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose em { color: var(--gold-bright); font-style: italic; }

/* Retro accent stripe · goes between sections */
.retro-stripe {
  height: 6px;
  display: flex;
  width: 100%;
}
.retro-stripe__seg { flex: 1; }
.retro-stripe__seg--red { background: var(--retro-red); }
.retro-stripe__seg--orange { background: var(--retro-orange); }
.retro-stripe__seg--yellow { background: var(--retro-yellow); }
.retro-stripe__seg--green { background: var(--retro-green); }
.retro-stripe__seg--cyan { background: var(--retro-cyan); }
.retro-stripe__seg--blue { background: var(--retro-blue); }
.retro-stripe__seg--magenta { background: var(--retro-magenta); }

/* Split section · image left, text right (or reverse) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__media {
  position: relative;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
}
.split__media img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.9) contrast(1.02);
}
.split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 3rem;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.split__body--banner {
  background: rgba(6, 10, 11, 0.3);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
}
.split__body--banner > * { position: relative; z-index: 1; }
.split__body--banner .split__title,
.split__body--banner .split__kicker,
.split__body--banner p { text-shadow: 0 2px 14px rgba(0,0,0,0.5); }
.split__body--tint { background: transparent; }
.split__kicker {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.split__title {
  font-family: var(--font-section);
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 1rem;
}
.split__text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 32rem;
}
.split__text p:last-child { margin-bottom: 0; }

/* About film · editorial intro with imagery */
.about-film {
  padding: 2rem 2rem 0.5rem;
  max-width: 78rem;
  margin: 0 auto;
}
.about-film__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}
.about-film__panel {
  background: rgba(6, 10, 11, 0.32);
  border: 1px solid rgba(240, 233, 214, 0.22);
  padding: 2.25rem 2rem;
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
}
.about-film__panel .prose__kicker,
.about-film__panel .prose__title,
.about-film__panel p {
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.about-film__collage {
  display: grid;
  gap: 1rem;
}
.about-film__image {
  margin: 0;
  overflow: hidden;
  background: rgba(7, 11, 12, 0.92);
  border: 1px solid rgba(240, 233, 214, 0.14);
}
.about-film__image--tall { aspect-ratio: 4 / 5; }
.about-film__image--wide { aspect-ratio: 16 / 10; }
.about-film__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.01);
}
.about-film__chapter {
  max-width: 78rem;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
}
.about-film__chapter .split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-film__section {
  padding-top: 2rem;
}

/* Simple interior nav (lighter than landing) */
.nav--interior {
  background: rgba(6, 10, 11, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav--interior .nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #e0b663;
  font-weight: 400;
  display: inline-block;
  line-height: 0.94;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  margin: -0.4rem -0.6rem;
  text-shadow:
    0 2px 0 rgba(92, 53, 13, 0.52),
    0 7px 18px rgba(0, 0, 0, 0.44),
    0 0 12px rgba(223, 183, 95, 0.12);
  transition: transform 0.18s ease, color 0.18s ease, text-shadow 0.18s ease;
}
.nav--interior .nav__logo:hover {
  color: #efc976;
  text-shadow:
    0 2px 0 rgba(92, 53, 13, 0.54),
    0 8px 20px rgba(0, 0, 0, 0.48),
    0 0 18px rgba(239, 201, 118, 0.22);
}
.nav--interior .nav__links {
  gap: 1.1rem;
}
.nav__socials,
.footer-v7__socials {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.nav__socials {
  margin-left: 0.35rem;
}
.nav__social,
.footer-v7__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  color: var(--white-dim);
  text-decoration: none;
  border: 1px solid rgba(240, 233, 214, 0.16);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.18s ease, background 0.2s ease;
}
.nav__social:hover,
.footer-v7__social:hover {
  color: var(--gold);
  border-color: rgba(212, 162, 58, 0.4);
  background: rgba(212, 162, 58, 0.08);
  transform: translateY(-1px);
}
.nav__social svg,
.footer-v7__social svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
}
.nav__social--facebook svg,
.footer-v7__social--facebook svg {
  fill: currentColor;
  stroke: none;
}

/* Team v7 · minimal portrait grid */
.team-v7 {
  padding: 3.5rem 2rem 4rem;
  max-width: 72rem;
  margin: 0 auto;
}
.team-v7__eyebrow {
  display: block;
  margin-bottom: 2rem;
}
.team-v7--plain {
  padding-top: 2rem;
}
.team-v7__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.team-v7__card {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  background: rgba(6, 10, 11, 0.28);
  border: 1px solid rgba(240, 233, 214, 0.2);
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
}
.team-v7__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 1rem;
  position: relative;
}
.team-v7__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.team-v7__card:hover .team-v7__photo img {
  filter: saturate(1.05);
  transform: scale(1.02);
}
.team-v7__name {
  font-family: var(--font-section);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin: 0.25rem 0.5rem 0.25rem;
}
.team-v7__role,
.team-v7__bio { padding: 0 0.5rem; }
.team-v7__bio { padding-bottom: 0.5rem; }
.team-v7__role {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.team-v7__bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--white-dim);
}
.team-v7__bio-figure {
  margin: 0.9rem 0.5rem 1.1rem;
  padding: 0;
}
.team-v7__bio-figure img {
  width: 100%;
  display: block;
  border-radius: 2px;
  filter: saturate(0.92);
}
.team-v7__link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 162, 58, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.team-v7__link:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.team-v7__placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.team-v7__placeholder span {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
}

.team-intro {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 2rem 0;
}

/* Cast row · single featured player */
.cast-v7 {
  padding: 2rem 2rem 4rem;
  max-width: 72rem;
  margin: 0 auto;
}
.cast-v7__card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  background: var(--bg-alt);
  padding: 2rem 2.5rem;
  align-items: center;
  border-top: 1px solid var(--gold-dim);
}
.cast-v7__photo {
  aspect-ratio: 1;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
}
.cast-v7__photo span {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
}
.cast-v7__name {
  font-family: var(--font-section);
  font-size: 2.1rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.cast-v7__role {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cast-v7__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white);
}

/* Gallery v7 · pared-back still grid */
.gallery-v7 {
  padding: 1.5rem 2rem 1.5rem;
  max-width: 78rem;
  margin: 0 auto;
}
.gallery-v7__room {
  position: relative;
  padding: 0;
}
.gallery-v7__intro {
  position: relative;
  z-index: 1;
  margin: 0 0 1.15rem;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.gallery-v7__count {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: rgba(244, 240, 232, 0.72);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.gallery-v7__lede {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(244, 240, 232, 0.66);
}
.gallery-v7__screen {
  position: relative;
  z-index: 1;
  padding: 0;
}
.gallery-v7__screen-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 0.2rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.46);
}
.gallery-v7__grid {
  column-count: 3;
  column-gap: 0.95rem;
}
.gallery-v7__item {
  break-inside: avoid;
  width: 100%;
  margin: 0 0 0.95rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  transition: transform 0.28s ease, filter 0.28s ease;
}
.gallery-v7__item img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.9) contrast(0.99) brightness(0.94);
  transition: filter 0.4s ease, transform 0.55s ease;
}
.gallery-v7__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 245, 213, 0.06), rgba(0, 0, 0, 0.18));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.gallery-v7__item:hover,
.gallery-v7__item:focus-visible {
  outline: none;
}
.gallery-v7__item:hover img,
.gallery-v7__item:focus-visible img {
  filter: saturate(1.02) contrast(1.02) brightness(1);
  transform: scale(1.028);
}
.gallery-v7__item:hover::after,
.gallery-v7__item:focus-visible::after {
  opacity: 1;
}

.gallery-v7__hint {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.54);
  margin-top: 1rem;
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .about-film__grid { grid-template-columns: 1fr; }
  .gallery-v7__grid { column-count: 2; }
  .gallery-v7__intro { align-items: flex-start; }
}
@media (max-width: 640px) {
  .about-film { padding: 1.5rem 1rem 0.5rem; }
  .about-film__panel { padding: 1.75rem 1.25rem; }
  .about-film__chapter { padding: 1rem 1rem 0; }
  .team-intro { padding: 1.5rem 1rem 0; }
  .gallery-v7__room { padding: 1rem; }
  .gallery-v7__screen { padding: 0.8rem 0.8rem 0.25rem; }
  .gallery-v7__screen-head {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }
  .gallery-v7__grid { column-count: 2; column-gap: 0.4rem; }
  .gallery-v7__item { margin-bottom: 0.4rem; }
}

/* Support v7 · clean CTA stacked */
.support-v7 {
  padding: 3rem 2rem;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}
.support-v7__lede {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}
.support-v7__actions {
  display: flex; gap: 0.75rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.support-v7__btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gold);
  color: #12201d;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.support-v7__btn:hover { background: var(--gold-bright); transform: translateY(-1px); }
.support-v7__btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
}
.support-v7__btn--ghost:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.partners-v7 {
  padding: 3rem 2rem 4rem;
  max-width: 62rem;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.partners-v7__heading {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}
.partners-v7__grid {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.partners-v7__item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--white-dim);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}
.partners-v7__item:hover { color: var(--gold); }

/* Minimal interior footer */
.footer-v7 {
  padding: 2rem 2rem 1.75rem;
  border-top: 1px solid var(--border);
  background: #050a0b;
  margin-top: auto;
}
.page-shell {
  flex: 1 0 auto;
  display: block;
}
.page-shell + .footer-v7 {
  margin-top: 0;
}
.footer-v7__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-v7__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #e0b663;
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  margin: -0.35rem -0.55rem;
  text-shadow:
    0 2px 0 rgba(92, 53, 13, 0.48),
    0 6px 16px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(223, 183, 95, 0.1);
  transition: color 0.18s ease, text-shadow 0.18s ease;
}
.footer-v7__brand:hover {
  color: #efc976;
  text-shadow:
    0 2px 0 rgba(92, 53, 13, 0.5),
    0 7px 18px rgba(0, 0, 0, 0.42),
    0 0 16px rgba(239, 201, 118, 0.14);
}
.footer-v7__links {
  display: flex; gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--white-dim);
  letter-spacing: 0.02em;
}
.footer-v7__links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-v7__links a:hover { color: var(--gold); }
.footer-v7__legal {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--white-dim);
  opacity: 0.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split__body { padding: 3rem 1.75rem; }
  .split__media { min-height: 55vh; }
  .team-v7__grid { grid-template-columns: 1fr; max-width: 24rem; margin: 0 auto; }
  .cast-v7__card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
  .cast-v7__photo { max-width: 180px; margin: 0 auto; }
  .prose { padding: 4rem 1.5rem; }
  .hero-full { min-height: 24vh; padding: 3.5rem 1.5rem 2rem; }
  .hero-full__content { padding-top: 0; }
  .nav--interior .nav__links { gap: 0.8rem; }
}

/* ================================================
   PAGE TITLE (no image) · for Gallery
   ================================================ */
.page-title {
  padding: 5rem 2rem 1rem;
  max-width: 96rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.page-title__text {
  font-family: var(--font-section);
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.65rem;
}
.page-title__sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 40rem;
  padding-bottom: 1.25rem;
}

/* ================================================
   LANDING SCROLL HINT + TRAILER REVEAL
   ================================================ */
.body--landing { overflow-x: hidden; }
.body--landing.body--has-trailer { min-height: 200vh; }

.body--has-trailer .landing {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  z-index: 1;
  will-change: opacity, transform;
}

.landing__scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--white-dim);
  font-family: 'Jost', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  pointer-events: none;
  animation: scroll-hint-bob 2.4s ease-in-out infinite;
  opacity: 0.75;
  transition: opacity 0.4s ease;
}
.landing__scroll-hint svg {
  stroke: var(--gold);
  opacity: 0.9;
}
@keyframes scroll-hint-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

.reveal-trailer {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 4rem;
  background: transparent;
  pointer-events: none;
}
.reveal-trailer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(6,10,11,0) 0%,
    rgba(6,10,11,0.5) 35%,
    rgba(6,10,11,0.85) 65%,
    rgba(6,10,11,0.95) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.reveal-trailer.is-active::before { opacity: 1; }
.reveal-trailer.is-active { pointer-events: auto; }
.reveal-trailer__frame {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(60px) scale(0.94);
  will-change: opacity, transform;
  transition: opacity 0.1s linear, transform 0.1s linear;
}
.reveal-trailer__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) brightness(0.55);
}
.reveal-trailer__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  color: rgba(255,247,227,0.92);
  text-align: center;
  z-index: 1;
  pointer-events: none;
}
.reveal-trailer__play {
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
}
.reveal-trailer__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255,247,227,0.78);
}
.reveal-trailer__back {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.52rem 0.9rem;
  border-radius: 2px;
  opacity: 0;
  margin-inline: auto;
  width: fit-content;
  transition: color 0.2s, border-color 0.2s, opacity 0.3s;
}
.reveal-trailer__back svg { stroke: currentColor; }
.reveal-trailer__back:hover { color: var(--gold); border-color: var(--gold); }
.reveal-trailer.is-active { pointer-events: auto; }
.reveal-trailer.is-active .reveal-trailer__frame { pointer-events: auto; }
.reveal-trailer.is-active .reveal-trailer__back { opacity: 1; pointer-events: auto; }

@media (max-width: 640px) {
  .landing { padding: 3rem 1.5rem 6.5rem; }
  .landing__footer { bottom: 1rem; gap: 0.35rem; width: calc(100% - 1.5rem); }
  .reveal-trailer { padding: 2rem 1rem 3rem; }
  .landing__scroll-hint { bottom: 1.5rem; font-size: 0.6rem; }
}

/* ================================================
   ABOUT v8 · uncropped cinematic layout
   ================================================ */
.about-v8 {
  max-width: 96rem;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.about-v8--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}
.about-v8--reverse .about-v8__hero { order: 2; }
.about-v8--reverse .about-v8__intro { order: 1; }

.about-v8__hero {
  margin: 0;
  overflow: hidden;
  background: #0a0d0e;
}
.about-v8__hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a0d0e;
}
.about-v8__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-v8__intro .prose__title {
  margin: 0.2rem 0 0.4rem;
}
.about-v8__intro p {
  color: var(--white-dim);
  line-height: 1.65;
  font-size: 1.02rem;
  margin: 0;
}

/* ================================================
   PILLARS · Legacy / Tradition / Culture / Family
   ================================================ */
/* Essay lead · magazine-feature treatment on about page */
.essay-lead {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3rem 2rem 3.5rem;
}
.essay-lead p {
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.35vw, 1.2rem);
  line-height: 1.72;
  color: var(--cream);
  margin-bottom: 1.35rem;
}
.essay-lead p:last-child { margin-bottom: 0; }
.essay-lead em {
  color: var(--gold-bright);
  font-style: italic;
}
.essay-lead strong {
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.015em;
}
.essay-lead p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4.4em;
  float: left;
  line-height: 0.82;
  padding: 0.35rem 0.55rem 0 0;
  color: var(--gold);
  font-weight: 400;
}
.essay-lead .prose__kicker + p::first-letter {
  font: inherit;
  float: none;
  padding: 0;
  color: inherit;
}
.essay-lead + .essay-lead {
  padding-top: 0.75rem;
}
.essay-still + .essay-lead {
  padding-top: 1.5rem;
}

/* Single wide still (replaces 3-up cine-strip on about) */
.essay-still {
  max-width: 82rem;
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
}
.essay-still figure { margin: 0; }
.essay-still img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.pillars {
  max-width: 82rem;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  text-align: center;
}
.pillars__kicker { display: inline-block; }
.pillars__title {
  font-family: var(--font-section);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: 0.03em;
  color: var(--cream);
  margin: 0.4rem 0 2.6rem;
  line-height: 1.05;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.pillars__card {
  padding: 1.25rem 1.25rem 0.25rem 1.25rem;
  text-align: left;
  position: relative;
  border-top: 1px solid rgba(247, 214, 122, 0.32);
}
.pillars__num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: rgba(247, 214, 122, 0.6);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.85rem;
}
.pillars__name {
  font-family: var(--font-section);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 0.65rem;
  line-height: 1;
}
.pillars__card p {
  color: var(--white-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ================================================
   CINEMATIC STRIP · 3 uncropped stills in a row
   ================================================ */
.cine-strip {
  max-width: 100rem;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.cine-strip__frame {
  margin: 0;
  overflow: hidden;
  background: #070a0b;
}
.cine-strip__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #070a0b;
}

/* ================================================
   CLOSING NOTE
   ================================================ */
.closing-note {
  max-width: 56rem;
  margin: 3rem auto 2rem;
  padding: 2.5rem 2rem;
  text-align: center;
}
.closing-note__title {
  font-family: var(--font-section);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.03em;
  color: var(--cream);
  margin: 0.3rem 0 1rem;
}
.closing-note p {
  color: var(--white-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 44rem;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .about-v8 {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 3rem 1.5rem;
  }
  .about-v8--reverse { grid-template-columns: 1fr; }
  .about-v8--reverse .about-v8__hero { order: 1; }
  .about-v8--reverse .about-v8__intro { order: 2; }

  .pillars { padding: 2rem 1.5rem 3rem; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }

  .cine-strip { grid-template-columns: 1fr; gap: 0.7rem; padding: 1rem 1.5rem 2rem; }
}
@media (max-width: 520px) {
  .pillars__grid { grid-template-columns: 1fr; }
}
