/* ============================================================
   REEL FILM PROGRAM — stylesheet
   Type: Bebas Neue (display) + Inter (body)
   Palette: Purple #8C52FF · Pink #FF66C4 · Yellow #FFDE59
            Orange #FF914D · Cream #F5F5F5 · Ink #14121A
   ============================================================ */

:root {
  --purple: #8C52FF;            /* bright editorial violet */
  --purple-deep: #2B1450;       /* deep violet for dark brand blocks */
  --purple-ink: #190B33;
  --pink: #FF66C4;             /* hot magenta-pink */
  --yellow: #FFDE59;           /* marquee gold */
  --orange: #FF5757;           /* bright red accent (logo top) */
  --red: #FF5757;
  --cream: #F5F1E8;            /* warm paper cream */
  --ink: #121016;              /* near-black cinema field */
  --ink-soft: #221D2B;
  --white: #ffffff;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);

  --font-display: "Anton", "Bebas Neue", "Arial Narrow", sans-serif;
  --font-tall: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
}
h1.display { font-size: clamp(54px, 10vw, 150px); letter-spacing: -0.01em; }
h2.display { font-size: clamp(42px, 7vw, 104px); letter-spacing: -0.005em; }
h3.display { font-size: clamp(26px, 3vw, 42px); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  margin: 0 0 18px;
}

.lead { font-size: clamp(18px, 2.2vw, 23px); line-height: 1.55; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 150px); }

/* ============================================================
   MARQUEE TICKER — continuous horizontal loop, flat
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-block: 3px solid var(--ink);
  display: flex;
}
.marquee.cream  { background: var(--cream); color: var(--ink); }
.marquee.purple { background: var(--purple); color: var(--ink); }
.marquee.yellow { background: var(--yellow); color: var(--ink); }
.marquee__track {
  display: flex;
  flex: none;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee.fast .marquee__track { animation-duration: 20s; }
.marquee.rev  .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex; align-items: center; flex: none;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 60px);
  line-height: 1; white-space: nowrap;
  padding-block: 16px;
  letter-spacing: 0.01em;
}
.marquee__group > span { padding-inline: 26px; }
.marquee .sep { font-size: 0.7em; opacity: 0.9; }
.marquee.purple .sep, .marquee.cream .sep, .marquee.yellow .sep { color: var(--pink); }
.marquee .sep.alt { color: var(--yellow); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   HERO HEADLINE — word-by-word stagger
   ============================================================ */
.hero-h1 { display: flex; flex-wrap: wrap; gap: 0 0.26em; margin-bottom: 26px; }
.hero-h1 .w { display: inline-block; }
.hero-h1 .brk { flex-basis: 100%; height: 0; }
.js .hero-h1 .w {
  opacity: 0; transform: translateY(46px);
  animation: heroWord 0.7s var(--ease) forwards;
  animation-delay: calc(0.15s + var(--i) * 0.1s);
}
@keyframes heroWord { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .js .hero-h1 .w { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   FILMSTRIP MOTIF — authentic perforated movie film
   small sprocket holes tight to both edges + frame divider lines
   ============================================================ */
.filmstrip {
  --perf: #F4EEE2;                       /* sprocket-hole color */
  --frame: rgba(244, 238, 226, 0.28);    /* frame divider lines */
  --edge: 8px;                           /* hole distance from edge */
  --ph: 10px;                            /* hole height */
  position: relative;
  height: 58px;
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, var(--perf) 0 52%, transparent 52%),   /* top sprockets   */
    linear-gradient(90deg, var(--perf) 0 52%, transparent 52%),   /* bottom sprockets */
    repeating-linear-gradient(90deg, var(--frame) 0 2px, transparent 2px 92px); /* frame lines */
  background-size: 22px var(--ph), 22px var(--ph), 92px 100%;
  background-position: 0 var(--edge), 0 calc(100% - var(--edge)), 0 0;
  background-repeat: repeat-x, repeat-x, repeat-x;
  animation: strip-scroll 9s linear infinite;
  overflow: hidden;
  flex: none;
}
.filmstrip.thin { height: 38px; --edge: 6px; --ph: 9px; }
.filmstrip.pink { --perf: var(--pink); --frame: rgba(225, 44, 139, 0.3); }
.filmstrip.gold { --perf: var(--yellow); --frame: rgba(255, 222, 89, 0.32); }
/* solid brand-color band: bright field, holes punched in ink */
.filmstrip.solid {
  --perf: var(--ink);
  --frame: rgba(18, 16, 22, 0.18);
  background-color: var(--yellow);
}
.filmstrip.solid.purple-band { background-color: var(--purple); --perf: var(--cream); --frame: rgba(245,241,232,0.22); }
.filmstrip.solid.pink-band   { background-color: var(--pink); }
.filmstrip.slow { animation-duration: 16s; }
.filmstrip.rev  { animation-direction: reverse; }

@keyframes strip-scroll {
  to {
    background-position:
      92px var(--edge),
      92px calc(100% - var(--edge)),
      92px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .filmstrip { animation: none; }
}

/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */
.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(140, 82, 255, 0.08);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(20, 18, 26, 0.10) 0,
    rgba(20, 18, 26, 0.10) 2px,
    transparent 2px,
    transparent 13px
  );
  color: var(--ink);
  overflow: hidden;
  border-radius: 4px;
}
.ph .ph-tag {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px dashed rgba(20, 18, 26, 0.4);
  border-radius: 4px;
  max-width: 82%;
  text-transform: uppercase;
}
.ph.on-dark { background-color: rgba(255,255,255,0.06); color: var(--white); }
.ph.on-dark .ph-tag {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
/* placeholder filled with a real photo */
.ph.has-photo { background: none; }
.ph.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   BUTTONS — flat, squared, solid color blocks (editorial)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.22s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: var(--ink); color: var(--yellow); }
.btn-pink   { background: var(--pink); color: var(--ink); }
.btn-pink:hover { background: var(--ink); color: var(--pink); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-purple:hover { background: var(--ink); color: var(--white); }
.btn-ink    { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--yellow); color: var(--ink); }
.btn-ghost  { background: transparent; border-color: currentColor; }
.btn-ghost:hover { background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* editorial underline arrow-link (shared with .icard-link) */
.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: currentColor;
  padding-bottom: 6px;
  border-bottom: 2px solid currentColor;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.text-link .arr { color: var(--yellow); transition: transform 0.25s var(--ease); }
.text-link:hover { gap: 12px; }
.text-link:hover .arr { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(20, 18, 26, 0.92);
  backdrop-filter: blur(10px);
  padding-block: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.brand .dot { color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--yellow); transition: width 0.25s var(--ease);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn { padding: 10px 22px; font-size: 14px; }
.nav-links a.btn-yellow, .nav-links a.btn-pink { color: var(--ink); }
.nav-links a.btn-ink, .nav-links a.btn-purple { color: var(--white); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 9px; right: 9px; height: 2.5px; background: var(--white);
  border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   SUPPORT — fund a filmmaker (interactive)
   ============================================================ */
.support { background: var(--ink); color: var(--white); position: relative; overflow: hidden; isolation: isolate; }
.support-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 55% at 16% 22%, rgba(140,82,255,0.42), transparent 62%),
    radial-gradient(44% 56% at 88% 84%, rgba(255,102,196,0.32), transparent 62%),
    radial-gradient(30% 40% at 70% 8%, rgba(255,222,89,0.12), transparent 60%);
}
.support .wrap { position: relative; z-index: 1; }
.support-shell {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.support-left .eyebrow { margin-bottom: 16px; }
.support-intro { color: rgba(255,255,255,0.82); max-width: 46ch; margin: 22px 0 0; font-size: 17px; }
.impact-readout {
  margin-top: 34px; padding: 26px 30px;
  border-left: 4px solid var(--yellow);
  background: rgba(255,255,255,0.05);
  border-radius: 0 12px 12px 0;
}
.impact-amount {
  font-family: var(--font-display); font-size: clamp(44px, 6vw, 68px);
  line-height: 0.9; color: var(--yellow); letter-spacing: 0.01em;
}
.impact-line {
  margin-top: 8px; font-size: 18px; line-height: 1.4; color: var(--white); max-width: 38ch;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.impact-readout.bump .impact-amount { animation: amt-pop 0.35s var(--ease); }
@keyframes amt-pop { 0% { transform: scale(0.86); } 60% { transform: scale(1.06); } 100% { transform: scale(1); } }

/* donate card */
.donate-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 40px);
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.donate-card__label {
  font-family: var(--font-body); font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--pink);
  margin: 0 0 18px;
}
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.amount-btn {
  font-family: var(--font-display); font-size: 26px; letter-spacing: 0.02em;
  color: var(--white); background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.2); border-radius: 10px;
  padding: 18px 8px; cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.amount-btn:hover { border-color: var(--white); transform: translateY(-2px); }
.amount-btn.is-active {
  background: var(--yellow); border-color: var(--yellow); color: var(--ink);
}
.amount-custom { font-size: 18px; letter-spacing: 0.04em; }
.custom-wrap {
  display: flex; align-items: center; gap: 4px; margin-top: 14px;
  background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.25);
  border-radius: 10px; padding: 4px 16px;
}
.custom-wrap:focus-within { border-color: var(--yellow); }
.custom-dollar { font-family: var(--font-display); font-size: 24px; color: var(--yellow); }
.custom-wrap input {
  flex: 1; border: 0; background: transparent; color: var(--white);
  font-family: var(--font-display); font-size: 24px; padding: 12px 0; outline: none;
}
.custom-wrap input::placeholder { font-family: var(--font-body); font-size: 16px; color: rgba(255,255,255,0.5); }
.donate-go { width: 100%; justify-content: center; margin-top: 22px; font-size: 16px; }
.donate-card .support-note { margin: 16px 0 0; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; text-align: center; }
@media (max-width: 900px) {
  .support-shell { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MERCH
   ============================================================ */
.merch { background: var(--cream); }
.merch-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 52px; }
.merch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mcard {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(20,18,26,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.mcard:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(243,43,78,0.3); }
.mcard .ph { aspect-ratio: 1/1; border-radius: 0; }
.mcard .ph .badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--pink); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.mcard .body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.mcard h3 { margin: 0; font-size: 19px; font-weight: 700; line-height: 1.25; color: var(--ink); }
.mcard .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px; }
.mcard .price { font-family: var(--font-display); font-size: 30px; color: var(--purple); letter-spacing: 0.02em; }
.mcard .mbtn { padding: 11px 18px; font-size: 14px; box-shadow: none; }
.merch-note { text-align: center; margin-top: 44px; font-size: 15px; color: #6b6675; }

/* ============================================================
   1 · HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--purple);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-video-ph {
  position: absolute; inset: 0; z-index: -2;
  opacity: 0.58;
  background:
    radial-gradient(115% 90% at 18% 100%, rgba(140,82,255,0.9), transparent 60%),
    radial-gradient(130% 105% at 60% -8%, #FF5757 0%, #FF66C4 44%, #8C52FF 100%);
}
.hero::after { /* darkening for legibility */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,16,22,0.78), rgba(18,16,22,0.32) 60%, transparent),
    linear-gradient(0deg, rgba(18,16,22,0.55), transparent 45%);
}
.hero-inner { padding-block: 140px 120px; max-width: 880px; margin-inline: 0 auto; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .hl { color: var(--yellow); }
.hero .sub { font-size: clamp(18px, 2.4vw, 26px); max-width: 620px; margin: 0 0 38px; opacity: 0.96; }
.hero-strip { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; }

/* entrance animation — visible by default (no-JS / stuck-animation safe);
   only hidden + animated once JS confirms it can run it */
.reveal-up { opacity: 1; transform: none; }
.js .reveal-up { opacity: 0; transform: translateY(28px); }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal-up { animation: rise 0.9s var(--ease) forwards; }
  .js .reveal-up.d1 { animation-delay: 0.10s; }
  .js .reveal-up.d2 { animation-delay: 0.28s; }
  .js .reveal-up.d3 { animation-delay: 0.46s; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal-up { opacity: 1; transform: none; }
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   2 · ABOUT
   ============================================================ */
.about { background: linear-gradient(165deg, #f3ecfb 0%, var(--cream) 38%, #fdf6ee 100%); position: relative; overflow: hidden; isolation: isolate; }
/* dynamic drifting color orbs behind content */
.about-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.about-orbs .orb {
  position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5;
  mix-blend-mode: multiply;
}
.orb-1 { width: 360px; height: 360px; top: -90px; left: -70px;
  background: radial-gradient(circle at 35% 35%, rgba(140,82,255,0.55), transparent 68%); }
.orb-2 { width: 300px; height: 300px; bottom: -60px; right: -40px;
  background: radial-gradient(circle at 50% 50%, rgba(255,102,196,0.5), transparent 68%); }
.orb-3 { width: 240px; height: 240px; top: 40%; right: 22%;
  background: radial-gradient(circle at 50% 50%, rgba(255,222,89,0.55), transparent 66%); }
.orb-4 { width: 280px; height: 280px; bottom: 8%; left: 30%;
  background: radial-gradient(circle at 50% 50%, rgba(255,87,87,0.4), transparent 68%); }
@media (prefers-reduced-motion: no-preference) {
  .orb-1 { animation: orb-float-a 16s ease-in-out infinite alternate; }
  .orb-2 { animation: orb-float-b 19s ease-in-out infinite alternate; }
  .orb-3 { animation: orb-float-a 13s ease-in-out infinite alternate; }
  .orb-4 { animation: orb-float-b 22s ease-in-out infinite alternate; }
}
@keyframes orb-float-a { to { transform: translate(40px, 30px) scale(1.15); } }
@keyframes orb-float-b { to { transform: translate(-50px, -28px) scale(1.1); } }

/* faint film grain */
.about-grain {
  position: absolute; inset: 0; opacity: 0.04; mix-blend-mode: multiply;
  background-image: radial-gradient(rgba(20,18,26,0.9) 0.5px, transparent 0.6px);
  background-size: 4px 4px;
}
/* floating film accents — dots + sprocket rings */
.float-dot, .float-ring { position: absolute; }
.float-dot { width: 14px; height: 14px; border-radius: 50%; }
.fd-1 { top: 16%; left: 12%; background: var(--pink); }
.fd-2 { top: 70%; left: 8%; background: var(--purple); }
.fd-3 { top: 24%; right: 10%; background: var(--yellow); }
.float-ring { width: 30px; height: 30px; border-radius: 50%; border: 4px solid var(--purple); opacity: 0.4; }
.fr-1 { bottom: 18%; right: 14%; }
.fr-2 { top: 50%; left: 4%; border-color: var(--pink); width: 20px; height: 20px; }
@media (prefers-reduced-motion: no-preference) {
  .fd-1, .fr-2 { animation: bob-a 7s ease-in-out infinite alternate; }
  .fd-2, .fr-1 { animation: bob-b 9s ease-in-out infinite alternate; }
  .fd-3 { animation: bob-a 6s ease-in-out infinite alternate; }
}
@keyframes bob-a { to { transform: translateY(-22px) rotate(20deg); } }
@keyframes bob-b { to { transform: translateY(24px) rotate(-16deg); } }
.about .wrap { position: relative; z-index: 1; }

/* ---- editorial depth for the About copy column ---- */
.about-copy { position: relative; }
.about-watermark {
  position: absolute; top: -0.42em; left: -0.06em; z-index: -1;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(120px, 20vw, 260px); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 2px rgba(140,82,255,0.13);
  pointer-events: none; user-select: none; letter-spacing: 0.02em;
}
.about-kicker { display: inline-flex; align-items: center; gap: 10px; }
.about-kicker .ak-num {
  font-family: var(--font-display); font-size: 15px; letter-spacing: 0.05em;
  color: var(--white); background: var(--purple);
  padding: 2px 9px; border-radius: 3px;
}
.about-h2 { position: relative; display: flex; flex-direction: column; line-height: 0.82; margin: 6px 0 0; }
.about-h2 .ah-story {
  font-size: clamp(40px, 6.2vw, 92px);
  color: var(--ink); letter-spacing: -0.01em;
}
.about-h2 .ah-row { display: flex; align-items: baseline; gap: clamp(12px, 1.6vw, 22px); flex-wrap: wrap; margin-top: 0.06em; }
.about-h2 .ah-is {
  font-size: clamp(24px, 3vw, 44px);
  color: transparent; -webkit-text-stroke: 2px var(--ink);
  letter-spacing: 0.01em;
}
.about-h2 .ah-power {
  font-size: clamp(78px, 13vw, 184px);
  line-height: 0.78; letter-spacing: -0.02em; padding-bottom: 0.1em;
}
.about-h2 .word-pop { position: relative; color: var(--pink); display: inline-block; }
.about-h2 .word-pop::after {
  content: ""; position: absolute; left: 0; right: -1%; bottom: 0.02em; height: 0.1em;
  background: var(--yellow); transform: scaleX(0); transform-origin: left center;
  border-radius: 2px; transition: transform 0.7s var(--ease) 0.25s;
}
.fade-in.in .about-h2 .word-pop::after,
.about-copy.in .about-h2 .word-pop::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .about-h2 .word-pop::after { transition: none; transform: scaleX(1); }
}
.about-lead {
  font-size: clamp(17px, 1.5vw, 19px); line-height: 1.6;
  color: #2c2833 !important;
}
.about-lead::first-line { font-weight: 600; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px); align-items: start;
}
.about .ph-lead { aspect-ratio: 4/5; width: 100%; }
.about p { margin: 0 0 20px; color: #36323d; }

/* ---- dynamic film-frame photo treatment ---- */
.story-photo { position: relative; padding: 22px; }
.story-block {
  position: absolute; border-radius: 10px; z-index: 0;
}
.story-block.block-a {
  inset: 0 38% 44% 0; background: var(--purple);
  transform: rotate(-4deg);
}
.story-block.block-b {
  inset: 46% 0 0 40%; background: var(--yellow);
  transform: rotate(3deg);
}
.story-frame {
  position: relative; z-index: 1;
  background: var(--white);
  padding: 12px 12px 12px 26px;
  border-radius: 6px;
  box-shadow: 0 24px 50px rgba(20,18,26,0.22);
  transform: rotate(-2.5deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  clip-path: polygon(0 0, 100% 2%, 99% 100%, 1% 98%);
}
.story-frame img {
  width: 100%; display: block; border-radius: 3px;
  aspect-ratio: 4 / 4.2; object-fit: cover;
}
.story-frame .story-sprockets {
  position: absolute; top: 10px; bottom: 10px; left: 8px; width: 11px;
  background:
    repeating-linear-gradient(to bottom, var(--ink) 0 7px, transparent 7px 18px);
  border-radius: 3px; opacity: 0.85;
}
.story-frame .story-tag {
  position: absolute; bottom: 18px; right: -10px;
  background: var(--pink); color: var(--white);
  font-family: var(--font-body); font-weight: 800; font-size: 11px;
  letter-spacing: 0.14em; padding: 7px 14px; border-radius: 3px;
  box-shadow: 0 8px 20px rgba(225,44,139,0.4);
}
.story-photo:hover .story-frame { transform: rotate(0deg) scale(1.015); box-shadow: 0 30px 60px rgba(140,82,255,0.3); }
.origin {
  position: relative;
  margin-top: 36px; padding-left: 26px;
  border-left: 3px solid var(--pink);
}
.origin .origin-label {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--pink); margin: 0 0 10px;
}
.origin .origin-text {
  margin: 0; font-size: clamp(17px, 1.5vw, 19px); line-height: 1.6; color: #2e2937;
}
.origin .origin-text strong { color: var(--purple); font-weight: 800; }

.about-media { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 48px); }
.about-media .trust-badge { margin-top: 4px; }
.about-illo { margin-top: clamp(28px, 4vw, 56px); display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px,5vw,70px); align-items: center; }

/* ---- film slate panel (designer clapperboard + ACTION) ---- */
.slate-band {
  position: relative; z-index: 1;
  margin-top: clamp(64px, 9vw, 120px);
  background:
    radial-gradient(120% 130% at 12% 8%, rgba(140,82,255,0.55), transparent 55%),
    radial-gradient(110% 120% at 90% 100%, rgba(255,102,196,0.4), transparent 55%),
    linear-gradient(135deg, #2b1450 0%, #14121A 62%, #1b0f36 100%);
  border-radius: 28px;
  padding: clamp(34px, 5vw, 72px);
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(30px, 5vw, 70px);
  align-items: center; color: var(--white);
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(27,15,54,0.42);
}
.slate-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 9px);
  mix-blend-mode: overlay;
}
.slate-illo { display: flex; justify-content: center; position: relative; z-index: 1; }
.slate-illo svg {
  width: min(100%, 440px); height: auto;
  transform: rotate(-5deg);
  filter: drop-shadow(0 26px 44px rgba(0,0,0,0.5));
}
.slate-arm {
  transform-box: view-box;
  transform-origin: 52px 150px;
  transform: rotate(-28deg);
}
@media (prefers-reduced-motion: no-preference) {
  .slate-arm { animation: clap 4.6s cubic-bezier(0.7, 0, 0.25, 1) infinite; }
}
@keyframes clap {
  0%, 54%  { transform: rotate(-28deg); }
  68%      { transform: rotate(0deg); }
  73%      { transform: rotate(-6deg); }
  80%, 100% { transform: rotate(-28deg); }
}
.slate-copy { position: relative; z-index: 1; }
.slate-copy .eyebrow { color: var(--pink); margin-bottom: 10px; }
.slate-action { font-size: clamp(70px, 11vw, 140px); line-height: 0.82; color: var(--yellow); }
.slate-copy p { margin: 20px 0 0; color: rgba(245,241,232,0.86); max-width: 44ch; font-size: 17px; }

.hl-power { color: var(--pink); }

.bay-illo { width: 100%; height: auto; margin-top: clamp(34px, 4vw, 52px); filter: drop-shadow(0 14px 30px rgba(43,20,80,0.22)); }
.trust-badge {
  display: flex; gap: 16px; align-items: center;
  color: var(--ink);
  padding: 4px 2px;
}
.trust-badge .seal {
  flex: none; width: 50px; height: 50px; border-radius: 50%;
  background: transparent; color: var(--pink);
  border: 2px solid var(--pink);
  display: grid; place-items: center;
}
.trust-badge .seal svg { width: 26px; height: 26px; }
.trust-badge p { margin: 0; font-size: 16px; line-height: 1.5; color: #46424e; }
.trust-badge strong { color: var(--purple); font-weight: 800; }

/* ============================================================
   PARTNERS — quiet logo strip
   ============================================================ */
.partners {
  margin-top: clamp(48px, 7vw, 80px);
  text-align: center;
}
.partners-label {
  font-family: var(--font-body);
  font-weight: 800; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #8a8494; margin: 0 0 30px;
}
.partners-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 64px);
}
.partner {
  display: flex; align-items: center; justify-content: center;
  height: 110px;
}
.partner img {
  max-height: 100%; width: auto; max-width: 240px;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.partner img:hover { transform: scale(1.04); }
.partner-ph {
  width: 150px; height: 92px; border: 2px dashed rgba(20,18,26,0.18); border-radius: 8px;
}
.partner-ph span {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px; letter-spacing: 0.12em; color: #a8a2b0;
}

/* ============================================================
   3 · STATS
   ============================================================ */
.stats { background: var(--purple); color: var(--white); overflow: hidden; isolation: isolate; }
.stats .ph-bg {
  position: absolute; inset: 0; z-index: 0;
}
.stats .ph-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.stats .ph-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(140,82,255,0.9) 0%, rgba(140,82,255,0.8) 50%, rgba(43,20,80,0.86) 100%),
    radial-gradient(120% 90% at 50% 30%, rgba(255,102,196,0.32), transparent 70%);
}
.stats .wrap { position: relative; z-index: 1; }
.stats-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display); color: var(--yellow);
  font-size: clamp(56px, 8vw, 104px); line-height: 0.9; letter-spacing: 0.01em;
}
.stat .lab { font-weight: 600; font-size: 16px; margin-top: 10px; line-height: 1.4; opacity: 0.95; }
.stats .foot-note { text-align: center; margin-top: 54px; font-size: 17px; opacity: 0.9; }

/* ============================================================
   4 · WHAT WE DO
   ============================================================ */
.work { background: var(--ink); color: var(--white); padding: 0; position: relative; overflow: hidden; isolation: isolate; }
.work-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.7) brightness(0.55);
}
.work-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, var(--ink) 0%, rgba(21,15,26,0.78) 16%, rgba(21,15,26,0.82) 84%, var(--ink) 100%),
    radial-gradient(120% 80% at 50% 40%, rgba(122,63,200,0.32), transparent 70%);
}
.work .inner { padding-block: clamp(72px, 10vw, 130px); position: relative; }
.work-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.work-head .eyebrow { color: var(--pink); }
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.jcard {
  background: var(--ink-soft); border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.jcard:hover { transform: translateY(-10px); border-color: var(--yellow); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }
.jcard .ph { aspect-ratio: 3/2; border-radius: 0; }
.jcard .body { padding: 28px 28px 34px; }
.jcard .step { font-family: var(--font-display); font-size: 16px; color: var(--yellow); letter-spacing: 0.18em; }
.jcard h3 { margin: 4px 0 12px; }
.jcard p { margin: 0; color: rgba(255,255,255,0.78); font-size: 16px; }
.jcard .num-tab {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--purple); color: var(--white);
  font-family: var(--font-display); font-size: 22px; margin-bottom: 16px;
  transition: background 0.3s;
}
.jcard:hover .num-tab { background: var(--pink); }

/* ============================================================
   5 · STUDENT WORK
   ============================================================ */
.studentwork { background: var(--purple-deep); color: var(--white); position: relative; overflow: hidden; isolation: isolate; }
.sw-glow {
  position: absolute; inset: -20% -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 48% at 22% 28%, rgba(255,102,196,0.30), transparent 60%),
    radial-gradient(46% 56% at 82% 72%, rgba(140,82,255,0.34), transparent 62%),
    radial-gradient(30% 40% at 60% 12%, rgba(255,222,89,0.14), transparent 60%);
  filter: blur(8px);
}
@media (prefers-reduced-motion: no-preference) {
  .sw-glow { animation: glow-drift 16s ease-in-out infinite alternate; }
}
.studentwork .wrap { position: relative; z-index: 1; }
.sw-head {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; margin-bottom: clamp(44px, 6vw, 68px);
}
.sw-head .eyebrow { color: var(--pink); margin: 0; }
.sw-head .lead { max-width: 600px; opacity: 0.85; margin: 0; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.film {
  position: relative; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  background: #000;
  box-shadow: 0 12px 34px rgba(0,0,0,0.32);
}
.film iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.film .ph { position: absolute; inset: 0; border-radius: 0; }
.film .meta {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 40px 18px 16px; color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  transform: translateY(8px); opacity: 0; transition: all 0.35s var(--ease);
}
.film .meta .t { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.03em; }
.film .meta .s { font-size: 13px; opacity: 0.85; }
.film:hover .meta { transform: none; opacity: 1; }
.film .play {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  transition: transform 0.35s var(--ease);
}
.film .play span {
  width: 60px; height: 60px; border-radius: 50%; background: rgba(244,182,60,0.95);
  display: grid; place-items: center; color: var(--ink);
  transform: scale(0.8); opacity: 0; transition: all 0.35s var(--ease);
}
.film:hover .play span { transform: scale(1); opacity: 1; }
.film:hover .ph { transform: scale(1.06); }
.film .ph { transition: transform 0.5s var(--ease); }

.gallery-cta { margin-top: clamp(36px, 5vw, 54px); display: flex; justify-content: center; }
/* two featured films */
.gallery-duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3vw, 36px);
  max-width: 1080px; margin: 0 auto;
}
.film-card { display: flex; flex-direction: column; gap: 16px; margin: 0; }
.film-feature {
  width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden;
  background: #000;
  box-shadow: 0 26px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.film-card:hover .film-feature {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(255,222,89,0.5), 0 34px 70px rgba(255,102,196,0.32);
}
.film-cap { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.film-no {
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.04em;
  color: var(--yellow); line-height: 1;
}
.film-meta { font-size: 14px; color: rgba(255,255,255,0.72); letter-spacing: 0.01em; }
.film-cta {
  display: block; text-decoration: none;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.film-cta:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(255,102,196,0.4); }
.film-cta__inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center; color: var(--white);
}
.film-cta__icon {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.18);
  display: grid; place-items: center; transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.film-cta__icon svg { width: 20px; height: 20px; margin-left: 3px; }
.film-cta:hover .film-cta__icon { background: var(--yellow); color: var(--ink); transform: scale(1.08); }
.film-cta__t { font-family: var(--font-display); font-size: 26px; line-height: 0.95; letter-spacing: 0.02em; }
.film-cta__arr { font-weight: 800; transition: transform 0.3s var(--ease); }
.film-cta:hover .film-cta__arr { transform: translateX(5px); }

/* ============================================================
   6 · REEL FEST — full-bleed photo background, text overlay
   ============================================================ */
.fest {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 78vh, 820px);
}
.fest-bg {
  position: absolute; inset: -12% 0; z-index: 0;
  width: 100%; height: 124%; object-fit: cover;
  will-change: transform;
}
.fest-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(18,11,24,0.92) 0%, rgba(18,11,24,0.72) 42%, rgba(18,11,24,0.28) 100%),
    linear-gradient(0deg, rgba(207,43,78,0.28), transparent 55%);
}
.fest .wrap { position: relative; z-index: 2; }
.fest-content { max-width: 600px; }
.fest .eyebrow { color: var(--yellow); }
.fest h2 { margin-bottom: 22px; }
.fest .addr {
  margin: 24px 0 32px; font-weight: 600;
  display: flex; gap: 10px; align-items: flex-start;
}
.fest .addr svg { flex: none; width: 22px; margin-top: 2px; color: var(--yellow); }

/* ============================================================
   WHAT'S COMING UP
   ============================================================ */
.upcoming { background: var(--ink); color: var(--white); position: relative; overflow: hidden; isolation: isolate; }
.up-glow {
  position: absolute; inset: -10% -20% auto -20%; height: 90%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 60% at 80% 24%, rgba(255,102,196,0.28), transparent 60%),
    radial-gradient(46% 64% at 14% 6%, rgba(140,82,255,0.32), transparent 62%),
    radial-gradient(40% 50% at 60% 90%, rgba(255,222,89,0.10), transparent 60%);
}
.up-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.up-orbs span {
  position: absolute; border-radius: 50%; filter: blur(36px); opacity: 0.5;
}
.up-orbs span:nth-child(1) { width: 320px; height: 320px; left: -60px; top: 12%; background: rgba(140,82,255,0.5); }
.up-orbs span:nth-child(2) { width: 260px; height: 260px; right: 4%; top: 30%; background: rgba(255,102,196,0.42); }
.up-orbs span:nth-child(3) { width: 200px; height: 200px; left: 38%; bottom: 6%; background: rgba(255,222,89,0.26); }
@media (prefers-reduced-motion: no-preference) {
  .up-orbs span:nth-child(1) { animation: orb-a 19s ease-in-out infinite alternate; }
  .up-orbs span:nth-child(2) { animation: orb-b 23s ease-in-out infinite alternate; }
  .up-orbs span:nth-child(3) { animation: orb-a 27s ease-in-out infinite alternate; }
}
@keyframes orb-a { to { transform: translate(60px, -40px) scale(1.15); } }
@keyframes orb-b { to { transform: translate(-50px, 40px) scale(1.1); } }
.upcoming .wrap { position: relative; z-index: 1; }
.up-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 54px);
}
.up-head .eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: var(--pink);
}
.up-intro {
  max-width: 420px; margin: 0;
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(22px, 2.6vw, 32px); line-height: 1.04; letter-spacing: 0.01em;
  color: rgba(245,241,232,0.5);
}
.up-intro__hl { color: var(--white); }

/* featured headliner */
.up-feature {
  position: relative; overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, #34195f 0%, #1a1422 64%, #241038 100%);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  display: grid; grid-template-columns: 1.2fr auto; align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(30px, 4vw, 52px);
  margin-bottom: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 70px rgba(27,15,54,0.34);
}
.up-feature__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background:
    radial-gradient(60% 120% at 90% 0%, rgba(255,102,196,0.4), transparent 55%),
    radial-gradient(60% 120% at 0% 100%, rgba(140,82,255,0.45), transparent 55%);
}
.up-feature__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 9px);
}
.up-feature__body { position: relative; z-index: 1; }
.up-feature__tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 14px;
}
.up-feature__body h3 {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px);
  letter-spacing: 0.01em; line-height: 0.92; margin: 0 0 14px;
}
.up-feature__body p { margin: 0 0 22px; color: rgba(245,241,232,0.82); max-width: 44ch; font-size: 16px; }

.up-countdown {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: clamp(6px, 1vw, 12px);
}
.up-feature__date {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 32px) clamp(26px, 4vw, 40px);
}
.ufd-month { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); letter-spacing: 0.08em; color: var(--pink); }
.ufd-day { font-family: var(--font-display); font-size: clamp(72px, 9vw, 110px); color: var(--yellow); letter-spacing: 0.01em; }
.ufd-year { font-family: var(--font-body); font-weight: 700; font-size: 14px; letter-spacing: 0.16em; color: rgba(245,241,232,0.66); margin-top: 8px; }

.up-list { display: flex; flex-direction: column; gap: 0; }
.up-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 34px) 8px;
  border-top: 2px solid rgba(255,255,255,0.14);
  color: var(--white);
  transition: padding-left 0.3s var(--ease), background 0.3s var(--ease);
}
.up-list .up-item:last-of-type { border-bottom: 2px solid rgba(255,255,255,0.14); }
.up-item:hover { background: rgba(255,255,255,0.05); padding-left: 22px; }
.up-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1; text-align: center;
}
.up-month { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em; color: var(--pink); }
.up-day { font-family: var(--font-display); font-size: clamp(44px, 5vw, 60px); color: var(--yellow); }
.up-year { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; color: rgba(245,241,232,0.55); margin-top: 4px; }
.up-info { min-width: 0; }
.up-tag {
  display: inline-block; font-family: var(--font-body); font-weight: 800;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #c9a6ff; margin-bottom: 8px;
}
.up-info h3 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); letter-spacing: 0.01em; margin: 0 0 8px; line-height: 1; }
.up-info p { margin: 0; font-size: 15.5px; color: rgba(245,241,232,0.72); max-width: 52ch; }
.up-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
  white-space: nowrap;
}
.up-cta .arr { color: var(--pink); transition: transform 0.25s var(--ease); }
.up-item:hover .up-cta .arr { transform: translateX(5px); }
.up-status { border-bottom: 2px solid var(--yellow); padding-bottom: 3px; }
.up-note { text-align: center; margin-top: clamp(28px, 4vw, 40px); font-size: 14px; color: rgba(245,241,232,0.5); }
@media (max-width: 820px) {
  .up-feature { grid-template-columns: 1fr; }
  .up-feature__date { justify-self: start; flex-direction: row; align-items: baseline; gap: 12px; }
}
@media (max-width: 680px) {
  .up-item { grid-template-columns: 86px 1fr; }
  .up-cta { grid-column: 2; justify-self: start; margin-top: 4px; }
  .up-day { font-size: 40px; }
}

/* ============================================================
   7 · ALUMNI
   ============================================================ */
.alumni { background: #000; position: relative; overflow: hidden; isolation: isolate; }
.alumni-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22;
}
/* darken edges so the video cards stay the focus */
.alumni::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 22%, transparent 78%, rgba(0,0,0,0.65) 100%),
    radial-gradient(120% 90% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
}
/* cinematic spotlight glows behind the cards */
.alumni-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(46% 40% at 22% 30%, rgba(140,82,255,0.30), transparent 70%),
    radial-gradient(44% 42% at 80% 36%, rgba(255,102,196,0.26), transparent 70%),
    radial-gradient(60% 50% at 50% 108%, rgba(255,87,87,0.18), transparent 70%);
  filter: saturate(1.1);
}
@media (prefers-reduced-motion: no-preference) {
  .alumni-glow { animation: glow-drift 14s ease-in-out infinite alternate; }
}
@keyframes glow-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1.02); opacity: 0.85; }
  to   { transform: translate3d(2%, 1.5%, 0) scale(1.08); opacity: 1; }
}
.alumni .wrap { position: relative; z-index: 2; }
.alumni-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.alumni-head .eyebrow { color: var(--pink); }
.alumni-head h2 { color: var(--white); text-shadow: 0 0 40px rgba(140,82,255,0.45); }
.alumni-head .lead { color: rgba(255,255,255,0.7) !important; }
/* now-showing marquee badge */
.now-showing {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  padding: 9px 20px; border-radius: 999px;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--yellow) !important;
  backdrop-filter: blur(4px);
}
.now-showing .reel-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(255,87,87,0.7);
}
@media (prefers-reduced-motion: no-preference) {
  .now-showing .reel-dot { animation: rec-pulse 1.8s ease-out infinite; }
}
@keyframes rec-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,87,87,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,87,87,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,87,87,0); }
}
.alumni-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.acard {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(20,18,26,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.acard:hover { transform: translateY(-8px); box-shadow: 0 26px 50px rgba(122,63,200,0.26); }
.acard .ph { aspect-ratio: 1/1; border-radius: 0; }
.acard .body { padding: 26px 26px 30px; }
.acard .school {
  font-family: var(--font-display); font-size: 26px; letter-spacing: 0.02em; color: var(--purple);
  line-height: 1; margin-bottom: 14px;
}
.acard p { margin: 0; color: #3a3642; font-size: 16px; }

/* student video testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard {
  position: relative;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease);
}
.tcard:hover { transform: translateY(-8px); }
/* glowing film-frame ring around each video */
.tcard .testi-video.has-video {
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10);
  transition: box-shadow 0.4s var(--ease);
}
.tcard:hover .testi-video.has-video {
  box-shadow:
    0 0 0 1px rgba(255,222,89,0.6),
    0 0 34px rgba(140,82,255,0.45),
    0 22px 60px rgba(255,102,196,0.35);
}
.testi-video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 0;
  cursor: pointer;
  flex-direction: column; gap: 16px;
}
.testi-video .play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--pink); color: var(--white);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.testi-video .play-btn svg { width: 24px; height: 24px; margin-left: 3px; }
.tcard:hover .testi-video .play-btn { transform: scale(1.1); background: var(--purple); }
/* empty placeholder slot — outline so it reads on black */
.testi-video.ph.on-dark {
  background-color: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 8px;
}
/* slot filled with a real video — transparent so the section glow shows through the letterbox, blending the video's black borders */
.testi-video.has-video { background: transparent; cursor: default; padding: 0; }
.testi-video.has-video video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block;
  border-radius: 22px;
}
.testi-video.has-video .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 0; cursor: pointer; z-index: 2;
}
.testi-video.has-video .play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: var(--purple); }
.testi-video.has-video.playing .play-btn { display: none; }
.testi-cap {
  padding: 18px 8px 24px;
  display: flex; flex-direction: column; line-height: 1.3;
}
.testi-name { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.02em; color: var(--yellow); text-shadow: 0 0 18px rgba(255,222,89,0.35); }
.testi-role { font-size: 14px; color: rgba(255,255,255,0.6); }
.alumni-close {
  text-align: center; margin: 56px auto 0; max-width: 1040px;
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 46px);
  color: var(--white); line-height: 1.02; letter-spacing: 0.01em;
}

/* ============================================================
   8 · GET INVOLVED
   ============================================================ */
.involved { background: var(--purple-deep); color: var(--white); position: relative; overflow: hidden; isolation: isolate; }
.involved-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.involved-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(225,44,139,0.86) 0%, rgba(225,44,139,0.74) 45%, rgba(140,82,255,0.7) 100%),
    linear-gradient(0deg, rgba(18,16,22,0.5), transparent 60%);
}
.involved-top { max-width: 760px; margin-bottom: 60px; }
.involved h2 { margin-bottom: 18px; }
.involved-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.icard {
  background: rgba(18,16,22,0.32);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
  border-radius: 14px; padding: 30px 26px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.icard:hover { transform: translateY(-8px); background: rgba(18,16,22,0.5); border-color: rgba(255,255,255,0.45); }
.icard h3 { font-size: clamp(24px,2.4vw,30px); margin: 0 0 12px; }
.icard p { margin: 0 0 24px; font-size: 15.5px; color: rgba(255,255,255,0.92); flex: 1; }
.icard-link {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white);
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.icard-link .arr { color: var(--yellow); transition: transform 0.25s var(--ease); }
.icard-link:hover { color: var(--yellow); border-color: var(--yellow); gap: 12px; }
.icard-link:hover .arr { transform: translateX(3px); }
.icard-link.primary { color: var(--yellow); border-color: var(--yellow); }
.icard-link.primary:hover { color: #fff; border-color: #fff; }
.icard-link.primary:hover .arr { color: #fff; }

/* ============================================================
   9 · STAY CONNECTED
   ============================================================ */
.connect { background: var(--purple-deep); color: var(--white); position: relative; overflow: hidden; isolation: isolate; }
.connect-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
}
.connect-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(122,63,200,0.94) 0%, rgba(122,63,200,0.82) 42%, rgba(43,20,80,0.62) 100%),
    linear-gradient(0deg, rgba(18,16,22,0.55), transparent 55%);
}
.connect-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px,6vw,80px); align-items: center; }
.connect h2 .hl { color: var(--yellow); }
.subscribe { margin: 28px 0 18px; display: flex; gap: 12px; flex-wrap: wrap; }
.subscribe input {
  flex: 1; min-width: 220px; padding: 16px 20px; border-radius: 999px; border: 2px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.14); color: var(--white); font-size: 16px; font-family: var(--font-body);
}
.subscribe input::placeholder { color: rgba(255,255,255,0.7); }
.subscribe input:focus { outline: none; border-color: var(--yellow); }
.form-note { font-size: 14px; opacity: 0.85; }
.ig-feed {
  background: rgba(18,16,22,0.34);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 36px 32px;
  backdrop-filter: blur(4px);
}
.ig-icon {
  display: inline-grid; place-items: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white); margin-bottom: 18px;
}
.ig-icon svg { width: 28px; height: 28px; }
.ig-handle {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.01em; color: var(--white); margin: 0; line-height: 1;
}

/* ============================================================
   NEWSLETTER POPUP
   ============================================================ */
.np-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(10,8,14,0.72);
  backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.np-overlay[hidden] { display: none; }
.np-overlay.open { opacity: 1; }
.np-modal {
  position: relative;
  width: min(460px, 100%);
  background: linear-gradient(150deg, #2b1450 0%, #14121A 70%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: translateY(26px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.np-overlay.open .np-modal { transform: none; opacity: 1; }
.np-strip {
  height: 14px;
  background:
    linear-gradient(90deg, var(--purple) 0 33.33%, var(--pink) 33.33% 66.66%, var(--yellow) 66.66% 100%);
}
.np-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,0.12); color: var(--white);
  display: grid; place-items: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.np-close:hover { background: var(--pink); transform: rotate(90deg); }
.np-close svg { width: 18px; height: 18px; }
.np-body { padding: 34px clamp(26px, 5vw, 42px) 32px; color: var(--white); }
.np-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 800; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow);
  margin: 0 0 14px;
}
.np-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 0 rgba(255,102,196,0.7); }
@media (prefers-reduced-motion: no-preference) { .np-dot { animation: rec-pulse 1.8s ease-out infinite; } }
.np-title { font-size: clamp(40px, 9vw, 58px); line-height: 0.9; margin: 0 0 16px; }
.np-title .hl { color: var(--yellow); }
.np-sub { font-size: 16px; line-height: 1.55; color: rgba(245,241,232,0.82); margin: 0 0 22px; }
.np-form { display: flex; gap: 10px; flex-wrap: wrap; position: relative; }
.np-form input {
  flex: 1; min-width: 200px; padding: 15px 18px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.12);
  color: var(--white); font-size: 16px; font-family: var(--font-body);
}
.np-form input::placeholder { color: rgba(255,255,255,0.6); }
.np-form input:focus { outline: none; border-color: var(--yellow); }
.np-form .btn { flex: none; }
.np-note { font-size: 13px; color: rgba(245,241,232,0.62); margin: 14px 0 0; }
.np-dismiss {
  display: block; margin: 16px auto 0; padding: 4px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; letter-spacing: 0.02em;
  color: rgba(245,241,232,0.5); text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.np-dismiss:hover { color: var(--white); }
@media (prefers-reduced-motion: reduce) {
  .np-overlay, .np-modal { transition: opacity 0.2s; }
  .np-modal { transform: none; }
}
.ig-follow { color: var(--white); opacity: 0.9; transition: color 0.2s, opacity 0.2s; }
.ig-follow:hover { color: var(--yellow); opacity: 1; }
.ig-follow strong { color: var(--yellow); }

/* ============================================================
   10 · CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.contact .email-big {
  font-family: var(--font-display); font-size: clamp(30px,4vw,52px);
  color: var(--purple); letter-spacing: 0.01em; margin: 18px 0 0; display: inline-block;
}
.cform { display: grid; gap: 16px; }
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform input, .cform textarea {
  width: 100%; padding: 15px 18px; border-radius: 10px; border: 2px solid rgba(20,18,26,0.14);
  font-family: var(--font-body); font-size: 16px; background: var(--white); color: var(--ink);
  transition: border-color 0.2s;
}
.cform textarea { min-height: 140px; resize: vertical; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--purple); }
.field-err { border-color: var(--orange) !important; }
.form-success { color: var(--purple); font-weight: 700; }

/* ============================================================
   11 · FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--white); padding: 0; }
.footer .inner { padding-block: clamp(56px, 8vw, 90px); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer .brand { font-size: 44px; margin-bottom: 14px; }
.footer-logo { width: 96px; height: 96px; border-radius: 50%; display: block; margin-bottom: 18px; }
.footer .tag { max-width: 340px; color: rgba(255,255,255,0.7); font-size: 16px; }
.footer-nav { display: flex; gap: clamp(40px, 7vw, 90px); flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-display); letter-spacing: 0.08em; font-size: 18px; color: var(--yellow); margin: 0 0 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.78); font-size: 15px; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink); }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.25); transition: all 0.25s var(--ease);
}
.socials a:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 14px; color: rgba(255,255,255,0.55);
}
.footer-bottom .made b { color: var(--yellow); }

/* ============================================================
   TWEAK-DRIVEN OVERRIDES (driven by the REEL FILM FEST panel)
   ============================================================ */
/* hero background style */
body[data-hero="black"]  .hero-video-ph { background: var(--ink); }
body[data-hero="purple"] .hero-video-ph {
  background: radial-gradient(120% 100% at 30% 0%, var(--pink), transparent 60%), var(--purple);
}
/* marquee speed */
body[data-marquee="off"]  .marquee .marquee__track { animation: none; }
body[data-marquee="slow"] .marquee .marquee__track { animation-duration: 48s; }
body[data-marquee="fast"] .marquee .marquee__track { animation-duration: 16s; }
/* motion off */
body.no-motion .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
body.no-motion .reveal-up,
body.no-motion .hero-h1 .w { opacity: 1 !important; transform: none !important; animation: none !important; }
body.no-motion .marquee .marquee__track,
body.no-motion .filmstrip { animation: none !important; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in.in { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay: 0.08s; }
.fade-in.d2 { transition-delay: 0.16s; }
.fade-in.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .reveal-up { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .involved-cols { grid-template-columns: repeat(2, 1fr); }
  .journey, .gallery, .alumni-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { 
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    background: var(--ink); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 26px; padding: 40px var(--gutter);
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }
  body.menu-open .nav-links { transform: none; }
  .nav-links a { font-size: 22px; }
  .nav-toggle { display: block; z-index: 110; }
  .about-grid, .about-illo, .fest-grid, .involved-top, .connect-grid, .contact-grid,
  .slate-band, .gallery-duo {
    grid-template-columns: 1fr;
  }
  .gallery-duo { max-width: 560px; }
  .slate-illo { order: -1; }
  .slate-illo svg { transform: rotate(-3deg); width: min(86%, 360px); }
  .about-illo { gap: 36px; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .journey, .gallery, .alumni-grid, .testi-grid, .involved-cols { grid-template-columns: 1fr; }
  .cform .row { grid-template-columns: 1fr; }
  body { font-size: 17px; }
}
