/* ═══════════════════════════════════════════
   ON THE EDGE — U2 Tribute · premium dark theme
   Zwart · wit · goud · electric blue · glass
   ═══════════════════════════════════════════ */

:root {
  --black: #050505;
  --black-2: #0b0b0e;
  --white: #f5f4f0;
  --grey: #9a99a0;
  --gold: #d9a441;
  --gold-soft: #e8c15a;
  --blue: #3f8cff;
  --blue-soft: #6fb2ff;
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-border: rgba(255, 255, 255, 0.10);
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
section[id], footer[id] { scroll-margin-top: 86px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* subtle film-grain / noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

::selection { background: var(--gold); color: var(--black); }

em { font-style: normal; color: var(--gold-soft); }
a { color: inherit; }

/* ══════════ LOADER ══════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-eq { display: flex; gap: 6px; align-items: flex-end; height: 44px; }
.loader-eq span {
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(to top, var(--gold), var(--blue));
  animation: eq 0.9s ease-in-out infinite;
}
.loader-eq span:nth-child(1) { animation-delay: 0s; }
.loader-eq span:nth-child(2) { animation-delay: 0.15s; }
.loader-eq span:nth-child(3) { animation-delay: 0.3s; }
.loader-eq span:nth-child(4) { animation-delay: 0.1s; }
.loader-eq span:nth-child(5) { animation-delay: 0.25s; }
@keyframes eq { 0%, 100% { height: 12px; } 50% { height: 44px; } }
.loader-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  color: var(--grey);
}

/* ══════════ CURSOR ══════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 2500;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--gold-soft);
  box-shadow: 0 0 12px var(--gold-soft), 0 0 30px rgba(217, 164, 65, 0.5);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(232, 193, 90, 0.5);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              border-color 0.25s, background 0.25s;
}
.cursor-ring.hovering {
  width: 64px; height: 64px;
  border-color: var(--blue-soft);
  background: rgba(63, 140, 255, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ══════════ NAV ══════════ */
.nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  border-radius: 18px;
  background: rgba(10, 10, 14, 0.55);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: padding 0.4s var(--ease-out), background 0.4s, box-shadow 0.4s;
}
.nav.shrunk {
  padding: 9px 26px;
  background: rgba(10, 10, 14, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--white);
}
.logo-guitar { color: var(--gold); transition: transform 0.4s var(--ease-out); }
.nav-logo:hover .logo-guitar { animation: strum 0.6s var(--ease-out); }
@keyframes strum {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-14deg); }
  55% { transform: rotate(10deg); }
  80% { transform: rotate(-5deg); }
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  position: relative;
  padding: 7px 13px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--grey);
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 13px; right: 13px; bottom: 2px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link-cta {
  color: var(--black);
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  border-radius: 10px;
  margin-left: 8px;
  font-weight: 600;
}
.nav-link-cta::after { display: none; }
.nav-link-cta:hover { color: var(--black); box-shadow: 0 0 24px rgba(217, 164, 65, 0.5); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════ BUTTONS ══════════ */
.btn {
  position: relative;
  display: inline-block;
  padding: 15px 34px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn-gold {
  color: var(--black);
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
  box-shadow: 0 6px 30px rgba(217, 164, 65, 0.25);
}
.btn-gold:hover { box-shadow: 0 8px 44px rgba(217, 164, 65, 0.55); }
.btn-ghost {
  color: var(--white);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--blue-soft); box-shadow: 0 0 34px rgba(63, 140, 255, 0.3); }
.btn-full { width: 100%; text-align: center; }
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3); opacity: 0; } }

/* ══════════ HERO ══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
  filter: saturate(0.92) brightness(0.62) contrast(1.06);
  transform: scale(1.08);
  animation: heroken 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroken {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.16) translate(-1.5%, 1.5%); }
}
#stageCanvas { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; }
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 40%, rgba(5, 5, 5, 0.75) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.3), transparent 25%, transparent 70%, var(--black) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 1000px;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-title .line { display: block; }
.hero-title .line-accent {
  background: linear-gradient(100deg, var(--gold) 10%, var(--gold-soft) 45%, var(--blue-soft) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 34px rgba(217, 164, 65, 0.35));
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--grey);
  margin-bottom: 42px;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero-scrollhint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--grey);
}
.hero-scrollhint span {
  display: block;
  width: 1px; height: 44px;
  margin: 0 auto 8px;
  background: linear-gradient(to bottom, transparent, var(--gold-soft));
  animation: scrollhint 2s var(--ease-out) infinite;
}
@keyframes scrollhint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scrollhint p { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; }

/* ══════════ MARQUEE ══════════ */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black-2);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  letter-spacing: 0.14em;
  color: rgba(245, 244, 240, 0.32);
}
.marquee-track span { padding-right: 0.5em; }

/* ══════════ SECTIONS ══════════ */
.section { position: relative; padding: clamp(90px, 12vw, 150px) 20px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.6vw, 4.2rem);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: clamp(40px, 6vw, 70px);
}

/* glass panel base */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ══════════ ABOUT ══════════ */
.about {
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(63, 140, 255, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(217, 164, 65, 0.06), transparent 60%);
}
.about-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: clamp(40px, 6vw, 70px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}
.about-photo img {
  display: block;
  width: 100%;
  height: clamp(300px, 48vw, 560px);
  object-fit: cover;
  object-position: 50% 22%;
  transform: scale(1.05);
  will-change: transform;
}
.about-photo-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.55), transparent 45%),
              radial-gradient(ellipse 70% 60% at 80% 0%, rgba(63, 140, 255, 0.14), transparent 60%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.about-text p { margin-bottom: 20px; font-size: 1.06rem; color: #c9c8cf; }
.about-text strong { color: var(--white); font-weight: 600; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { padding: 28px 22px; text-align: center; transition: transform 0.4s var(--ease-out), box-shadow 0.4s; }
.stat:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--gold-soft);
  line-height: 1.1;
}
.stat-word { font-size: clamp(1.3rem, 2.6vw, 1.8rem); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ══════════ BAND ══════════ */
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  perspective: 1200px;
}
.band-card {
  padding: 0 0 26px;
  overflow: hidden;
  transition: box-shadow 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.band-card:hover { box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(63, 140, 255, 0.12); }
.band-visual {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.band-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.85;
  transition: opacity 0.4s, transform 0.6s var(--ease-out);
}
.band-card:hover .band-visual::before { opacity: 1; transform: scale(1.12); }
.band-visual-vocals::before { background: radial-gradient(circle at 50% 120%, rgba(217, 164, 65, 0.55), rgba(120, 60, 10, 0.15) 60%, transparent); }
.band-visual-guitar::before { background: radial-gradient(circle at 50% 120%, rgba(63, 140, 255, 0.5), rgba(20, 40, 120, 0.15) 60%, transparent); }
.band-visual-bass::before   { background: radial-gradient(circle at 50% 120%, rgba(190, 70, 160, 0.42), rgba(80, 20, 80, 0.15) 60%, transparent); }
.band-visual-drums::before  { background: radial-gradient(circle at 50% 120%, rgba(240, 90, 60, 0.45), rgba(120, 30, 10, 0.15) 60%, transparent); }
.band-visual-keys::before   { background: radial-gradient(circle at 50% 120%, rgba(60, 210, 160, 0.42), rgba(10, 90, 70, 0.15) 60%, transparent); }
.band-icon { font-size: 3rem; position: relative; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6)); transition: transform 0.45s var(--ease-out); }
.band-card:hover .band-icon { transform: translateY(-6px) scale(1.15); }
.band-card h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; padding: 0 22px; }
.band-role {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: 4px 22px 12px;
}
.band-bio { font-size: 0.9rem; color: var(--grey); padding: 0 22px; }

/* ══════════ PARALLAX BREAKERS ══════════ */
.breaker {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.breaker-img { position: absolute; inset: -18% 0; will-change: transform; }
.breaker-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.02) brightness(0.72);
}
.breaker-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--black) 0%, transparent 22%, transparent 78%, var(--black) 100%),
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(5, 5, 5, 0.55) 100%);
}
.breaker-content { position: relative; z-index: 1; padding: 90px 24px; max-width: 900px; }
.breaker-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.75);
  margin-bottom: 22px;
}
.breaker-sub {
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
.breaker-cta .btn { margin-top: 10px; }

/* ══════════ TIMELINE ══════════ */
.experience {
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(63, 140, 255, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(217, 164, 65, 0.05), transparent 60%);
}
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 42px; }
.timeline-line {
  position: absolute;
  left: 10px; top: 6px; bottom: 6px;
  width: 2px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 2px;
  overflow: hidden;
}
.timeline-progress {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
  box-shadow: 0 0 14px rgba(217, 164, 65, 0.6);
}
.timeline-item { position: relative; padding: 0 0 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -38px; top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.12);
  transition: background 0.4s, box-shadow 0.4s;
}
.timeline-item.lit .timeline-dot { background: var(--gold-soft); box-shadow: 0 0 18px rgba(232, 193, 90, 0.8); }
.timeline-item h3 { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.04em; margin-bottom: 6px; }
.timeline-item p { color: var(--grey); font-size: 0.98rem; max-width: 520px; }

/* ══════════ 3D GRID (synthwave-vloer) ══════════ */
.grid3d {
  position: absolute;
  left: -15%; right: -15%; bottom: -4%;
  height: 58%;
  pointer-events: none;
  perspective: 520px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 45%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 45%, #000 88%, transparent 100%);
}
.grid3d-plane {
  position: absolute;
  inset: -60% 0 0 0;
  background-image:
    linear-gradient(rgba(217, 164, 65, 0.20) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(63, 140, 255, 0.14) 1.5px, transparent 1.5px);
  background-size: 64px 64px;
  transform: rotateX(63deg);
  transform-origin: 50% 100%;
  animation: gridscroll 2.6s linear infinite;
  will-change: background-position;
}
.grid3d-blue .grid3d-plane {
  background-image:
    linear-gradient(rgba(63, 140, 255, 0.18) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(217, 164, 65, 0.12) 1.5px, transparent 1.5px);
}
@keyframes gridscroll {
  from { background-position: 0 0; }
  to { background-position: 0 64px; }
}
.music, .tour, .band { overflow: hidden; }
.music .section-inner, .tour .section-inner, .band .section-inner { position: relative; z-index: 1; }

/* ══════════ ZWEVENDE NOOTJES / INSTRUMENTEN ══════════ */
.floater {
  position: absolute;
  bottom: -8%;
  font-style: normal;
  pointer-events: none;
  color: var(--gold-soft);
  text-shadow: 0 0 14px rgba(232, 193, 90, 0.55);
  opacity: 0;
  animation: floatnote linear infinite;
  will-change: transform, opacity;
  z-index: 0;
}
.floater.f-blue { color: var(--blue-soft); text-shadow: 0 0 14px rgba(111, 178, 255, 0.55); }
.floater.f-emoji { filter: grayscale(0.25) drop-shadow(0 0 10px rgba(217, 164, 65, 0.35)); text-shadow: none; }
@keyframes floatnote {
  0% { transform: translateY(0) translateX(0) rotate(-8deg); opacity: 0; }
  12% { opacity: var(--fo, 0.3); }
  55% { transform: translateY(-55vh) translateX(3vw) rotate(9deg); }
  88% { opacity: var(--fo, 0.3); }
  100% { transform: translateY(-105vh) translateX(-2vw) rotate(-6deg); opacity: 0; }
}

/* ══════════ MUSIC ══════════ */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.music-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: default;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
  overflow: hidden;
}
.music-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 164, 65, 0.4);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(217, 164, 65, 0.12);
}
.vinyl {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold-soft) 0 17%, #16161a 18% 30%, #232328 31% 33%, #16161a 34% 46%, #232328 47% 49%, #16161a 50% 62%, #232328 63% 65%, #16161a 66% 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}
.music-card:hover .vinyl { animation: spin 2.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.music-card h3 { font-size: 0.98rem; font-weight: 600; letter-spacing: 0.02em; }
.music-card p { font-size: 0.76rem; color: var(--grey); letter-spacing: 0.08em; text-transform: uppercase; }
.music-eq { display: flex; gap: 3px; align-items: flex-end; height: 18px; margin-left: auto; opacity: 0; transition: opacity 0.3s; }
.music-card:hover .music-eq { opacity: 1; }
.music-eq i {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--gold), var(--blue-soft));
  animation: eq 0.7s ease-in-out infinite;
}
.music-eq i:nth-child(2) { animation-delay: 0.12s; }
.music-eq i:nth-child(3) { animation-delay: 0.24s; }
.music-eq i:nth-child(4) { animation-delay: 0.06s; }
.music-note { margin-top: 34px; color: var(--grey); font-size: 0.95rem; }

/* ══════════ VIDEOS ══════════ */
.videos { background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(63, 140, 255, 0.06), transparent 65%); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.video-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
  text-align: left;
  color: var(--white);
  font-family: var(--font-body);
}
.video-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6), 0 0 44px rgba(63, 140, 255, 0.18);
}
.video-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.85);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.video-card:hover img { transform: scale(1.07); filter: saturate(1.05) brightness(1); }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding-left: 5px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(10, 10, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease-out), background 0.35s, box-shadow 0.35s;
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: rgba(217, 164, 65, 0.85);
  color: var(--black);
  box-shadow: 0 0 44px rgba(217, 164, 65, 0.55);
}
.video-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.85), transparent);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 3, 5, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s;
}
.lightbox.open { display: flex; }
.lightbox.visible { opacity: 1; }
.lightbox-frame { width: min(1000px, 92vw); aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 100px rgba(0,0,0,0.8); }
.lightbox-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lightbox-close {
  position: absolute;
  top: 26px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
.lightbox-close:hover { transform: rotate(90deg); background: rgba(217, 164, 65, 0.25); }

/* ══════════ GALLERY ══════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(180px, 24vw, 300px);
  gap: 18px;
}
.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.45s;
}
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.9);
  transform: scale(1.02);
  transition: transform 0.7s var(--ease-out), filter 0.45s;
  will-change: transform;
}
.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 164, 65, 0.45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(217, 164, 65, 0.14);
}
.gallery-item:hover img { transform: scale(1.1); filter: saturate(1.08) brightness(1.02); }
.gallery-item::after {
  content: '⤢';
  position: absolute;
  right: 14px; bottom: 12px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: rgba(10, 10, 14, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-credit { margin-top: 22px; font-size: 0.8rem; color: #66656d; letter-spacing: 0.08em; }
.lightbox-frame.is-photo { aspect-ratio: auto; max-height: 86vh; display: flex; }
.lightbox-frame.is-photo img { max-width: 92vw; max-height: 86vh; display: block; object-fit: contain; }
.lightbox-frame.is-reel { width: min(420px, 92vw); aspect-ratio: 9 / 16; max-height: 86vh; background: #000; }

/* ══════════ TOUR ══════════ */
.tour-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.tour-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 26px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.tour-row:hover {
  transform: translateX(8px);
  border-color: rgba(217, 164, 65, 0.35);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.4);
}
.tour-date { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.05em; color: var(--gold-soft); line-height: 1.15; }
.tour-date small { display: block; font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.24em; color: var(--grey); }
.tour-venue strong { display: block; font-weight: 600; font-size: 1.02rem; }
.tour-venue span { font-size: 0.85rem; color: var(--grey); }
.tour-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  color: var(--grey);
}
.tour-badge.played { border-color: rgba(255,255,255,0.14); }
.tour-badge.soldout { border-color: rgba(240, 90, 60, 0.5); color: #f08a6a; }
.tour-cta { text-align: center; padding: clamp(36px, 5vw, 54px); }
.tour-cta h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: 0.03em; margin-bottom: 10px; }
.tour-cta p { color: var(--grey); margin-bottom: 26px; }

/* ══════════ REVIEWS ══════════ */
.reviews { padding-bottom: 60px; }
.reviews .section-inner { margin-bottom: 40px; }
.reviews-marquee {
  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);
}
.reviews-track { display: flex; gap: 20px; width: max-content; will-change: transform; padding: 10px 0 30px; }
.review-card {
  width: 340px;
  flex: 0 0 auto;
  padding: 26px 28px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(63, 140, 255, 0.35); }
.review-stars { color: var(--gold-soft); letter-spacing: 0.2em; font-size: 0.9rem; margin-bottom: 12px; text-shadow: 0 0 14px rgba(232, 193, 90, 0.5); }
.review-quote { font-size: 0.98rem; color: #d6d5db; margin-bottom: 16px; }
.review-source { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); }

/* ══════════ BOOKING ══════════ */
.booking { overflow: hidden; }
#bookingCanvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.booking .section-inner { position: relative; z-index: 1; }
.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
.booking-form { padding: clamp(26px, 4vw, 40px); }
.field { position: relative; margin-bottom: 22px; }
.field input, .field textarea {
  width: 100%;
  padding: 20px 16px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(217, 164, 65, 0.15), 0 0 26px rgba(217, 164, 65, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.field label {
  position: absolute;
  left: 16px; top: 15px;
  font-size: 0.92rem;
  color: var(--grey);
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
}
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.form-success { margin-top: 16px; color: var(--gold-soft); font-size: 0.95rem; min-height: 1.4em; }
.booking-direct h3 { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.03em; margin-bottom: 20px; }
.booking-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  margin-bottom: 22px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.booking-phone:hover { border-color: var(--gold-soft); box-shadow: 0 0 34px rgba(217, 164, 65, 0.18); }
.booking-phone-icon { font-size: 1.7rem; display: inline-block; transition: transform 0.4s var(--ease-out); }
.booking-phone-icon.swing { animation: micswing 0.9s var(--ease-out); }
@keyframes micswing {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-24deg) translateY(-4px); }
  50% { transform: rotate(18deg); }
  75% { transform: rotate(-9deg); }
}
.booking-phone strong { font-size: 1rem; }
.booking-socials { display: flex; gap: 12px; margin-bottom: 26px; }
.social-btn {
  padding: 11px 22px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, color 0.3s;
}
.social-btn:hover { border-color: var(--blue-soft); color: var(--blue-soft); box-shadow: 0 0 26px rgba(63, 140, 255, 0.25); }
.booking-usps { list-style: none; }
.booking-usps li {
  padding: 9px 0 9px 26px;
  position: relative;
  color: var(--grey);
  font-size: 0.95rem;
}
.booking-usps li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold-soft);
}

/* ══════════ FOOTER ══════════ */
.footer {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 20px 40px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--black), #08080c);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-lights { position: absolute; inset: 0; pointer-events: none; }
.footer-lights span {
  position: absolute;
  top: -40%;
  width: 30%;
  height: 160%;
  opacity: 0.10;
  filter: blur(30px);
  animation: footsweep 11s ease-in-out infinite alternate;
}
.footer-lights span:nth-child(1) { left: 2%; background: radial-gradient(ellipse at 50% 0%, var(--gold), transparent 70%); }
.footer-lights span:nth-child(2) { left: 36%; background: radial-gradient(ellipse at 50% 0%, var(--blue), transparent 70%); animation-delay: -4s; }
.footer-lights span:nth-child(3) { right: 2%; background: radial-gradient(ellipse at 50% 0%, var(--gold-soft), transparent 70%); animation-delay: -8s; }
@keyframes footsweep {
  from { transform: rotate(-9deg) translateX(-6%); }
  to { transform: rotate(9deg) translateX(6%); }
}
.footer-inner { position: relative; z-index: 1; }
.footer-logo {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 10px;
}
.footer-tag { color: var(--grey); margin-bottom: 34px; font-size: 1rem; }
.footer-nav { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.footer-nav a {
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--grey);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold-soft); }
.footer-copy { font-size: 0.78rem; color: #66656d; letter-spacing: 0.06em; }
.ovation { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ovation i {
  position: absolute;
  bottom: -20px;
  font-style: normal;
  font-size: 1.3rem;
  animation: rise 2.6s ease-out forwards;
  opacity: 0;
}
@keyframes rise {
  0% { transform: translateY(0) scale(0.7); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-70vh) scale(1.2) rotate(20deg); opacity: 0; }
}

/* ══════════ KONAMI OVERLAY ══════════ */
.konami-overlay {
  position: fixed;
  inset: 0;
  z-index: 2800;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  text-align: center;
}
.konami-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5.5vw, 4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(100deg, var(--gold), var(--blue-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 20px;
}
.konami-overlay .beams { position: absolute; inset: 0; overflow: hidden; }
.konami-overlay .beams b {
  position: absolute;
  top: -30%;
  width: 8%;
  height: 160%;
  opacity: 0;
  filter: blur(18px);
  background: linear-gradient(to bottom, var(--gold), transparent 80%);
  animation: beamflash 0.55s ease-in-out infinite alternate;
}
.konami-overlay .beams b:nth-child(even) { background: linear-gradient(to bottom, var(--blue), transparent 80%); }
@keyframes beamflash { from { opacity: 0.05; } to { opacity: 0.5; } }

/* ══════════ REVEAL DEFAULTS (pre-JS state) ══════════ */
[data-reveal], [data-split] { visibility: visible; }
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 980px) {
  .band-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(8, 8, 12, 0.92);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { padding: 13px 16px; font-size: 0.95rem; }
  .nav-link-cta { margin-left: 0; text-align: center; margin-top: 8px; }
  .nav-burger { display: flex; }
}
@media (max-width: 760px) {
  .band-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: clamp(140px, 30vw, 220px); }
  .gallery-item.g-wide { grid-column: span 2; }
  .breaker { min-height: 54svh; }
  .tour-row { grid-template-columns: 86px 1fr; }
  .tour-badge { grid-column: 2; justify-self: start; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { padding: 14px 26px; }
}

/* ══════════ REDUCED MOTION ══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body::after { animation: none; }
}
