/* ============================================================
   VOULEZ GROOVE — design tokens v2
   Direction: dark, editorial, gig-poster energy (refs: DJ Solomun,
   Black Budget, Blitz Nation). Bold grotesque display type,
   near-black base, one electric duotone accent pulled from the
   logo's disco-ball palette (cyan + magenta stage-light gels)
   instead of a generic AI-cliché acid green.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ink: #060606;
  --surface: #121214;
  --surface-2: #1c1c1f;
  --paper: #f5f4f2;
  --paper-dim: #b8b6b2;
  --accent: #6fe3d4;
  --accent-soft: #a8ede2;
  
  --line: rgba(245,244,242,.12);

  --display: 'Archivo', sans-serif;
  --body: 'Inter', sans-serif;

  --container: 1200px;
  --radius: 10px;
  --radius-s: 6px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--paper);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{
  font-family:var(--display); margin:0; font-weight:800;
  letter-spacing:-0.02em; text-transform:uppercase; line-height:.96;
}
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

.container{ max-width:var(--container); margin:0 auto; padding:0 1.5rem; }
@media(min-width:640px){ .container{ padding:0 2.5rem; } }

/* ---------- utility ---------- */
.eyebrow{
  display:flex; align-items:center; gap:.6rem;
  font-family:var(--body); font-weight:700; font-size:.72rem;
  letter-spacing:.24em; text-transform:uppercase;
  color:var(--accent); margin-bottom:1.1rem;
}
.eyebrow svg{ width:14px; height:14px; flex:none; }
.section{ padding:6.5rem 0; }
@media(max-width:720px){ .section{ padding:4rem 0; } }
.section--tight{ padding-top:3.5rem; padding-bottom:3.5rem; }
.section--surface{ background:var(--surface); }
.section--paper{ background:var(--paper); color:var(--ink); }
.section--paper h1,.section--paper h2,.section--paper h3{ color:var(--ink); }

.h-xl{ font-size:clamp(2.8rem, 8vw, 6.4rem); }
.h-l{ font-size:clamp(2.2rem, 4.6vw, 3.4rem); }
.h-m{ font-size:clamp(1.4rem, 2.6vw, 1.9rem); text-transform:none; letter-spacing:-0.01em; }
.lede{ font-size:1.08rem; line-height:1.7; color:var(--paper-dim); max-width:56ch; }
.section--paper .lede{ color:#4a473f; }

.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--body); font-weight:700; font-size:.85rem;
  letter-spacing:.03em; text-transform:uppercase;
  padding:.9rem 1.8rem; border-radius:100px;
  border:1.5px solid transparent; cursor:pointer;
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--accent); color:var(--ink); }
.btn-primary:hover{ background:var(--accent-soft); }
.btn-ghost{ border-color:rgba(242,239,233,.5); color:inherit; background:transparent; }
.btn-ghost:hover{ background:var(--paper); color:var(--ink); border-color:var(--paper); }
.section--paper .btn-ghost{ border-color:rgba(6,6,6,.35); }
.section--paper .btn-ghost:hover{ background:var(--ink); color:var(--paper); border-color:var(--ink); }

.tag{
  display:inline-block; font-size:.7rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; padding:.4rem .8rem; border-radius:100px;
  border:1px solid rgba(242,239,233,.35); color:var(--paper);
}

/* ---------- marquee ticker ---------- */
.marquee{
  background:var(--accent); color:var(--ink); overflow:hidden;
  padding:.85rem 0; white-space:nowrap; border-top:1px solid var(--ink); border-bottom:1px solid var(--ink);
}
.marquee-track{
  display:inline-flex; gap:2.5rem; animation:marquee 26s linear infinite;
  font-family:var(--display); font-weight:800; font-size:1rem; text-transform:uppercase; letter-spacing:.02em;
  text-shadow:0 1px 3px rgba(0,0,0,.35);
}
.marquee-track span{ display:inline-flex; align-items:center; gap:2.5rem; }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation:none; } }

/* ---------- nav ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:50;
  padding:1.2rem 0;
  background:linear-gradient(to bottom, rgba(6,6,6,.7), rgba(6,6,6,0));
  transition:background .25s ease, padding .25s ease, backdrop-filter .25s ease;
}
.nav.is-scrolled{
  background:rgba(6,6,6,.92);
  backdrop-filter:blur(8px);
  padding:.8rem 0;
  border-bottom:1px solid var(--line);
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; }
.nav-brand{ display:flex; align-items:center; gap:.6rem; }
.nav-brand img{ height:66px; width:auto; }
.nav--home .nav-brand img{ height:118px; width:auto; }
@media(max-width:640px){ .nav--home .nav-brand img{ height:80px; } }
.nav-links{ display:none; align-items:center; gap:2.1rem; font-weight:600; font-size:.85rem; text-transform:uppercase; letter-spacing:.04em; }
.nav-links a{ opacity:.75; transition:opacity .15s ease, color .15s ease; }
.nav-links a:hover, .nav-links a.active{ opacity:1; color:var(--accent); }
.nav-cta{ display:none; }
.nav-toggle{ display:flex; background:none; border:0; color:var(--paper); cursor:pointer; padding:.4rem; }
.nav-toggle svg{ width:24px; height:24px; }

@media(min-width:920px){
  .nav-links{ display:flex; }
  .nav-cta{ display:inline-flex; }
  .nav-toggle{ display:none; }
}

.mobile-menu{
  position:fixed; inset:0; z-index:60; background:var(--ink); color:var(--paper);
  display:flex; flex-direction:column; padding:1.5rem;
  transform:translateY(-100%); transition:transform .3s ease;
}
.mobile-menu.is-open{ transform:translateY(0); }
.mobile-menu-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:2.5rem; }
.mobile-menu-top img{ height:30px; }
.mobile-menu-close{ background:none; border:0; color:var(--paper); cursor:pointer; padding:.4rem; }
.mobile-menu-close svg{ width:24px; height:24px; }
.mobile-menu nav{ display:flex; flex-direction:column; gap:1.4rem; font-family:var(--display); font-weight:800; text-transform:uppercase; font-size:2rem; }
.mobile-menu .btn{ margin-top:2rem; align-self:flex-start; }

/* ---------- hero ---------- */
.hero{
  position:relative; min-height:100svh; display:flex; flex-direction:column; justify-content:flex-end;
  background-color:var(--ink); overflow:hidden;
}
.hero-bg-video{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:center 30%; filter:grayscale(.1) contrast(1.05);
}

.hero::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(6,6,6,.96) 8%, rgba(6,6,6,.25) 50%, rgba(6,6,6,.55) 100%);
}
.hero-content{ position:relative; z-index:2; padding:7rem 0 3rem; width:100%; }
.hero-kicker{ font-family:var(--body); font-weight:700; letter-spacing:.18em; text-transform:uppercase; font-size:.68rem; color:var(--accent); opacity:.8; margin-bottom:1rem; }
.hero-title{
  font-family:var(--display); font-weight:900; text-transform:uppercase;
  font-size:clamp(2rem, 7vw, 5.2rem); line-height:.92; letter-spacing:-0.02em; margin-bottom:1.4rem;
  color:rgba(245,244,242,.8);
}
.hero-title em{ font-style:normal; color:rgba(111,227,212,.85); }
.hero-tagline{ font-size:clamp(1rem,2vw,1.2rem); color:var(--paper-dim); margin-bottom:1.8rem; max-width:40ch; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:.9rem; }

.page-hero{
  position:relative; min-height:58vh; display:flex; align-items:flex-end;
  background:var(--ink); overflow:hidden;
}
.page-hero img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 20%; filter:grayscale(.15) contrast(1.05); }
.page-hero::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(6,6,6,.96), rgba(6,6,6,.2) 65%); }
.page-hero-content{ position:relative; z-index:2; padding:9rem 0 3rem; }
.page-hero .tag{ margin-bottom:1.2rem; }

/* ---------- signature divider (laser scan line, echoes stage lighting) ---------- */
.scan-divider{ position:relative; height:2px; background:var(--line); overflow:hidden; margin:0 auto; max-width:var(--container); }
.scan-divider::before{
  content:''; position:absolute; top:0; left:-20%; width:20%; height:100%;
  background:linear-gradient(90deg, transparent, var(--accent), var(--accent-soft), transparent);
  animation:scan 5s ease-in-out infinite;
}
@keyframes scan{ 0%{ left:-20%; } 50%{ left:100%; } 100%{ left:-20%; } }
@media (prefers-reduced-motion: reduce){ .scan-divider::before{ animation:none; left:40%; } }
.scan-wrap{ padding:3.5rem 0; }

/* ---------- intro / about ---------- */
.split{ display:grid; grid-template-columns:1fr; gap:2.5rem; align-items:center; }
@media(min-width:860px){ .split{ grid-template-columns:1.05fr 1fr; gap:4rem; } }
.split.reverse{ direction:rtl; }
.split.reverse > *{ direction:ltr; }
.split-media{ position:relative; }
.split-media img{ border-radius:var(--radius); width:100%; height:100%; object-fit:cover; object-position:center 18%; aspect-ratio:4/5; filter:grayscale(.1); }
.split-media .tag{ position:absolute; bottom:1rem; left:1rem; background:rgba(6,6,6,.8); }
.split-text > * + *{ margin-top:1.3rem; }

/* ---------- video ---------- */
.video-frame{ position:relative; width:100%; padding-top:56.25%; border-radius:var(--radius); overflow:hidden; background:var(--surface); }
.video-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* ---------- cards / where we play ---------- */
.cards{ display:grid; grid-template-columns:1fr; gap:1.5rem; margin-top:2.6rem; }
@media(min-width:760px){ .cards{ grid-template-columns:repeat(3,1fr); } }
.card{
  position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:3/4;
  display:flex; align-items:flex-end; color:var(--paper);
}
.card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 18%; transition:transform .5s ease; filter:grayscale(.2); }
.card:hover img{ transform:scale(1.06); filter:grayscale(0); }
.card::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(6,6,6,.95), rgba(6,6,6,.05) 55%); }
.card-content{ position:relative; z-index:2; padding:1.6rem; }
.card-content .tag{ margin-bottom:.7rem; color:var(--accent); border-color:rgba(111,227,212,.4); }
.card-content h3{ font-size:1.5rem; margin-bottom:.5rem; text-transform:uppercase; }
.card-content p{ font-family:var(--body); font-size:.92rem; color:var(--paper-dim); margin-bottom:1rem; text-transform:none; }
.card-link{ display:inline-block; font-weight:700; font-size:.82rem; text-transform:uppercase; letter-spacing:.04em; text-decoration:underline; text-underline-offset:3px; color:var(--accent); }

/* ---------- checklist ---------- */
.checklist{ display:grid; grid-template-columns:1fr; gap:1rem; margin-top:1rem; }
@media(min-width:640px){ .checklist{ grid-template-columns:1fr 1fr; } }
.checklist li{ display:flex; gap:.75rem; align-items:flex-start; font-size:.98rem; color:var(--paper-dim); }
.checklist svg{ flex:none; width:20px; height:20px; margin-top:.15rem; color:var(--accent); }
.section--paper .checklist li{ color:#4a473f; }

/* ---------- stats strip ---------- */
.stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
@media(min-width:760px){ .stats{ grid-template-columns:repeat(4,1fr); } }
.stat b{ display:block; font-family:var(--display); font-weight:900; text-transform:uppercase; font-size:clamp(1.8rem,4vw,2.6rem); color:var(--accent); }
.stat span{ font-size:.82rem; color:var(--paper-dim); letter-spacing:.02em; font-family:var(--body); }

/* ---------- setlist cloud ---------- */
.setlist-cloud{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:2.2rem; }
.setlist-cloud span{
  font-family:var(--body); font-weight:600; font-size:.85rem;
  padding:.55rem 1rem; border-radius:100px; border:1px solid var(--line);
  color:var(--paper-dim); white-space:nowrap;
}

/* ---------- gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:.9rem; }
@media(min-width:640px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); gap:1.1rem; } }
.gallery-grid button{ border:0; padding:0; background:none; cursor:pointer; border-radius:var(--radius-s); overflow:hidden; aspect-ratio:1; position:relative; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .45s ease, filter .3s ease; filter:grayscale(.25); }
.gallery-grid button:hover img{ transform:scale(1.08); filter:grayscale(0); }
.gallery-grid button.tall{ grid-row:span 2; aspect-ratio:auto; }

.lightbox{ position:fixed; inset:0; z-index:80; background:rgba(6,6,6,.96); display:none; align-items:center; justify-content:center; padding:2rem; }
.lightbox.is-open{ display:flex; }
.lightbox img{ max-width:min(92vw,1000px); max-height:86vh; object-fit:contain; border-radius:var(--radius-s); }
.lightbox-close{ position:absolute; top:1.5rem; right:1.5rem; background:none; border:0; color:var(--paper); cursor:pointer; }
.lightbox-close svg{ width:30px; height:30px; }

/* ---------- quote / CTA band ---------- */
.cta-band{
  background:var(--surface-2); border:1px solid var(--line); border-radius:var(--radius);
  padding:3rem 2rem; text-align:center; display:flex; flex-direction:column; align-items:center; gap:1.3rem;
}
@media(min-width:640px){ .cta-band{ padding:4rem; } }

/* ---------- contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr; gap:3rem; }
@media(min-width:900px){ .contact-grid{ grid-template-columns:.9fr 1.1fr; } }
.field{ display:flex; flex-direction:column; gap:.5rem; margin-bottom:1.2rem; }
.field label{ font-size:.8rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--paper-dim); }
.field input, .field select, .field textarea{
  font-family:var(--body); font-size:1rem; padding:.85rem 1rem;
  border:1.5px solid var(--line); border-radius:var(--radius-s);
  background:var(--surface); color:var(--paper);
}
.field select{ color-scheme:dark; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--accent); }
.field textarea{ resize:vertical; min-height:110px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.contact-info li{ display:flex; gap:.8rem; padding:1rem 0; border-top:1px solid var(--line); align-items:flex-start; }
.contact-info li:first-child{ border-top:0; }
.contact-info svg{ width:20px; height:20px; flex:none; margin-top:.15rem; color:var(--accent); }

/* ---------- footer ---------- */
footer{ background:var(--ink); color:var(--paper-dim); padding:3.5rem 0 2rem; border-top:1px solid var(--line); }
.footer-top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:2rem; padding-bottom:2.2rem; margin-bottom:2rem; border-bottom:1px solid var(--line); }
.footer-brand{ font-family:var(--display); font-weight:800; text-transform:uppercase; font-size:1.3rem; margin-bottom:1rem; }
.footer-brand p{ font-family:var(--body); font-weight:400; text-transform:none; letter-spacing:0; max-width:32ch; font-size:.92rem; margin-top:1rem; }
.footer-cols{ display:flex; gap:3.5rem; flex-wrap:wrap; }
.footer-col h4{ font-family:var(--body); font-weight:700; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:var(--paper); margin-bottom:1rem; }
.footer-col li{ margin-bottom:.6rem; font-size:.94rem; }
.footer-col a:hover{ color:var(--accent); }
.footer-bottom{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; font-size:.82rem; }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform:none; }
