/* ==========================================================================
   STYLEZ ENTERTAINMENT — DJ TERRY
   Design system: premium music documentary meets mixtape culture
   ========================================================================== */

:root {
  /* Palette */
  --ink: #05070B;
  --ink-2: #0A0E16;
  --ink-3: #101624;
  --navy: #002D72;
  --navy-deep: #001A44;
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.35);
  --chrome-hi: #E9EBF0;
  --chrome-mid: #AEB4C0;
  --chrome-lo: #6B7280;
  --gold: #C9A227;
  --electric: #00A3E0;
  --purple: #3B2A6B;
  --white: #F5F7FA;
  --muted: #97A0B0;

  /* Type */
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* Layout */
  --max-w: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --nav-h: 72px;
  --player-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--player-h); /* room for global player */
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, .display {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 7.5vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 62ch; }

/* Track-number eyebrow — the site's structural motif (sections read as a tracklist) */
.track-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.track-label::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.chrome-text {
  background: linear-gradient(180deg, var(--chrome-hi) 0%, var(--chrome-mid) 45%, #7d8494 55%, var(--chrome-hi) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-text { color: var(--gold); }
.green-text { color: var(--green); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(5, 7, 11, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-cta {
  background: var(--green);
  color: var(--ink) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  box-shadow: 0 0 22px var(--green-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 32px var(--green-glow); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--white);
  width: 44px; height: 44px;
  font-size: 1.2rem;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--navy), var(--green));
  z-index: 950;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 52px;
}
.btn-primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 0 28px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 44px var(--green-glow); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 0 24px rgba(0, 45, 114, 0.5);
}
.btn-navy:hover { transform: translateY(-2px); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 45, 114, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(16, 185, 129, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 90%, rgba(59, 42, 107, 0.25), transparent 60%),
    var(--ink);
}
/* Vinyl grooves — subtle concentric rings, top right */
.hero-vinyl {
  position: absolute;
  top: -20%; right: -12%;
  width: 60vw; height: 60vw;
  max-width: 780px; max-height: 780px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px,
    transparent 1px, transparent 7px);
  animation: spin 60s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero h1 { margin: 18px 0 24px; max-width: 14ch; }
.hero .lead { margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero music prompt */
.hero-music-prompt {
  margin-top: 52px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 26px 14px 14px;
  border-radius: 100px;
  background: rgba(16, 24, 38, 0.7);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-music-prompt:hover { border-color: var(--green); box-shadow: 0 0 30px rgba(16,185,129,0.15); }
.hero-music-prompt .prompt-play {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: none;
  background: radial-gradient(circle at 30% 30%, #17d19a, var(--green));
  color: var(--ink);
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 24px var(--green-glow);
  animation: pulse-glow 2.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 18px var(--green-glow); }
  50% { box-shadow: 0 0 36px var(--green-glow); }
}
.hero-music-prompt .prompt-text { font-size: 0.92rem; color: var(--muted); }
.hero-music-prompt .prompt-text strong { color: var(--white); display: block; font-size: 0.98rem; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.section-alt { background: var(--ink-2); }
.section-navy {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 45, 114, 0.5), transparent 70%),
    var(--ink-2);
}
.section-header { margin-bottom: clamp(40px, 6vw, 72px); max-width: 760px; }
.section-header .lead { margin-top: 18px; }

/* Reveal on scroll */
/* Visible by default so content is NEVER stranded if the scroll observer
   doesn't fire; .in just plays an entrance animation as an enhancement. */
.reveal { opacity: 1; }
.reveal.in { animation: reveal-in 0.7s ease both; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   STORY TIMELINE
   ========================================================================== */

.timeline { position: relative; max-width: 820px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--navy), var(--green), var(--gold));
}
.timeline-item {
  position: relative;
  padding: 0 0 52px 84px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 14px; top: 4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--green);
  display: grid;
  place-items: center;
}
.timeline-dot::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.timeline-item .track-label { margin-bottom: 8px; }
.timeline-item h3 { margin-bottom: 10px; }
.timeline-item p { color: var(--muted); max-width: 58ch; }

/* ==========================================================================
   CARDS
   ========================================================================== */

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45), 0 0 0 1px rgba(16,185,129,0.12);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(0, 45, 114, 0.55);
  border: 1px solid rgba(0, 163, 224, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ==========================================================================
   ERAS — throwback experience
   ========================================================================== */

/* Record-crate: each era is a sleeve with a vinyl that slides out on hover */
.era-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.era-card {
  --accent: var(--green);
  display: flex; flex-direction: column; gap: 13px;
  background: none; border: 0; padding: 0; text-align: left;
  cursor: pointer;
}
.era-card:hover { position: relative; z-index: 5; }
.era-cover { position: relative; aspect-ratio: 1; }
.era-vinyl {
  position: absolute; inset: 7%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #05070b 0 5%, transparent 5.5%),
    radial-gradient(circle at 50% 50%, var(--accent) 7% 23%, #0c0e14 23.5% 25%, transparent 25.5%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0 1px, rgba(0,0,0,0) 1px 5px),
    #0c0e14;
  box-shadow: 0 14px 34px rgba(0,0,0,0.6);
  transform: translateX(0) rotate(0deg);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}
.era-face {
  position: absolute; inset: 0;
  border-radius: 14px;
  z-index: 2;
  padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(130% 100% at 12% 8%, color-mix(in srgb, var(--accent) 62%, #0a0e16), transparent 72%),
    linear-gradient(150deg, color-mix(in srgb, var(--accent) 26%, #0a0e16), #05070b 92%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}
.era-face::before {
  content: ""; position: absolute; top: 0; left: -45%; width: 45%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-18deg); transition: left 0.6s ease;
}
.era-num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.24em; color: rgba(255,255,255,0.6); }
.era-name {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.02rem, 1.5vw, 1.32rem); line-height: 1.04;
  color: var(--white); text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
.era-play {
  position: absolute; top: 15px; right: 15px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 88%, #000); color: #05070b;
  font-size: 0.72rem; padding-left: 2px;
  opacity: 0; transform: scale(0.55);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.era-sub { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding-left: 2px; }
.era-card:hover .era-vinyl,
.era-card:focus-visible .era-vinyl { transform: translateX(42%) rotate(26deg); }
.era-card:hover .era-face { transform: translateY(-4px); box-shadow: 0 22px 50px rgba(0,0,0,0.55), 0 0 36px color-mix(in srgb, var(--accent) 36%, transparent); }
.era-card:hover .era-face::before { left: 135%; }
.era-card:hover .era-play, .era-card:focus-visible .era-play { opacity: 1; transform: scale(1); }

.era-1 { --accent: #C9A227; } /* 90s Hip-Hop — gold */
.era-2 { --accent: #00A3E0; } /* 2000s Club — electric */
.era-3 { --accent: #C2418F; } /* R&B — magenta */
.era-4 { --accent: #E07A1F; } /* Southern — crunk orange */
.era-5 { --accent: #10b981; } /* Party — green */
.era-6 { --accent: #AEB4C0; } /* Wedding — chrome */
.era-7 { --accent: #2BD4C4; } /* Dance — cyan */
.era-8 { --accent: #B0764A; } /* Old School — bronze */

/* ==========================================================================
   FLIP CARDS — featured playlists
   ========================================================================== */

/* Record-crate treatment: sleeve front, tracklist ("record label") back */
.flip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.flip-card { --accent: var(--green); perspective: 1200px; aspect-ratio: 1; background: none; border: none; padding: 0; text-align: left; }
.flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0.1, 0.2, 1);
  transform-style: preserve-3d;
}
.flip-card.flipped .flip-inner, .flip-card:hover .flip-inner, .flip-card:focus-visible .flip-inner { transform: rotateY(180deg); }
.flip-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.flip-front {
  background:
    radial-gradient(130% 100% at 12% 8%, color-mix(in srgb, var(--accent) 60%, #0a0e16), transparent 72%),
    linear-gradient(150deg, color-mix(in srgb, var(--accent) 26%, #0a0e16), #05070b 92%);
}
/* vinyl record peeking from the top-right of the sleeve */
.flip-front::before {
  content: ""; position: absolute; top: -32%; right: -22%;
  width: 76%; aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #05070b 0 8%, transparent 8.5%),
    radial-gradient(circle at 50% 50%, var(--accent) 10% 21%, #0c0e14 21.5% 23%, transparent 23.5%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,0.06) 0 1px, rgba(0,0,0,0) 1px 5px),
    #0c0e14;
  opacity: 0.55;
}
.flip-num { position: absolute; top: 18px; left: 20px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.24em; color: rgba(255,255,255,0.62); }
.flip-front h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1rem, 1.5vw, 1.32rem); line-height: 1.05;
  color: var(--white); text-shadow: 0 2px 16px rgba(0,0,0,0.55); position: relative;
}
.flip-front .flip-hint {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: color-mix(in srgb, var(--accent) 80%, #ffffff);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
}
.flip-back {
  transform: rotateY(180deg);
  justify-content: center;
  background:
    repeating-radial-gradient(circle at 82% 16%, rgba(255,255,255,0.03) 0 1px, rgba(0,0,0,0) 1px 6px),
    linear-gradient(150deg, color-mix(in srgb, var(--accent) 18%, #0a0e16), #05070b 92%);
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 15%, transparent), 0 0 30px color-mix(in srgb, var(--accent) 18%, transparent);
}
.flip-back::before {
  content: "Tracklist";
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.flip-back ul { list-style: none; }
.flip-back li {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--chrome-mid);
  padding: 5px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.flip-back li:last-child { border-bottom: none; }
.flip-back li::before { content: "\266A  "; color: var(--accent); }

.flip-1 { --accent: #C9A227; } /* Cookout Classics — gold */
.flip-2 { --accent: #E07A1F; } /* Dirty South — orange */
.flip-3 { --accent: #00A3E0; } /* 2000s Party — electric */
.flip-4 { --accent: #AEB4C0; } /* Wedding Reception — chrome */
.flip-5 { --accent: #C2418F; } /* Slow Jam Session — magenta */
.flip-6 { --accent: #10b981; } /* 90s Mix — green */
.flip-7 { --accent: #2BD4C4; } /* Family Reunion — cyan */
.flip-8 { --accent: #7B2A8A; } /* Club Classics — purple */

/* ==========================================================================
   GALLERY — masonry
   ========================================================================== */

.masonry { columns: 3; column-gap: 20px; }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}
.masonry-item .ph {
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ph-tall { min-height: 420px; }
.ph-med { min-height: 300px; }
.ph-short { min-height: 220px; }
.ph-a { background: linear-gradient(160deg, #0d1b36, #05070B); }
.ph-b { background: linear-gradient(160deg, #0a2a20, #05070B); }
.ph-c { background: linear-gradient(160deg, #2a2410, #05070B); }
.ph-d { background: linear-gradient(160deg, #1f1030, #05070B); }
.ph-e { background: linear-gradient(160deg, #06283a, #05070B); }
.ph-f { background: linear-gradient(160deg, #26262e, #05070B); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-stage { max-width: 860px; margin: 0 auto; text-align: center; min-height: 260px; position: relative; }
.testimonial {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.testimonial.active { opacity: 1; transform: none; pointer-events: auto; }
.testimonial blockquote {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
}
.testimonial cite {
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.testimonial-dots { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.testimonial-dots button {
  width: 30px; height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(255,255,255,0.18);
  transition: background 0.25s ease;
}
.testimonial-dots button.active { background: var(--green); }

/* ==========================================================================
   PACKAGES
   ========================================================================== */

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.package {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.package:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(0,0,0,0.5); }
.package.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.09), rgba(255,255,255,0.02));
}
.package-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.package h3 { margin-bottom: 6px; }
.package .package-tag { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.package ul { list-style: none; flex: 1; margin-bottom: 34px; }
.package li { padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.09); color: var(--muted); font-size: 0.95rem; }
.package li::before { content: "✓ "; color: var(--green); font-weight: 700; margin-right: 8px; }
.package .btn { width: 100%; }

/* ==========================================================================
   BOOKING FORM
   ========================================================================== */

.booking-wrap { max-width: 860px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 15px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 52px;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.form-field select option { background: var(--ink-2); }
.checkbox-row { display: flex; gap: 26px; flex-wrap: wrap; grid-column: 1 / -1; }
.checkbox-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--muted);
  transition: all 0.2s ease;
  user-select: none;
}
.checkbox-pill input { accent-color: var(--green); width: 17px; height: 17px; }
.checkbox-pill:has(input:checked) {
  border-color: var(--green);
  color: var(--white);
  background: rgba(16, 185, 129, 0.08);
}

/* Booking success */
.booking-success {
  display: none;
  text-align: center;
  padding: 60px 0;
}
.booking-success.show { display: block; animation: success-in 0.6s ease; }
@keyframes success-in {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.success-disc {
  width: 130px; height: 130px;
  margin: 0 auto 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--ink) 0 18%, transparent 18.5%),
    conic-gradient(from 0deg, #2b3244, #4a5468, #2b3244, #545e74, #2b3244),
    repeating-radial-gradient(circle, rgba(255,255,255,0.1) 0 1px, transparent 1px 5px);
  border: 3px solid var(--green);
  box-shadow: 0 0 60px var(--green-glow);
  display: grid;
  place-items: center;
  animation: spin 4s linear infinite;
  position: relative;
}
.success-disc::after {
  content: "✓";
  animation: spin 4s linear infinite reverse;
  font-size: 3rem;
  color: var(--green);
  font-weight: 700;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
}
.faq-q .faq-icon { color: var(--green); font-size: 1.3rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--muted);
}
.faq-a-inner { padding: 0 4px 26px; max-width: 68ch; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  text-align: center;
  padding: clamp(100px, 16vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(0, 45, 114, 0.55), transparent 70%);
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { max-width: 18ch; margin: 0 auto 22px; }
.final-cta .lead { margin: 0 auto 44px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 40px;
  background: var(--ink-2);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s ease; }
.footer a:hover { color: var(--white); }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 38ch; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--chrome-lo);
  font-size: 0.82rem;
  font-family: var(--font-mono);
}

/* ==========================================================================
   GLOBAL MUSIC PLAYER — premium throwback mini-disc deck
   ========================================================================== */

.player {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--player-h);
  z-index: 1000;
  background: linear-gradient(180deg, rgba(14, 19, 30, 0.92), rgba(7, 10, 16, 0.96));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 -1px 0 rgba(255,255,255,0.05) inset,
    0 -12px 40px rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  transform: translateY(0);
  transition: transform 0.35s ease;
}
/* chrome edge highlight */
.player::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--chrome-mid) 30%, var(--chrome-hi) 50%, var(--chrome-mid) 70%, transparent);
  opacity: 0.5;
}
.player-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

/* Left cluster: disc + track meta */
.player-meta { display: flex; align-items: center; gap: 16px; min-width: 0; }
.player-disc {
  width: 46px; height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    radial-gradient(circle at center, var(--ink) 0 22%, transparent 22.5%),
    conic-gradient(from 40deg, #39415a, #59637e, #39415a, #6b7794, #39415a),
    repeating-radial-gradient(circle, rgba(255,255,255,0.12) 0 1px, transparent 1px 4px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 14px rgba(0,0,0,0.6), 0 0 0 2px rgba(16,185,129,0.0);
  transition: box-shadow 0.3s ease;
}
.player.playing .player-disc {
  animation: spin 3.5s linear infinite;
  box-shadow: 0 0 14px rgba(0,0,0,0.6), 0 0 16px var(--green-glow);
}
.player-track { min-width: 0; }
.player-track .now-playing {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
}
.player-track .track-title {
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

/* Center cluster: transport + EQ */
.player-transport { display: flex; align-items: center; justify-content: center; gap: 18px; }
.player-btn {
  background: none;
  border: none;
  color: var(--chrome-mid);
  font-size: 1.05rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease;
}
.player-btn:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.player-btn.play-main {
  width: 50px; height: 50px;
  background: radial-gradient(circle at 30% 30%, #17d19a, var(--green));
  color: var(--ink);
  font-size: 1.05rem;
  box-shadow: 0 0 18px var(--green-glow);
}
.player-btn.play-main:hover { box-shadow: 0 0 30px var(--green-glow); color: var(--ink); }

/* Equalizer */
.player-eq { display: flex; align-items: flex-end; gap: 3px; height: 22px; width: 42px; }
.player-eq span {
  flex: 1;
  background: linear-gradient(180deg, var(--green), #067a56);
  border-radius: 2px;
  height: 15%;
  transition: height 0.2s ease;
}
.player.playing .player-eq span { animation: eq-bounce 0.9s ease-in-out infinite; }
.player.playing .player-eq span:nth-child(1) { animation-delay: 0s; }
.player.playing .player-eq span:nth-child(2) { animation-delay: 0.18s; }
.player.playing .player-eq span:nth-child(3) { animation-delay: 0.36s; }
.player.playing .player-eq span:nth-child(4) { animation-delay: 0.1s; }
.player.playing .player-eq span:nth-child(5) { animation-delay: 0.27s; }
@keyframes eq-bounce {
  0%, 100% { height: 18%; }
  50% { height: 95%; }
}

/* Right cluster: volume */
.player-volume { display: flex; align-items: center; gap: 12px; }
.player-volume input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 110px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green) var(--vol, 35%), rgba(255,255,255,0.15) var(--vol, 35%));
  cursor: pointer;
}
.player-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--chrome-hi);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.player-volume input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--chrome-hi);
  border: none;
}

/* ==========================================================================
   404
   ========================================================================== */

.page-404 { min-height: 80svh; display: flex; align-items: center; text-align: center; }
.page-404 .container { width: 100%; }
.page-404 h1 { font-size: clamp(4rem, 14vw, 9rem); }

/* Legal pages */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.3rem; margin: 44px 0 14px; }
.legal-content p, .legal-content li { color: var(--muted); margin-bottom: 14px; }
.legal-content ul { padding-left: 22px; }

/* Page hero (interior pages) */
.page-hero { padding: calc(var(--nav-h) + 80px) 0 60px; }

/* Counter stats */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); }
.stat-num .suffix { color: var(--green); }
.stat-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .grid-4, .era-grid, .flip-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .package-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --player-h: 62px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(5, 7, 11, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 30px var(--pad) 40px;
    gap: 22px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: grid; place-items: center; }

  .hero-actions .btn { width: 100%; }
  .hero-music-prompt { width: 100%; }

  /* Compact player: hide prev/next + volume slider, keep play/mute/eq */
  .player-inner { grid-template-columns: 1fr auto auto; gap: 14px; }
  .player-transport { gap: 8px; }
  .player-btn.prev, .player-btn.next { display: none; }
  .player-volume input[type="range"] { display: none; }
  .player-disc { width: 36px; height: 36px; }
  .player-btn.play-main { width: 42px; height: 42px; }
  .player-eq { display: none; }
  .player-track .track-title { max-width: 150px; font-size: 0.82rem; }
}

@media (max-width: 560px) {
  .grid-4, .era-grid, .flip-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .masonry { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .flip-front, .flip-back { padding: 16px; }
}

/* ==========================================================================
   NOW-PLAYING ARTIST LINE
   ========================================================================== */
:root { --beat: 0; }
.player-track .track-artist {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 240px;
}

/* ==========================================================================
   BEAT REACTIVITY — driven by --beat (0..1) set by the Web Audio analyser
   ========================================================================== */
.audio-live .hero-bg {
  opacity: calc(0.6 + var(--beat) * 0.4);
  transform: scale(calc(1 + var(--beat) * 0.03));
  transition: opacity 0.09s linear, transform 0.09s linear;
}
.audio-live .hero-vinyl { filter: brightness(calc(1 + var(--beat) * 0.55)); transition: filter 0.09s linear; }
.audio-live .player-eq { transform: scaleY(calc(0.7 + var(--beat) * 0.9)); transform-origin: bottom; transition: transform 0.08s linear; }
.player.playing .player-disc { filter: brightness(calc(1 + var(--beat) * 0.5)); }

/* ==========================================================================
   FLOATING ACTION DOCK — Call / Email / Book / Instagram / Facebook
   ========================================================================== */
.fab-dock {
  position: fixed;
  z-index: 1200;
  right: 18px;
  bottom: calc(var(--player-h) + 18px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.fab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 18px 11px 15px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  background: linear-gradient(180deg, rgba(20,26,40,0.96), rgba(10,14,22,0.96));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.fab:hover { transform: translateX(-3px); border-color: var(--green); }
.fab .fab-ic { font-size: 1.05rem; line-height: 1; }
.fab-primary {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
  box-shadow: 0 0 24px var(--green-glow);
}
.fab-primary:hover { transform: translateX(-3px) translateY(-1px); box-shadow: 0 0 36px var(--green-glow); }

@media (max-width: 720px) {
  body { padding-bottom: calc(var(--player-h) + 60px); }
  .fab-dock {
    right: 0; left: 0;
    bottom: var(--player-h);
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    padding: 6px 4px;
    background: rgba(7,10,16,0.98);
    border-top: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
  }
  .fab {
    flex: 1;
    flex-direction: column;
    gap: 3px;
    min-height: 48px;
    padding: 6px 2px;
    border: none;
    border-radius: 10px;
    background: none;
    box-shadow: none;
    font-size: 0.6rem;
    letter-spacing: 0.03em;
    color: var(--muted);
  }
  .fab:hover { transform: none; }
  .fab .fab-ic { font-size: 1.25rem; }
  .fab-primary { background: none; color: var(--green); box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  .audio-live .hero-bg, .audio-live .hero-vinyl, .audio-live .player-eq, .player.playing .player-disc {
    transition: none;
    transform: none !important;
    filter: none !important;
  }
}

/* ==========================================================================
   BUTLER PERFORMANCE CREDIT (agency attribution)
   ========================================================================== */
.footer-bottom { flex-wrap: wrap; gap: 10px 24px; }
.footer-credit { color: var(--chrome-lo); font-size: 0.85rem; }
.footer-credit a { color: var(--green); font-weight: 600; }
.footer-credit a:hover { text-decoration: underline; }

/* ==========================================================================
   GALLERY — image-backed tiles (on-brand art until real photos land)
   ========================================================================== */
.masonry-item .ph { background-size: cover; background-position: center; position: relative; }
.masonry-item .ph::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,7,11,0) 45%, rgba(5,7,11,0.82) 100%);
}
.masonry-item .ph .ph-cap {
  position: relative; z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
}

/* ==========================================================================
   GALLERY FEATURE ROW — live reel + branded illustration
   ========================================================================== */
.feature-row { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; margin-bottom: 8px; }
.feature-video { display: flex; justify-content: center; }
.feature-video iframe { border: none; border-radius: var(--radius); box-shadow: 0 18px 44px rgba(0,0,0,0.55); max-width: 100%; background: var(--ink-2); }
.feature-art { width: 100%; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 18px 44px rgba(0,0,0,0.55); }
@media (max-width: 720px) { .feature-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   GALLERY HOVER POLISH — lift + zoom + caption reveal
   ========================================================================== */
.masonry-item { box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.masonry-item:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(0,0,0,0.6); }
.masonry-item .ph { transition: transform 0.6s cubic-bezier(.2,.8,.2,1); }
.masonry-item:hover .ph { transform: scale(1.07); }
.masonry-item .ph .ph-cap { transform: translateY(3px); opacity: 0.88; transition: transform 0.3s ease, opacity 0.3s ease; }
.masonry-item:hover .ph .ph-cap { transform: translateY(0); opacity: 1; }
