:root {
  --ink: #09090c;
  --ink-2: #111116;
  --panel: #17171d;
  --panel-2: #202028;
  --paper: #f3efe7;
  --muted: #b8b2a8;
  --gold: #d5a347;
  --gold-light: #efcd84;
  --violet: #8f4f91;
  --line: rgba(255,255,255,.12);
  --header: 76px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.58'/%3E%3C/svg%3E");
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 300; background: var(--gold); color: #111; padding: 10px 14px; border-radius: 6px; font-weight: 900; }
.skip-link:focus { top: 12px; }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 220; height: var(--header);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(22px, calc((100vw - var(--max))/2));
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(9,9,12,.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; color: #111; background: var(--gold); font-weight: 950; letter-spacing: -.05em; border-radius: 50%; }
.brand-name { font-size: .96rem; text-transform: uppercase; letter-spacing: .13em; }
.brand-name b { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: .9rem; font-weight: 800; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--paper); }
.site-nav .nav-cta { color: #111; background: var(--gold); border-radius: 999px; padding: 9px 15px; }
.menu-button { display: none; border: 0; background: transparent; color: var(--paper); width: 44px; height: 42px; padding: 8px; }
.menu-button span { display: block; height: 2px; background: currentColor; margin: 5px 0; }
.menu-button i { position: absolute; clip: rect(0 0 0 0); width: 1px; height: 1px; overflow: hidden; }
.hero { min-height: 100svh; position: relative; display: grid; align-items: end; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; background: url('assets/images/hero.webp') 58% 42% / cover no-repeat; transform: scale(1.02); }
.hero-noise { position: absolute; inset: 0; background: radial-gradient(circle at 70% 33%, rgba(213,163,71,.14), transparent 28%), linear-gradient(120deg, rgba(143,79,145,.12), transparent 38%); mix-blend-mode: screen; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,10,.98) 0%, rgba(7,7,10,.84) 38%, rgba(7,7,10,.18) 73%), linear-gradient(0deg, var(--ink) 0%, transparent 45%), linear-gradient(180deg, rgba(0,0,0,.44), transparent 36%); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 44px)); margin: 0 auto; padding: 145px 0 76px; }
.hero-kicker { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); font-weight: 900; font-size: .73rem; }
.hero-kicker .line { width: 58px; height: 2px; background: var(--gold); }
.hero h1 { margin: 20px 0 0; font-size: clamp(4.6rem, 10.6vw, 9.4rem); line-height: .76; letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 span { color: var(--gold); }
.tagline { margin: 36px 0 10px; font-size: clamp(1.5rem, 2.7vw, 2.4rem); font-weight: 900; letter-spacing: -.025em; }
.hero-copy { max-width: 655px; margin: 0; color: #ddd8d0; font-size: clamp(1rem, 1.45vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 51px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 0 20px; text-decoration: none; font-weight: 900; border-radius: 5px; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--gold); color: #111; }
.button.primary:hover { background: var(--gold-light); }
.button.ghost { border: 1px solid rgba(255,255,255,.42); background: rgba(10,10,13,.32); }
.button.outline { border: 1px solid rgba(255,255,255,.28); }
.button.wide { width: 100%; }
.hero-facts { display: flex; gap: 34px; list-style: none; padding: 0; margin: 35px 0 0; }
.hero-facts li { display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,.25); padding-left: 13px; }
.hero-facts strong { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .63rem; }
.hero-facts span { margin-top: 2px; font-weight: 850; }
.scroll-cue { position: absolute; right: max(22px, calc((100vw - var(--max))/2)); bottom: 24px; z-index: 3; display: flex; align-items: center; gap: 9px; color: var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: .15em; font-size: .65rem; font-weight: 900; writing-mode: vertical-rl; }
.scroll-cue b { font-size: 1.4rem; animation: bob 1.7s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(7px); } }
.section { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; padding: 110px 0; }
.section-intro { display: grid; grid-template-columns: 1fr .65fr; gap: 55px; align-items: end; margin-bottom: 42px; }
.eyebrow { margin: 0 0 10px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 950; }
h2 { margin: 0; font-size: clamp(2.7rem, 6.1vw, 5.7rem); line-height: .91; letter-spacing: -.055em; }
.section-deck { color: var(--muted); margin: 0 0 5px; font-size: 1.08rem; }
.watch-section { padding-top: 90px; }
.video-frame { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #000; box-shadow: 0 40px 100px rgba(0,0,0,.46); }
.video-frame::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.video-frame video { width: 100%; aspect-ratio: 16/9; }
.video-label { position: absolute; z-index: 4; top: 14px; left: 14px; background: rgba(8,8,11,.8); border: 1px solid var(--line); backdrop-filter: blur(8px); padding: 7px 10px; border-radius: 999px; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.video-label span { color: var(--gold); margin-right: 6px; }
.watch-links { display: flex; gap: 30px; margin-top: 20px; }
.watch-links a { text-decoration: none; font-weight: 900; border-bottom: 1px solid rgba(213,163,71,.42); padding-bottom: 4px; }
.watch-links a:hover { color: var(--gold); }
.about-section { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(45px,8vw,105px); align-items: center; }
.about-photo { position: relative; }
.about-photo::before { content: ""; position: absolute; width: 60%; height: 70%; left: -28px; bottom: -28px; background: var(--violet); opacity: .18; filter: blur(35px); }
.about-photo img { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 34%; border-radius: 8px; filter: saturate(.82) contrast(1.06); }
.photo-caption { position: absolute; left: -18px; bottom: 30px; background: var(--gold); color: #111; padding: 9px 13px; font-size: .7rem; font-weight: 950; text-transform: uppercase; letter-spacing: .12em; }
.about-copy h2 em { color: var(--gold); font-style: normal; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.capability-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 34px; }
.capability-strip div { border-top: 1px solid var(--line); padding-top: 13px; }
.capability-strip strong { display: block; color: var(--gold); font-size: 2.25rem; line-height: 1; }
.capability-strip span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.credits-section { position: relative; }
.credits-list { border-top: 1px solid var(--line); }
.credit-row { display: grid; grid-template-columns: 70px minmax(240px,.8fr) 1.2fr; gap: 26px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding .18s ease, background .18s ease; }
.credit-row:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(213,163,71,.065), transparent 72%); }
.credit-index { color: var(--gold); font-size: .82rem; font-weight: 950; letter-spacing: .14em; }
.credit-meta { margin: 0 0 3px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .64rem; font-weight: 900; }
.credit-row h3 { margin: 0; font-size: 1.65rem; }
.credit-row > p { margin: 0; color: var(--muted); }
.more-credits { margin-top: 32px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 7px; display: grid; grid-template-columns: 125px 1fr; gap: 20px; }
.more-credits span { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 950; }
.more-credits p { margin: 0; color: var(--muted); }
.gallery-section { width: min(1500px,100%); margin: 0 auto; padding: 100px max(22px, calc((100vw - var(--max))/2)); display: grid; grid-template-columns: 310px 1fr; gap: 38px; align-items: start; }
.gallery-copy { position: sticky; top: 115px; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 340px 270px; gap: 14px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 7px; background: var(--panel); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-main { grid-row: span 2; }
.gallery-stage img { object-position: center 38%; }
.gallery-writer { display: none; }
.press-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; gap: 55px; align-items: center; background: radial-gradient(circle at 82% 12%, rgba(143,79,145,.28), transparent 35%), linear-gradient(145deg, #1c1c23, #121217); border: 1px solid var(--line); border-radius: 13px; padding: clamp(36px,6vw,72px); }
.press-card::after { content: "ES"; position: absolute; right: -25px; bottom: -110px; color: rgba(255,255,255,.025); font-size: 19rem; font-weight: 950; letter-spacing: -.1em; }
.press-copy, .press-actions { position: relative; z-index: 2; }
.press-copy p:last-child { color: var(--muted); max-width: 580px; }
.press-actions { display: grid; gap: 12px; }
.social-link { margin-top: 8px; color: var(--muted); text-decoration: none; }
.social-link b { color: var(--paper); }
.site-footer { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; padding: 42px 0 58px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 30px; color: var(--muted); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--paper); }
.footer-brand small { color: var(--muted); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; font-size: .85rem; }
.footer-meta a { color: var(--paper); text-decoration: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }
@media (max-width: 920px) {
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    z-index: 221;
    inset: var(--header) 0 0;
    display: none;
    min-height: calc(100dvh - var(--header));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background-color: #09090c;
    background-image: linear-gradient(180deg, #09090c 0%, #111116 100%);
    opacity: 1;
    isolation: isolate;
    padding: 24px;
    box-shadow: 0 24px 70px rgba(0,0,0,.72);
  }
  .site-nav::before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: var(--header) 0 0;
    background: #09090c;
  }
  .site-nav.open { display: flex; }
  body.menu-open .site-header { background: #09090c; border-bottom: 1px solid var(--line); }
  body.menu-open::before { opacity: 0; }
  .site-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .site-nav .nav-cta { margin-top: 18px; text-align: center; border: 0; }
  body.menu-open { overflow: hidden; }
  .section-intro { grid-template-columns: 1fr; gap: 18px; }
  .about-section { grid-template-columns: 1fr; }
  .about-photo { max-width: 620px; }
  .credit-row { grid-template-columns: 50px 1fr; }
  .credit-row > p { grid-column: 2; }
  .gallery-section { grid-template-columns: 1fr; }
  .gallery-copy { position: static; }
  .press-card { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  :root { --header: 66px; }
  .brand-name { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-photo { background-position: 64% 34%; }
  .hero-shade { background: linear-gradient(0deg, var(--ink) 0%, rgba(8,8,11,.8) 60%, rgba(8,8,11,.22)), linear-gradient(90deg, rgba(8,8,11,.78), transparent); }
  .hero-content { padding-bottom: 66px; }
  .hero h1 { font-size: clamp(4rem,20vw,5.8rem); }
  .hero-facts { gap: 15px; flex-wrap: wrap; }
  .hero-facts li { min-width: calc(50% - 10px); }
  .scroll-cue { display: none; }
  .section { padding: 78px 0; }
  .about-copy h2 br { display: none; }
  .capability-strip { gap: 8px; }
  .capability-strip strong { font-size: 1.9rem; }
  .credit-row { grid-template-columns: 38px 1fr; gap: 15px; padding: 22px 0; }
  .credit-row h3 { font-size: 1.35rem; }
  .more-credits { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 220px; }
  .gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .gallery-stage, .gallery-club { grid-row: 2; }
  .press-card { padding: 30px 22px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-meta { align-items: flex-start; }
  .watch-links { flex-direction: column; align-items: flex-start; gap: 13px; }
}


/* Hidden comedy easter egg */
.site-footer {
  position: relative;
}

.easter-egg-trigger {
  position: absolute;
  z-index: 20;
  right: 9px;
  bottom: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 27px;
  appearance: none;
  border: 0;
  background: transparent;
  color: #9b968e;
  font: 700 9px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .09em;
  opacity: .34;
  cursor: pointer;
  padding: 8px 7px;
  pointer-events: auto;
  touch-action: manipulation;
  text-shadow: 0 1px 2px rgba(0,0,0,.8);
  transition:
    opacity .18s ease,
    color .18s ease,
    text-shadow .18s ease,
    transform .18s ease;
}

.easter-egg-trigger:hover,
.easter-egg-trigger:focus-visible {
  color: var(--gold);
  opacity: .82;
  outline: none;
  text-shadow: 0 0 10px rgba(214,163,74,.65);
}

.easter-egg-trigger.playing {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-1px);
  text-shadow:
    0 0 7px rgba(214,163,74,.85),
    0 0 20px rgba(158,76,146,.58);
}

.easter-egg-trigger.playing::before,
.easter-egg-trigger.playing::after {
  content: "✦";
  position: absolute;
  top: 1px;
  color: var(--gold);
  font-size: 8px;
  animation: easter-spark .9s ease-out forwards;
}

.easter-egg-trigger.playing::before { left: -7px; }
.easter-egg-trigger.playing::after { right: -7px; animation-delay: .08s; }

[data-easter-egg-audio] {
  display: none;
}

@keyframes easter-spark {
  0% { opacity: 0; transform: translateY(2px) scale(.5) rotate(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-13px) scale(1.2) rotate(40deg); }
}

@media (max-width: 650px) {
  .easter-egg-trigger {
    right: 5px;
    bottom: 7px;
    min-width: 42px;
    min-height: 32px;
    font-size: 9px;
    opacity: .40;
  }
}

@media (prefers-reduced-motion: reduce) {
  .easter-egg-trigger.playing::before,
  .easter-egg-trigger.playing::after {
    animation: none;
    display: none;
  }
}


.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
