/* ============================================================
   HOME PAGE
   ============================================================ */

/* ============================================================
   CINEMA THEATRE — scroll-zoom into the screen (pinned)
   ============================================================ */
.cinema { position: relative; height: 300vh; background: #000; z-index: 5; }
.cinema__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: #000; }
.cinema__world { position: absolute; inset: 0; transform-origin: 50% 41%; will-change: transform; backface-visibility: hidden; }

/* real cinema photo, scaled to COVER the viewport while keeping its aspect ratio
   (so the % positions of the screen below always line up with the photo) */
.cv-photo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: max(100vw, calc(100vh * 1.7921)); height: max(100vh, calc(100vw / 1.7921)); }
.cv-photo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* the screen region inside the photo — matches the photo's actual screen, edge to edge */
.cv-screen { position: absolute; left: 33%; top: 26.2%; width: 34%; height: 29%; z-index: 3; }
.cv-screen__inner { position: absolute; inset: 0; overflow: hidden; background: transparent; }
.cv-screen__glow { position: absolute; inset: 0; z-index: 2; pointer-events: none; transition: opacity .5s linear;
  background: radial-gradient(70% 90% at 50% 46%, rgba(247,242,227,0.30), transparent 72%); }
/* video overscanned so it COVERS the screen AND pushes YouTube's title bar +
   controls out of the visible crop — only the plain film shows */
.cv-screen iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 132%; height: auto; aspect-ratio: 16 / 9; border: 0; z-index: 1; }
.cv-screen__block { position: absolute; inset: 0; z-index: 4; background: transparent; }
/* keep the video edges clean against the photo's screen frame */
.cv-screen__feather { position: absolute; inset: -1px; z-index: 3; pointer-events: none;
  box-shadow: inset 0 0 5px 1px rgba(0,0,0,0.3); }

/* title centred on the screen — lives inside the photo so it tracks the zoom */
.cinema__title { position: absolute; left: 50%; top: 41%; transform: translate(-50%, -50%);
  z-index: 6; width: 27%; text-align: center; transition: opacity .5s ease; }
.cinema__title .eyebrow { display: block; color: #2a2014; font-size: clamp(5px, 0.56vw, 10px);
  letter-spacing: 0.06em; line-height: 1.55; text-transform: uppercase; font-weight: 600; }
.cinema__title .eyebrow::before, .cinema__title .eyebrow::after { display: none; }

/* scroll hint */
.cinema__hint { position:absolute; left:50%; bottom: 30px; transform:translateX(-50%); z-index:9;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-family: var(--heading); font-size: 11px; letter-spacing:0.3em; text-transform:uppercase; color: rgba(243,239,230,0.75);
  transition: opacity .4s ease; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.cinema__hint .chev { width:20px; height:30px; border:1px solid rgba(243,239,230,0.5); border-radius:11px; position:relative; }
.cinema__hint .chev::after { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:3px; height:7px; border-radius:2px; background: var(--gold-light); animation: scrollDot 1.8s ease-in-out infinite; }
.cinema__title { position:absolute; left:50%; top: 41%; transform: translate(-50%,-50%); z-index:9; text-align:center; transition: opacity .5s ease; width: min(760px, 70vw); }
@media (max-width:760px){ .cinema__title { width: 78vw; } }
.cinema__title .eyebrow { justify-content:center; color: #0a0a0a; font-size: 11px; letter-spacing: 0.26em; flex-wrap: wrap; }
.cinema__title .eyebrow::before, .cinema__title .eyebrow::after { background: linear-gradient(90deg, transparent, #0a0a0a); }
.cinema__title h2 { font-family: var(--display); font-size: clamp(30px,5vw,64px); color: #0a0a0a; margin-top:14px; letter-spacing:0.04em; }
.cinema__sound { position:absolute; right: 22px; bottom: 22px; z-index:11; display:none; align-items:center; gap:9px;
  padding:11px 16px; border:1px solid var(--line); background:rgba(0,0,0,0.55); color:var(--cream);
  font-family:var(--heading); font-size:11px; letter-spacing:0.18em; text-transform:uppercase; cursor:pointer; backdrop-filter: blur(6px); transition: all .35s var(--ease); }
.cinema__sound.show { display:inline-flex; }
.cinema__sound:hover { border-color: var(--gold); color: var(--gold-light); }
.cinema__sound svg { width:15px; height:15px; }
.cinema__sound .ic-on { display:none; }
.cinema__sound:not(.is-muted) .ic-muted { display:none; }
.cinema__sound:not(.is-muted) .ic-on { display:inline; }

/* fade-to-black at the end of the scroll */
.cinema__black { position:absolute; inset:0; z-index:40; background:#000; opacity:0; pointer-events:none; }

/* mute / unmute button */
.cinema__sound { position:absolute; right:22px; bottom:24px; z-index:45;
  display:inline-flex; align-items:center; gap:10px; padding:11px 16px;
  background:rgba(10,8,6,0.62); border:1px solid rgba(212,175,55,0.45); color:var(--cream);
  font-family:var(--heading); font-size:11px; letter-spacing:0.18em; text-transform:uppercase;
  cursor:pointer; backdrop-filter:blur(8px); border-radius:2px;
  transition: background .35s ease, border-color .35s ease, transform .35s var(--ease); }
.cinema__sound:hover { background:rgba(20,15,8,0.82); border-color:var(--gold); transform:translateY(-2px); }
.cinema__sound svg { width:17px; height:17px; }
.cinema__sound .i-sound { display:none; color:var(--gold-light); }
.cinema__sound[data-muted="false"] .i-mute { display:none; }
.cinema__sound[data-muted="false"] .i-sound { display:block; }
.cinema__sound[data-muted="false"] { border-color:rgba(212,175,55,0.7); }

@media (max-width: 760px){
  .cinema { height: 220vh; }
  .cv-screen { left: 50%; top: 26.2%; transform: translateX(-50%); width: 92vw; height: auto; aspect-ratio: 16/9; }
  .cv-screen iframe { width: 100%; height: 100%; top: 0; left: 0; transform: none; aspect-ratio: auto; }
  .cinema__title { width: 88vw; }
  .cinema__title .eyebrow { font-size: 9px; letter-spacing: 0.14em; }
  .cinema__title h2 { font-size: clamp(26px, 8.5vw, 42px); }
  .cinema__sound { right: 13px; bottom: 13px; padding: 9px 12px; font-size: 10px; }
  .cinema__hint { font-size: 9.5px; }
}
@media (prefers-reduced-motion: reduce){
  .cinema { height: auto; }
  .cinema__sticky { position: relative; height: auto; padding: calc(var(--nav-h) + 30px) 0 60px; }
  .cv-seats, .cinema__hint { display:none; }
  .cv-screen { position:relative; left:auto; top:auto; transform:none; margin: 0 auto; width: min(900px,92vw); }
  .cinema__world { position:relative; transform:none !important; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
/* blend the cinema's fade-to-black seamlessly into the hero */
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 70vh; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.82) 16%, rgba(0,0,0,0.4) 40%, transparent 100%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 120vw; height: 90vh;
  background:
    radial-gradient(50% 60% at 50% 40%, rgba(212, 175, 55, 0.16) 0%, rgba(212,175,55,0.04) 35%, transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__rays {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background:
    conic-gradient(from 210deg at 70% -10%, transparent 0deg, rgba(212,175,55,0.06) 18deg, transparent 36deg, transparent 90deg, rgba(212,175,55,0.05) 120deg, transparent 150deg);
  mix-blend-mode: screen;
  animation: rayShift 22s ease-in-out infinite alternate;
}
@keyframes rayShift { to { transform: translateX(4%) scale(1.05); } }

.hero__lens {
  position: absolute; top: 22%; right: 12%;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(246,228,166,0.5), rgba(212,175,55,0.12) 40%, transparent 70%);
  filter: blur(14px); opacity: 0.55; pointer-events: none;
  animation: lensFloat 14s ease-in-out infinite alternate;
}
@keyframes lensFloat { to { transform: translate(-30px, 24px) scale(1.1); opacity: 0.35; } }

.hero__inner { position: relative; z-index: 5; text-align: center; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--heading);
  font-size: 12px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 34px;
}
.filmreel {
  width: 16px; height: 16px; border: 1.5px solid var(--gold); border-radius: 50%;
  position: relative; display: inline-block;
}
.filmreel::before { content: ""; position: absolute; inset: 4px; border-radius: 50%; border: 1.5px solid var(--gold); }

.hero__title {
  color: var(--cream);
  margin: 0 auto;
  text-shadow: 0 6px 60px rgba(0,0,0,0.6);
}
.hero__title .w { display: inline-block; overflow: hidden; padding: 0.2em 0.05em 0.1em; margin: -0.18em -0.01em -0.08em; vertical-align: top; }
.hero__title .i {
  display: inline-block; transform: translateY(122%);
  animation: wordRise 1.1s var(--ease) forwards;
}
.hero__title .w:nth-child(1) .i { animation-delay: .15s; }
.hero__title .w:nth-child(2) .i { animation-delay: .28s; }
.hero__title .w:nth-child(3) .i { animation-delay: .41s; }
@keyframes wordRise { to { transform: translateY(0); } }

.hero__sub {
  font-size: clamp(17px, 2vw, 23px);
  color: var(--text);
  max-width: 56ch; margin: 30px auto 0;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 5;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--text-faint);
}
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--gold-light); animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(-100%); } 70%,100% { transform: translateY(280%); } }

.hero__tag {
  position: absolute; bottom: 40px; right: clamp(20px,5vw,64px);
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--heading); font-size: 12px; font-weight: 500; color: var(--text-faint);
  letter-spacing: 0.2em; text-transform: uppercase;
}
@media (max-width: 760px) { .hero__tag { display: none; } }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: rgba(20,16,8,0.3); }
.marquee__track { display: flex; align-items: center; gap: 38px; width: max-content; animation: marq 38s linear infinite; }
.marquee__track span { font-family: var(--display); font-size: clamp(24px, 3.2vw, 44px); color: var(--cream); white-space: nowrap; opacity: 0.5; letter-spacing: 0.04em; }
.marquee__track i { color: var(--gold); font-style: normal; font-size: 14px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- INTRO ---------- */
.intro__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.intro__left h2 { margin-top: 22px; }
.intro__p2 { margin-top: 22px; font-size: 16px; }
@media (max-width: 880px) { .intro__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- STATS ---------- */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 44px 14px; text-align: center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--display); font-size: clamp(40px, 5vw, 70px); color: var(--gold-light); line-height: 1; font-weight: 600; }
.stat__lbl { margin-top: 12px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--text-dim); }
@media (max-width: 720px) { .stats__grid { grid-template-columns: repeat(2,1fr); } .stat:nth-child(2){ border-right:0; } .stat:nth-child(1),.stat:nth-child(2){ border-bottom: 1px solid var(--line-soft);} }

/* ---------- FEATURED ---------- */
.featured__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.featured__card {
  position: relative; display: block; aspect-ratio: 16 / 8.4;
  border: 1px solid var(--line); overflow: hidden;
}
@media (max-width: 760px) { .featured__card { aspect-ratio: 4 / 5; } }
.featured__media { position: absolute; inset: 0; }
.featured__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,6,0.92) 0%, rgba(7,7,6,0.55) 42%, rgba(7,7,6,0.15) 75%, transparent 100%); }
.featured__meta { position: absolute; left: clamp(24px,5%,64px); bottom: clamp(28px,6%,56px); right: 24px; max-width: 560px; z-index: 3; }
.featured__badge { display: inline-block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--line); padding: 7px 14px; margin-bottom: 20px; background: rgba(0,0,0,0.3); }
.featured__title { color: #fff; }
.featured__desc { color: var(--text); margin-top: 16px; font-size: 16px; max-width: 50ch; }
.featured__tags { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.featured__tags span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); padding: 6px 12px; border: 1px solid var(--line-soft); }
.featured__play { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--gold-light); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.featured__play svg { width: 30px; height: 30px; padding: 8px; border: 1px solid var(--gold); border-radius: 50%; transition: all .4s var(--ease); }
.featured__card:hover .featured__play svg { background: var(--gold); color: #1a1304; box-shadow: 0 0 24px rgba(212,175,55,0.5); }

/* placeholder striped media */
.ph-stripes { position: absolute; inset: 0; background:
  repeating-linear-gradient(125deg, #16140f 0px, #16140f 22px, #1c1913 22px, #1c1913 44px);
}
.ph-stripes::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 90% at 70% 30%, rgba(212,175,55,0.10), transparent 60%); }
.ph-label { position: absolute; top: 18px; right: 20px; font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--text-faint); z-index: 2; }

/* ---------- SHOWREEL ---------- */
.showreel__head { text-align: center; margin-bottom: 48px; }
.showreel__head .eyebrow { margin-bottom: 18px; }
.player { position: relative; aspect-ratio: 16/9; border: 1px solid var(--line); box-shadow: 0 40px 120px -40px rgba(212,175,55,0.25); background: #000; }
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player::before, .player::after { content: ""; position: absolute; left: 0; right: 0; height: 34px; background: #000; z-index: 4; pointer-events: none; }
/* letterbox bars only as decorative frame edges */
.player { --b: 0px; }

/* ---------- DISCIPLINES ---------- */
.disciplines__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; }
.disc-all { margin-bottom: 10px; }
.disciplines__list { border-top: 1px solid var(--line); }
.disc {
  display: flex; align-items: center; gap: 28px;
  padding: clamp(22px, 3.4vw, 40px) 8px;
  border-bottom: 1px solid var(--line-soft);
  position: relative; overflow: hidden;
  transition: padding-left .5s var(--ease);
}
.disc::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(212,175,55,0.10), transparent 60%); transform: translateX(-100%); transition: transform .6s var(--ease); }
.disc:hover::before { transform: translateX(0); }
.disc:hover { padding-left: 26px; }
.disc__no { font-family: var(--display); font-size: 15px; color: var(--gold); width: 40px; flex: none; }
.disc__name { font-family: var(--display); font-size: clamp(26px, 4vw, 52px); color: var(--cream); flex: 1; transition: color .4s; }
.disc:hover .disc__name { color: #fff; }
.disc__ar { font-size: 26px; color: var(--gold); opacity: 0; transform: translateX(-12px); transition: all .45s var(--ease); }
.disc:hover .disc__ar { opacity: 1; transform: none; }

/* ---------- CTA ---------- */
.cta { text-align: center; overflow: hidden; }
.cta__glow { position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%); width: 80vw; height: 80vh; background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 62%); filter: blur(20px); pointer-events: none; }
.cta__inner { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; }
.cta__mark { width: 78px; margin-bottom: 30px; filter: drop-shadow(0 0 26px rgba(212,175,55,0.4)); animation: markPulse 5s ease-in-out infinite; }
@keyframes markPulse { 50% { filter: drop-shadow(0 0 40px rgba(212,175,55,0.7)); } }
.cta__title { color: var(--cream); }
.cta__sub { margin: 26px auto 40px; text-align: center; }
