/* ============================================
   TOKENS
   ============================================ */
:root {
  --ink: #1B1035;
  --ink-2: #150C29;
  --ink-3: #241645;
  --coral: #FF6B5B;
  --lime: #C6FF3D;
  --gold: #F5B942;
  --grape: #8A4CF7;
  --cloud: #FBF7F2;
  --cloud-soft: rgba(251, 247, 242, 0.72);
  --cloud-faint: rgba(251, 247, 242, 0.14);

  --font-display: 'Clash Display', 'General Sans', sans-serif;
  --font-body: 'General Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --container: 1180px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cloud);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: default;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.accent { color: var(--coral); }
.accent-underline { background-image: linear-gradient(var(--lime), var(--lime)); background-repeat: no-repeat; background-size: 100% 0.28em; background-position: 0 88%; color: var(--cloud); padding: 0 .08em; }

/* Film grain overlay */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom cursor (desktop only) */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1000; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--lime); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid var(--cloud-faint); transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease); }
.cursor-ring.hover { width: 56px; height: 56px; border-color: var(--coral); background: rgba(255,107,91,0.08); }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* Top scrubber bar */
.scrubber { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: var(--cloud-faint); z-index: 998; }
.scrubber-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--coral), var(--gold), var(--lime)); }

/* ============================================
   HEADER
   ============================================ */
.site-header { position: fixed; top: 12px; left: 0; width: 100%; z-index: 900; }
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo-pill {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  background: rgba(27,16,53,0.65); backdrop-filter: blur(14px);
  border: 1px solid var(--cloud-faint);
  padding: 10px 22px; border-radius: 999px;
}
.main-nav { display: flex; gap: 6px; background: rgba(27,16,53,0.65); backdrop-filter: blur(14px); border: 1px solid var(--cloud-faint); padding: 6px; border-radius: 999px; }
.main-nav a { font-size: 0.9rem; font-weight: 500; padding: 8px 16px; border-radius: 999px; transition: background .2s var(--ease), color .2s var(--ease); position: relative; }
.main-nav a:hover { background: var(--cloud); color: var(--ink); }
.header-right { display: flex; align-items: center; gap: 14px; }
.timecode { font-family: var(--font-mono); font-size: 0.68rem; color: var(--lime); letter-spacing: 0.02em; display: inline-block; }
@media (min-width: 640px) { .timecode { font-size: 0.78rem; } }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: rgba(27,16,53,0.65); border: 1px solid var(--cloud-faint);
  border-radius: 50%; align-items: center;
}
.burger span { width: 18px; height: 2px; background: var(--cloud); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100%; width: min(78vw, 320px); z-index: 890;
  background: var(--ink-2); border-left: 1px solid var(--cloud-faint);
  display: flex; flex-direction: column; gap: 4px; padding: 100px 28px 28px;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.4rem; padding: 14px 0; border-bottom: 1px solid var(--cloud-faint); }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .burger { display: flex; }
}

@media (max-width: 400px) {
  .logo-pill { padding: 8px 16px; font-size: 1rem; }
  .header-inner { gap: 10px; padding: 0 14px; }
  .header-right { gap: 8px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 140px 20px 80px; max-width: var(--container); margin: 0 auto; overflow: hidden;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.45; pointer-events: none; }
.blob-a { width: 460px; height: 460px; background: var(--grape); top: -120px; right: -120px; animation: float-a 14s ease-in-out infinite; }
.blob-b { width: 340px; height: 340px; background: var(--coral); bottom: -80px; left: -80px; animation: float-b 16s ease-in-out infinite; }
.blob-c { width: 260px; height: 260px; background: var(--gold); top: 40%; right: 15%; opacity: 0.25; animation: float-a 11s ease-in-out infinite reverse; }
@keyframes float-a { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 40px); } }
@keyframes float-b { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px, -30px); } }

.rec-badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  background: var(--cloud-faint); border: 1px solid var(--cloud-faint);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 28px;
}
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(0.7); } }

.hero-title { font-size: clamp(3.6rem, 12vw, 8.5rem); line-height: 0.92; }
.hero-title .line { display: block; opacity: 0; transform: translateY(40px); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 20px; opacity: 0; transform: translateY(20px); }
.tag { font-size: 0.82rem; font-weight: 600; padding: 8px 16px; border-radius: 999px; }
.tag-coral { background: var(--coral); color: var(--ink); }
.tag-lime { background: var(--lime); color: var(--ink); }
.tag-gold { background: var(--gold); color: var(--ink); }

.hero-sub { max-width: 480px; font-size: 1.15rem; color: var(--cloud-soft); opacity: 0; transform: translateY(20px); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; opacity: 0; transform: translateY(20px); }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: none; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.btn-primary { background: linear-gradient(120deg, var(--coral), var(--gold)); color: var(--ink); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -10px rgba(255,107,91,0.5); }
.btn-ghost { background: transparent; border: 1.5px solid var(--cloud-faint); color: var(--cloud); }
.btn-ghost:hover { background: var(--cloud); color: var(--ink); transform: translateY(-3px); }
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }

.permit-note { margin-top: 32px; font-family: var(--font-mono); font-size: 0.7rem; color: rgba(251,247,242,0.4); opacity: 0; }

.hero-portrait {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; position: static; transform: none; margin: 44px auto 0; max-width: 340px;
}
@media (min-width: 980px) {
  .hero-portrait { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); display: block; margin: 0; max-width: none; }
}

.portrait-frame { position: relative; width: 200px; height: 200px; flex-shrink: 0; }
@media (min-width: 980px) { .portrait-frame { width: 300px; height: 300px; } }
.portrait-ring { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(var(--coral), var(--gold), var(--lime), var(--grape), var(--coral)); animation: spin 12s linear infinite; padding: 6px; }
.portrait-ring::after { content: ''; position: absolute; inset: 6px; border-radius: 50%; background: var(--ink); }
@keyframes spin { to { transform: rotate(360deg); } }
.portrait-photo { position: absolute; inset: 22px; width: calc(100% - 44px); height: calc(100% - 44px); border-radius: 50%; object-fit: cover; object-position: center 20%; }
.portrait-aperture { position: absolute; inset: 22px; border-radius: 50%; border: 1px dashed rgba(251,247,242,0.25); animation: spin 20s linear infinite reverse; }

.stat-chip { position: static; display: flex; align-items: center; gap: 10px; background: rgba(27,16,53,0.85); backdrop-filter: blur(10px); border: 1px solid var(--cloud-faint); padding: 10px 16px; border-radius: 16px; animation: bob 5s ease-in-out infinite; }
.stat-chip strong { display: block; font-size: 0.95rem; }
.stat-chip small { color: var(--cloud-soft); font-size: 0.7rem; }
.chip-icon { font-size: 1.1rem; }
@media (min-width: 980px) {
  .stat-chip { position: absolute; }
  .chip-1 { top: -10px; left: -40px; animation-delay: 0s; }
  .chip-2 { bottom: 40px; right: -50px; animation-delay: 1.2s; }
  .chip-3 { bottom: -20px; left: 10px; animation-delay: 2.4s; }
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.15em; color: var(--cloud-soft); }
.scroll-cue-line { width: 1px; height: 32px; background: linear-gradient(var(--cloud-soft), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================
   REVEAL ANIMATION (scroll)
   ============================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
.hero-title .line.in-view, .hero-tags.in-view, .hero-sub.in-view, .hero-cta.in-view, .permit-note.in-view { opacity: 1; transform: translateY(0); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar { background: var(--ink-2); border-top: 1px solid var(--cloud-faint); border-bottom: 1px solid var(--cloud-faint); padding: 48px 20px; }
.stats-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); display: block; color: var(--lime); }
.stat-highlight .stat-num { color: var(--coral); }
.stat-label { font-size: 0.78rem; color: var(--cloud-soft); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================
   SECTION SHARED
   ============================================ */
section { padding: 120px 20px; max-width: var(--container); margin: 0 auto; }
.section-eyebrow { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 16px; }
.tc { color: rgba(251,247,242,0.4); }
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 48px; max-width: 640px; }

/* ============================================
   AWARD
   ============================================ */
.award { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .award { grid-template-columns: 1fr; gap: 40px; } }

.award-photo { position: relative; border-radius: 26px; overflow: hidden; border: 1px solid var(--cloud-faint); }
.award-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.award-glow { position: absolute; inset: -40%; background: conic-gradient(from 0deg, var(--gold), var(--coral), var(--lime), var(--grape), var(--gold)); opacity: 0.35; filter: blur(60px); z-index: -1; animation: spin 16s linear infinite; }

.award-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.award-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); margin-bottom: 20px; }
.award-copy > p:last-child { color: var(--cloud-soft); font-size: 1.05rem; max-width: 480px; }

/* ============================================
   ON LOCATION (travel gallery)
   ============================================ */
.location-gallery { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; padding-top: 20px; }
.location-photo { width: min(340px, 100%); border-radius: 20px; overflow: hidden; border: 6px solid var(--cloud); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6); transition: transform .4s var(--ease); }
.location-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.tilt-left { transform: rotate(-4deg); }
.tilt-right { transform: rotate(4deg); }
.location-photo:hover { transform: rotate(0deg) scale(1.03); }

/* ============================================
   ABOUT
   ============================================ */
.about-grid { display: grid; grid-template-columns: 0.75fr 1.15fr 0.9fr; gap: 44px; align-items: start; }
@media (max-width: 1080px) { .about-grid { grid-template-columns: 1fr 1fr; } .about-photo-frame { grid-column: 1 / -1; max-width: 320px; margin: 0 auto; } }
@media (max-width: 640px) { .about-grid { grid-template-columns: 1fr; } .about-photo-frame { max-width: 260px; } }

.about-photo-frame { border-radius: 20px; overflow: hidden; transform: rotate(-3deg); border: 6px solid var(--cloud); box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6); transition: transform .4s var(--ease); }
.about-photo-frame:hover { transform: rotate(0deg) scale(1.02); }
.about-photo-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center; }

.about-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 24px; }
.about-copy p { color: var(--cloud-soft); font-size: 1.05rem; margin-bottom: 18px; max-width: 520px; }
.about-quote { border-left: 3px solid var(--coral); padding-left: 20px; margin-top: 28px; }
.about-quote p { font-family: var(--font-display); font-style: normal; font-size: 1.2rem; color: var(--cloud); }

.about-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cat-card { padding: 26px 20px; border-radius: 22px; border: 1px solid var(--cloud-faint); transition: transform .3s var(--ease); }
.cat-card:hover { transform: translateY(-6px) rotate(-1deg); }
.cat-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.cat-card h3 { font-size: 1rem; font-weight: 600; }
.cat-1 { background: linear-gradient(160deg, rgba(255,107,91,0.18), transparent); }
.cat-2 { background: linear-gradient(160deg, rgba(198,255,61,0.14), transparent); }
.cat-3 { background: linear-gradient(160deg, rgba(245,185,66,0.16), transparent); }
.cat-4 { background: linear-gradient(160deg, rgba(138,76,247,0.2), transparent); }

/* ============================================
   PORTFOLIO / TABS
   ============================================ */
.tabs { display: inline-flex; gap: 6px; background: var(--ink-2); border: 1px solid var(--cloud-faint); padding: 6px; border-radius: 999px; margin-bottom: 44px; }
.tab-btn { background: transparent; border: none; color: var(--cloud-soft); font-weight: 600; font-size: 0.88rem; padding: 10px 20px; border-radius: 999px; transition: background .25s var(--ease), color .25s var(--ease); }
.tab-btn.active { background: var(--cloud); color: var(--ink); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.reel-card { border-radius: 22px; overflow: hidden; border: 1px solid var(--cloud-faint); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.reel-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5); }
.reel-thumb { aspect-ratio: 9/13; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--ink-2); }
.reel-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.reel-card:hover .reel-thumb img { transform: scale(1.06); }
.reel-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,6,20,0.85) 100%); z-index: 1; }
.reel-thumb::before { content: ''; position: absolute; inset: 0; z-index: 1; mix-blend-mode: color; opacity: 0.5; }
.grad-1 .reel-thumb::before { background: linear-gradient(160deg, var(--coral), var(--grape)); }
.grad-2 .reel-thumb::before { background: linear-gradient(160deg, var(--lime), var(--ink-3)); }
.grad-3 .reel-thumb::before { background: linear-gradient(160deg, var(--gold), var(--coral)); }
.grad-4 .reel-thumb::before { background: linear-gradient(160deg, var(--grape), var(--lime)); }
.reel-thumb .play-icon { position: relative; z-index: 2; }
.yt-thumb { aspect-ratio: 16/9; }
.play-icon { font-size: 1.6rem; color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.25); width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .3s var(--ease); }
.reel-card:hover .play-icon, .film-card:hover .play-icon { transform: scale(1.15); }
.reel-info { padding: 16px 18px; background: var(--ink-2); }
.reel-info h4 { font-size: 1rem; margin-bottom: 8px; }
.reel-stats { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--cloud-soft); }

.view-more-link { display: inline-block; margin-top: 28px; font-weight: 600; font-size: 0.95rem; color: var(--coral); border-bottom: 1px solid transparent; transition: border-color .2s var(--ease); }
.view-more-link:hover { border-color: var(--coral); }

/* TikTok marquee */
.marquee-track-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tiktok-card { flex: 0 0 auto; width: 170px; aspect-ratio: 9/16; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.8rem; position: relative; border: 1px solid var(--cloud-faint); overflow: hidden; background: var(--ink-2); transition: transform .35s var(--ease); }
.tiktok-card:hover { transform: translateY(-6px); }
.tiktok-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.tiktok-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,6,20,0.85) 100%); z-index: 1; }
.tiktok-card::before { content: ''; position: absolute; inset: 0; z-index: 1; mix-blend-mode: color; opacity: 0.5; background: var(--tint, linear-gradient(160deg, var(--coral), var(--grape))); }
.tiktok-card .play-icon { position: relative; z-index: 2; }
.tiktok-card span.label { position: absolute; bottom: 12px; left: 14px; right: 14px; display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--cloud); z-index: 2; }

/* YouTube */
.sub-heading { font-size: 1.3rem; margin: 44px 0 20px; }
.sub-heading:first-child { margin-top: 0; }
.episode-list { display: flex; flex-direction: column; gap: 10px; }
.episode-row { display: flex; align-items: center; gap: 20px; padding: 12px 22px; border-radius: 16px; border: 1px solid var(--cloud-faint); transition: background .25s var(--ease), transform .25s var(--ease); }
.episode-row:hover { background: var(--ink-2); transform: translateX(6px); }
.ep-thumb { width: 96px; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.ep-num { font-family: var(--font-mono); color: var(--gold); font-size: 0.9rem; }
.ep-title { flex: 1; font-size: 0.98rem; }
.ep-play { font-family: var(--font-mono); font-size: 0.78rem; color: var(--lime); }

.film-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.film-card { border-radius: 22px; overflow: hidden; border: 1px solid var(--cloud-faint); transition: transform .35s var(--ease); }
.film-card:hover { transform: translateY(-8px); }
.film-thumb { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: var(--ink-2); }
.film-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.film-card:hover .film-thumb img { transform: scale(1.06); }
.film-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,6,20,0.8) 100%); z-index: 1; }
.film-thumb .play-icon { position: relative; z-index: 2; }
.film-info { padding: 20px; background: var(--ink-2); }
.film-info h4 { font-size: 1.15rem; margin-bottom: 6px; }
.film-info p { color: var(--cloud-soft); font-size: 0.9rem; margin-bottom: 12px; }
.laurel { display: block; font-size: 0.78rem; color: var(--gold); margin-bottom: 6px; }
.laurel-2 { color: var(--lime); }
.film-link { display: inline-block; margin-top: 10px; font-weight: 600; font-size: 0.88rem; color: var(--coral); }

/* ============================================
   BRANDS
   ============================================ */
.brand-stat { text-align: center; margin-bottom: 44px; }
.brand-stat-num { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.2rem); display: block; line-height: 1; background: linear-gradient(120deg, var(--coral), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-stat-label { font-size: 0.85rem; color: var(--cloud-soft); text-transform: uppercase; letter-spacing: 0.08em; }

.brand-marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brand-marquee { display: flex; gap: 48px; width: max-content; animation: marquee 26s linear infinite; align-items: center; }
.brand-marquee:hover { animation-play-state: paused; }
.brand-pill { font-family: var(--font-display); font-size: 1.4rem; color: var(--cloud-soft); white-space: nowrap; opacity: 0.6; transition: opacity .25s var(--ease), color .25s var(--ease); }
.brand-pill:hover { opacity: 1; color: var(--cloud); }
.brand-note { margin-top: 28px; font-size: 0.85rem; color: rgba(251,247,242,0.45); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.contact-copy p { color: var(--cloud-soft); font-size: 1.05rem; margin-bottom: 24px; max-width: 420px; }
.contact-email { display: inline-block; font-family: var(--font-mono); font-size: 1.05rem; color: var(--lime); border-bottom: 1px solid var(--lime); padding-bottom: 2px; }

.contact-form { background: var(--ink-2); border: 1px solid var(--cloud-faint); border-radius: 26px; padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 0.82rem; color: var(--cloud-soft); }
.form-row input, .form-row textarea { background: var(--ink); border: 1px solid var(--cloud-faint); border-radius: 12px; padding: 13px 16px; color: var(--cloud); font-family: var(--font-body); font-size: 0.95rem; resize: vertical; transition: border-color .2s var(--ease); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--coral); }
.form-note { font-size: 0.85rem; color: var(--lime); min-height: 1.2em; }

/* ============================================
   VIDEO MODAL
   ============================================ */
.reel-card, .film-card, .episode-row, .tiktok-card { cursor: pointer; }

.video-modal { position: fixed; inset: 0; z-index: 1100; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(10, 6, 20, 0.86); backdrop-filter: blur(6px); }
.video-modal-box { position: relative; width: 100%; max-width: 620px; max-height: 90vh; overflow: auto; z-index: 1; }
.video-modal-content { width: 100%; }
.video-modal-content.kind-youtube { max-width: 900px; margin: 0 auto; }
.video-modal-close {
  position: absolute; top: -46px; right: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--cloud); color: var(--ink); border: none; font-size: 1.1rem; z-index: 2;
  transition: transform .2s var(--ease);
}
.video-modal-close:hover { transform: scale(1.1) rotate(90deg); }

.embed-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: var(--ink-2); }
.embed-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Instagram/TikTok official embeds render their own white card; give it room to breathe */
.video-modal-content.kind-instagram, .video-modal-content.kind-tiktok { min-height: 400px; display: flex; align-items: center; justify-content: center; }

/* Focus visibility for keyboard nav */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--lime); outline-offset: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { border-top: 1px solid var(--cloud-faint); padding: 44px 20px; }
.footer-inner { max-width: var(--container); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--cloud-faint); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 0.7rem; transition: background .25s var(--ease), color .25s var(--ease); }
.footer-social a:hover { background: var(--lime); color: var(--ink); }
.site-footer p { font-size: 0.82rem; color: var(--cloud-soft); }
.footer-permit { font-family: var(--font-mono); font-size: 0.7rem !important; color: rgba(251,247,242,0.35) !important; width: 100%; text-align: center; }
@media (min-width: 640px) { .footer-permit { width: auto; } }
