:root {
  --bg: #0a0a0c;
  --panel: #111116;
  --ink: #f8f7f8;
  --muted: #b9b6be;
  --accent: #f21f77;
  --accent-2: #ff4b35;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .88em; }
.anchor-section { scroll-margin-top: 88px; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000;
  background: white; color: black; padding: .7rem 1rem; border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.shell { width: min(calc(100% - 2.2rem), var(--max)); margin-inline: auto; }
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; padding: 0 max(1.1rem, calc((100vw - var(--max))/2));
  background: linear-gradient(to bottom, rgba(5,5,7,.94), rgba(5,5,7,.62));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.brand { display: flex; align-items: center; gap: .72rem; text-decoration: none; }
.brand > img { width: 44px; height: 44px; object-fit: cover; border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.wordmark { text-decoration: none; font-weight: 950; letter-spacing: -.07em; font-size: 1.45rem; line-height: 1; }
.wordmark strong { color: var(--accent); font-weight: 950; }
.main-nav { display: flex; gap: 1.5rem; align-items: center; }
.main-nav a { text-decoration: none; font-size: .9rem; font-weight: 760; color: rgba(255,255,255,.8); }
.main-nav a:hover { color: white; }
.nav-toggle { display: none; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,7,.9) 0%, rgba(5,5,7,.48) 46%, rgba(5,5,7,.2) 100%), linear-gradient(0deg, rgba(5,5,7,.92) 0%, transparent 52%); }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(6rem, 11vh, 9rem); }
.hero-logo { width: clamp(74px, 9vw, 112px); height: auto; margin-bottom: 1.2rem; border-radius: 18px; box-shadow: 0 20px 45px rgba(0,0,0,.28); }
.eyebrow, .section-kicker { margin: 0 0 .8rem; color: #ffd4e5; font-size: .78rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(5rem, 15vw, 11.5rem); line-height: .76; letter-spacing: -.09em; font-weight: 1000; }
.hero h1 span { color: var(--accent); }
.hero-tagline { margin: 1.4rem 0 2rem; font-size: clamp(1.25rem, 2.5vw, 2rem); font-weight: 780; letter-spacing: .02em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .8rem 1.15rem; border-radius: 999px; text-decoration: none; font-weight: 850; border: 1px solid transparent; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(105deg, var(--accent), var(--accent-2)); color: white; box-shadow: 0 14px 40px rgba(242,31,119,.25); }
.button-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.button-large { min-height: 58px; padding-inline: 1.5rem; }
.scroll-cue { position: absolute; z-index: 3; right: 2rem; bottom: 2rem; text-decoration: none; font-size: 2rem; opacity: .7; }

.section { padding: clamp(5rem, 10vw, 8rem) 0; }
.section-dark { background: #0d0d11; }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
h2 { margin: 0 0 1.2rem; font-size: clamp(2.4rem, 6vw, 5.4rem); line-height: .95; letter-spacing: -.055em; }
h3 { margin: 0; }
.copy p, .section-heading p, .epk-card p, .contact-section p { color: var(--muted); }
.lead { font-size: clamp(1.15rem, 2vw, 1.45rem); color: white !important; }
.feature-photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.35); transform: rotate(1deg); }
.feature-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.mini-facts { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2rem; }
.mini-facts span { border: 1px solid var(--line); border-radius: 999px; padding: .45rem .75rem; font-size: .84rem; font-weight: 800; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.section-heading p { margin: 0 0 .6rem; max-width: 42rem; }

.video-section { background: radial-gradient(circle at 12% 20%, rgba(242,31,119,.12), transparent 25%), #070709; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.video-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #15151b, #0d0d11); box-shadow: 0 20px 60px rgba(0,0,0,.18); }
.video-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(260px, .68fr) 1.32fr; align-items: stretch; }
.video-frame { position: relative; min-height: 320px; background: #000; overflow: hidden; }
.video-frame video { display: block; width: 100%; height: 100%; min-height: 320px; aspect-ratio: 16/9; object-fit: cover; background: #000; }
.video-frame-portrait { min-height: 500px; }
.video-frame-portrait video { aspect-ratio: 9/16; max-height: 680px; object-fit: contain; margin-inline: auto; }
.video-unavailable { position: absolute; inset: 0; display: grid; align-content: center; gap: .6rem; padding: 2rem; text-align: center; background: linear-gradient(0deg, rgba(5,5,7,.92), rgba(5,5,7,.62)), var(--poster, #111); color: var(--muted); }
.video-unavailable[hidden] { display: none; }
.video-unavailable strong { color: white; font-size: 1.1rem; }
.video-unavailable code { color: #ffd4e5; overflow-wrap: anywhere; }
.video-copy { padding: 1.45rem 1.5rem 1.6rem; }
.video-card-featured .video-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.video-number { display: block; margin-bottom: .35rem; color: #ff9fc5; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.video-copy h3 { font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.05; letter-spacing: -.035em; }
.video-copy p { margin: .55rem 0 1rem; color: var(--muted); }
.deep-link { color: #ffd4e5; font-size: .86rem; font-weight: 800; text-decoration: none; }
.deep-link:hover { text-decoration: underline; }

.gallery-group + .gallery-group { margin-top: 4rem; }
.gallery-label { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1rem; }
.gallery-label span { color: #ff9fc5; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.gallery-label h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); letter-spacing: -.03em; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 270px; gap: .8rem; }
.gallery-item { position: relative; padding: 0; border: 0; border-radius: 16px; overflow: hidden; background: #17171c; cursor: zoom-in; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: contrast(1.04); }
.gallery-new .gallery-item:nth-child(1) img { object-position: center 35%; }
.gallery-new .gallery-item:nth-child(4) img, .gallery-new .gallery-item:nth-child(6) img { object-position: center 32%; }

.epk-section { padding-top: 2rem; }
.epk-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 6vw, 4.5rem); border: 1px solid rgba(255,255,255,.14); border-radius: 30px; background: radial-gradient(circle at 90% 0%, rgba(242,31,119,.25), transparent 35%), linear-gradient(135deg, #17171d, #0d0d11); }
.epk-card h2 { font-size: clamp(2.3rem, 5vw, 4.8rem); }
.epk-card p { max-width: 45rem; }

.contact-section { background: linear-gradient(140deg, rgba(242,31,119,.14), transparent 35%), #0d0d11; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.contact-card { border-top: 1px solid var(--line); }
.contact-row { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-row:hover strong { color: #ff9fc5; }
.contact-label { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.contact-row strong { overflow-wrap: anywhere; }

.site-footer { padding: 3rem 0 2rem; background: #050507; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand > img { width: 58px; height: 58px; border-radius: 12px; }
.footer-mark { color: white; }
.footer-inner p { margin: .35rem 0 0; }
.footer-inner nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-inner nav a { text-decoration: none; }
.footer-note { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.2rem; font-size: .8rem; }

.legal { padding: 9rem 0 6rem; }
.legal .shell { max-width: 820px; }
.legal h1 { font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: .95; letter-spacing: -.06em; }
.legal h2 { font-size: 1.45rem; margin-top: 2.5rem; letter-spacing: -.02em; }
.legal p, .legal li { color: var(--muted); }
.todo { padding: 1rem 1.15rem; border: 1px dashed rgba(255,255,255,.3); background: rgba(255,255,255,.04); border-radius: 14px; }
.todo strong { color: #ffd4e5; }
.back-link { display: inline-block; margin-bottom: 2rem; text-decoration: none; font-weight: 800; }

.lightbox { width: min(94vw, 1200px); max-width: none; padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 86vh; object-fit: contain; border-radius: 12px; }
.lightbox-close { position: fixed; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.5); color: white; font-size: 1.8rem; cursor: pointer; }

@media (max-width: 850px) {
  .site-header { min-height: 64px; }
  .nav-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: white; border-radius: 999px; padding: .55rem .8rem; font-weight: 800; }
  .main-nav { position: absolute; top: 64px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .8rem 1.1rem 1rem; background: rgba(5,5,7,.97); border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .8rem 0; }
  .split, .section-heading, .contact-grid, .epk-card, .video-card-featured { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card-featured { grid-column: auto; display: block; }
  .video-frame, .video-frame video { min-height: 260px; }
  .video-frame-portrait { min-height: 460px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
  .epk-card { align-items: start; }
}

@media (max-width: 560px) {
  .brand .wordmark { display: none; }
  .hero h1 { font-size: clamp(4.6rem, 27vw, 7rem); }
  .hero-shade { background: linear-gradient(0deg, rgba(5,5,7,.96) 0%, rgba(5,5,7,.45) 74%, rgba(5,5,7,.2) 100%); }
  .video-frame, .video-frame video { min-height: 220px; }
  .video-frame-portrait, .video-frame-portrait video { min-height: 460px; max-height: 70vh; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; gap: .55rem; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-label { flex-direction: column; gap: .2rem; }
  .contact-row { grid-template-columns: 1fr; gap: .25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
