/* ===========================================================
   DJ SITE — Brutalist Underground Techno
   Acid lime accent · industrial typography · grain + glitch
   =========================================================== */

:root {
  --bg:        #000000;
  --bg-2:      #0a0a0a;
  --surface:   #121212;
  --surface-2: #1a1a1a;
  --line:      #1f1f1f;
  --text:      #f5f5f5;
  --text-dim:  #8a8a8a;
  --text-mute: #555;
  --accent:    #d4ff3c;   /* acid lime */
  --accent-2:  #ff2d55;   /* electric magenta */
  --accent-ink:#0a0a0a;

  --f-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --f-body:    "Manrope", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "Cascadia Code", monospace;

  --container: clamp(20px, 5vw, 88px);
  --easing:    cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

.mono { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

/* =========================================================
   GRAIN OVERLAY
   ========================================================= */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 8s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10%     { transform: translate(-5%,-5%); }
  20%     { transform: translate(-10%,5%); }
  30%     { transform: translate(5%,-10%); }
  40%     { transform: translate(-5%,10%); }
  50%     { transform: translate(-10%,5%); }
  60%     { transform: translate(10%,0%); }
  70%     { transform: translate(0%,10%); }
  80%     { transform: translate(-10%,-5%); }
  90%     { transform: translate(5%,5%); }
}

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}
@media (hover: none) { .cursor { display: none; } }
body.js .cursor { display: block; }
body:not(.js) .cursor { display: none; }

.cursor-dot, .cursor-ring {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  transition: opacity .2s, width .25s var(--easing), height .25s var(--easing);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid #fff;
  transition: width .25s var(--easing), height .25s var(--easing), border-color .25s;
}
.cursor.is-hovering .cursor-dot  { width: 0; height: 0; }
.cursor.is-hovering .cursor-ring { width: 60px; height: 60px; border-color: var(--accent); }
.cursor.is-hovering[data-label] .cursor-ring { background: var(--accent); }

/* Compact mode: when hovering small icons, ring shrinks and becomes outline-only
   so it doesn't smother the icon underneath. !important to win over [data-label] rule. */
.cursor.is-hovering.is-compact .cursor-ring {
  width: 0 !important; height: 0 !important;
  border-color: transparent !important;
  background: transparent !important;
}
.cursor.is-hovering.is-compact .cursor-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(0,0,0,.4);
}
.cursor.is-hovering.is-compact::after { content: none !important; }

.cursor[data-label]::after {
  content: attr(data-label);
  position: absolute; top: -50%; left: -50%;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink);
  transform: translate(-50%,-50%);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .cursor, .grain { display: none !important; }
  * { animation: none !important; transition: none !important; }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--container);
  transition: background .4s, padding .4s;
}
.nav.is-scrolled {
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  padding: 14px var(--container);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 900; font-size: 22px;
  letter-spacing: .04em;
}
.nav__brand-mark { color: var(--accent); }

.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  transition: color .25s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--accent); transition: width .3s var(--easing);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--text-dim);
  border-radius: 999px;
  transition: background .25s, color .25s, border-color .25s;
}
.nav__cta:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

@media (max-width: 760px) {
  .nav__links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: flex-end;
  padding: 120px var(--container) 60px;
  overflow: hidden;
}
.hero__image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(.95) brightness(.85);
  transform: scale(1.05);
  transition: transform 1.2s var(--easing);
  z-index: 0;
}
.hero.is-ready .hero__image { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 30%, rgba(0,0,0,.6) 70%, rgba(0,0,0,.95) 100%),
    radial-gradient(ellipse at left bottom, rgba(212,255,60,.08), transparent 50%);
  z-index: 1;
}
.hero__scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,.12) 3px,
    rgba(0,0,0,.12) 4px
  );
  z-index: 2;
  pointer-events: none;
  opacity: .5;
}

.hero__content {
  position: relative; z-index: 3;
  width: 100%;
  display: flex; flex-direction: column; gap: 28px;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-dim);
  opacity: 0; transform: translateY(20px);
  animation: rise .9s var(--easing) .15s forwards;
}
.hero__eyebrow .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(212,255,60,.7);
  animation: pulse 2s infinite;
}
.hero__eyebrow-sep { color: var(--accent); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212,255,60,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(212,255,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,255,60,0); }
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(72px, 18vw, 280px);
  line-height: .85;
  letter-spacing: -.02em;
  text-transform: uppercase;
  position: relative;
  opacity: 0; transform: translateY(40px);
  animation: rise 1.1s var(--easing) .3s forwards;
}
.hero__title::before,
.hero__title::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%;
  pointer-events: none;
}
.hero__title::before {
  color: var(--accent-2);
  mix-blend-mode: screen;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-3px, 0);
  animation: glitchA 5s infinite steps(1);
}
.hero__title::after {
  color: var(--accent);
  mix-blend-mode: screen;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(3px, 0);
  animation: glitchB 5s infinite steps(1);
}
@keyframes glitchA {
  0%, 90%, 100% { transform: translate(0, 0); opacity: 0; }
  91%           { transform: translate(-3px, 1px); opacity: .9; }
  92%           { transform: translate(2px, -2px); opacity: .9; }
  93%           { transform: translate(-1px, 2px); opacity: 0; }
}
@keyframes glitchB {
  0%, 92%, 100% { transform: translate(0, 0); opacity: 0; }
  93%           { transform: translate(3px, -1px); opacity: .9; }
  94%           { transform: translate(-2px, 2px); opacity: .9; }
  95%           { transform: translate(1px, -2px); opacity: 0; }
}

.hero__tagline {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  letter-spacing: .01em;
  max-width: 36ch;
  color: var(--text);
  opacity: 0; transform: translateY(20px);
  animation: rise .9s var(--easing) .5s forwards;
}

.hero__next {
  align-self: flex-start;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  padding: 16px 22px 16px 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color .3s, background .3s, transform .3s;
  opacity: 0; transform: translateY(20px);
  animation: rise .9s var(--easing) .7s forwards;
}
.hero__next:hover { border-color: var(--accent); background: rgba(212,255,60,.08); transform: translateY(-2px); }
.hero__next-label {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 10px;
}
.hero__next-main {
  font-family: var(--f-display); font-weight: 800; font-size: 22px;
  letter-spacing: .02em;
}
.hero__next-date { color: var(--accent); }
.hero__next-divider { color: var(--text-mute); margin: 0 4px; }
.hero__next-place {
  grid-column: 1 / -1;
  color: var(--text-dim); font-size: 11px;
}

.hero__scroll {
  position: absolute; right: var(--container); bottom: 40px;
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--text-dim) 0%, var(--text-dim) 50%, transparent 50%, transparent 100%);
  background-size: 1px 8px;
  animation: scrollLine 1.5s linear infinite;
}
@keyframes scrollLine {
  to { background-position: 0 16px; }
}
@media (max-width: 760px) {
  .hero__scroll { display: none; }
}

/* =========================================================
   MARQUEE — 3 stacked tracks at different speeds & directions
   ========================================================= */
.marquee-stack {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  padding: 0;
  position: relative;
}
.marquee-stack::before,
.marquee-stack::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-stack::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.marquee-stack::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.marquee:last-child { border-bottom: 0; }

.marquee__track {
  display: flex;
  white-space: nowrap;
  gap: 48px;
  font-family: var(--f-display); font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  will-change: transform;
  animation: marquee 40s linear infinite;
}
.marquee__item   { display: inline-block; white-space: nowrap; }
.marquee__star   { color: var(--accent); font-size: .8em; }

.marquee--fast .marquee__track   { animation-duration: 28s; font-size: clamp(28px, 5vw, 56px); }
.marquee--mid  .marquee__track   { animation-duration: 36s; font-size: clamp(22px, 4vw, 42px); }
.marquee--slow .marquee__track   { animation-duration: 52s; font-size: clamp(18px, 3.2vw, 34px); }

.marquee--reverse .marquee__track { animation-direction: reverse; }

.marquee__item--alt    { color: rgba(255,255,255,.35); font-weight: 700; }
.marquee__item--accent { color: var(--accent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation-duration: 600s; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { padding: 140px var(--container); position: relative; }
.about__inner { max-width: 1400px; margin: 0 auto; }
.about__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-top: 32px;
  max-width: 22ch;
}

.section-label {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-dim);
}
.section-label__name { color: var(--text); }
.section-label--light .section-label__name,
.section-label--light  { color: rgba(0,0,0,.7); }
.section-label::before {
  content: ""; display: block; width: 40px; height: 1px;
  background: currentColor; opacity: .4;
}

/* =========================================================
   SHOWS
   ========================================================= */
.shows { padding: 120px var(--container) 160px; }
.shows__inner { max-width: 1400px; margin: 0 auto; }

.shows__list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.show {
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.show::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform .55s var(--easing);
  z-index: 0;
}
.show:hover::before { transform: translateX(0); }
.show:hover .show__row { color: var(--accent-ink); }
.show:hover .show__day { color: var(--accent-ink); }
.show:hover .show__cta-arrow { transform: translateX(8px); }

.show__row {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  color: var(--text);
  transition: color .4s var(--easing);
}
.show__day {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(48px, 7vw, 72px);
  line-height: 1;
  color: var(--accent);
  transition: color .4s var(--easing);
}
.show__mon { display: block; margin-top: 6px; color: inherit; opacity: .7; }
.show__title {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(20px, 3vw, 34px);
  letter-spacing: .01em;
  text-transform: uppercase;
}
.show__city { margin-top: 6px; opacity: .7; }
.show__cta { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.show__cta-arrow {
  font-size: 22px;
  transition: transform .4s var(--easing);
}

@media (max-width: 760px) {
  .show__row { grid-template-columns: 90px 1fr; gap: 20px; padding: 22px 0; }
  .show__cta { display: none; }
  .show__day { font-size: 44px; }
}

/* show "when" badge — soft / soon / urgent */
.show__when {
  align-self: center;
  padding: 7px 12px;
  font-size: 10px;
  letter-spacing: .14em;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--text-mute);
  white-space: nowrap;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}
.show__row:hover .show__when {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.05);
}
.show__when--soon {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 700;
  animation: when-pulse 1.6s ease-in-out infinite;
}
@keyframes when-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,255,60,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(212,255,60,0); }
}
@media (max-width: 720px) {
  .show__when { display: none; }
}

/* =========================================================
   BIG COUNTDOWN — dramatic next-show timer
   ========================================================= */
.bigdown {
  position: relative;
  padding: 140px var(--container) 140px;
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.bigdown__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,255,60,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,45,85,.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: bigdown-drift 20s ease-in-out infinite alternate;
}
@keyframes bigdown-drift {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.15) translate(-30px, 20px); }
}
.bigdown::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.bigdown__inner {
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto;
}
.bigdown__top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
}
.section-label--accent .section-label__name { color: var(--accent); }
.bigdown__pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 4px;
  animation: pulse-dot 1.4s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(.55); opacity: .55; }
}
.bigdown__when {
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--text-mute);
}
.bigdown__where {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 80px);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.bigdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 48px;
}
.bigdown__cell {
  position: relative;
  padding: 36px 12px 22px;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition: border-color .35s, transform .35s;
}
.bigdown__cell::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(212,255,60,.08) 100%);
  opacity: 0;
  transition: opacity .5s;
}
.bigdown__cell:hover { border-color: var(--accent); transform: translateY(-3px); }
.bigdown__cell:hover::before { opacity: 1; }

.bigdown__num {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(64px, 11vw, 156px);
  line-height: .85;
  letter-spacing: -.05em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  position: relative;
}
/* Tick animation per second */
.bigdown__num.is-ticking {
  animation: tick-flip .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes tick-flip {
  0%   { transform: translateY(-30%) scale(.92); opacity: 0; filter: blur(2px); }
  60%  { transform: translateY(2%)   scale(1.02); opacity: 1; filter: blur(0); }
  100% { transform: translateY(0)    scale(1);   opacity: 1; filter: blur(0); }
}
.bigdown__lbl {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.bigdown__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px;
  background: var(--accent);
  color: #000;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: gap .35s, color .35s;
}
.bigdown__cta::before {
  content: "";
  position: absolute; inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);
}
.bigdown__cta:hover { gap: 22px; color: #000; }
.bigdown__cta:hover::before { transform: translateX(0); }
.bigdown__cta > * { position: relative; z-index: 1; }
.bigdown__cta svg { transition: transform .35s; }
.bigdown__cta:hover svg { transform: translateX(4px); }

.bigdown.is-live .bigdown__cell { border-color: #ff2d55; }
.bigdown.is-live .bigdown__num  { color: #ff2d55; animation: blink 1s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; } }

@media (max-width: 720px) {
  .bigdown__grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .bigdown { padding: 80px var(--container); }
}

/* =========================================================
   SPLIT TEXT — char-by-char reveal animation
   ========================================================= */
.js-split {
  /* Each .char inside is animated; the .word wrapper keeps words from breaking */
}
.js-split .word {
  display: inline-block;
  white-space: nowrap;
}
.js-split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(8deg);
  transition:
    opacity .8s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--ci, 0) * 24ms);
}
.js-split.is-visible .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* =========================================================
   MEDIA — YouTube + Instagram
   ========================================================= */
.media { padding: 120px var(--container) 60px; }
.media__inner { max-width: 1400px; margin: 0 auto; }

/* YouTube grid */
.yt-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.yt-card {
  display: block;
  color: var(--text);
  position: relative;
  transition: transform .35s var(--easing);
}
.yt-card:hover { transform: translateY(-4px); }
.yt-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.yt-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--easing), filter .3s;
  filter: contrast(1.04) saturate(.95);
}
.yt-card:hover .yt-card__thumb img { transform: scale(1.06); }
.yt-card__thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
  pointer-events: none;
}
.yt-card__play {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 64px;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  transform: translate(-50%, -50%) scale(.85);
  transition: transform .3s var(--easing), background .25s;
  z-index: 1;
}
.yt-card:hover .yt-card__play { transform: translate(-50%, -50%) scale(1); }
.yt-card__cap {
  margin-top: 14px;
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.25; letter-spacing: .01em;
  text-transform: uppercase;
}

/* Instagram grid */
.ig-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 980px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

.ig-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface);
  display: block;
  border: 1px solid var(--line);
}
.ig-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--easing), filter .3s;
  filter: contrast(1.04);
}
.ig-card:hover img { transform: scale(1.08); filter: contrast(1.04) brightness(.6); }
.ig-card__ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: var(--surface-2);
  color: var(--text-mute);
  font-size: 18px; letter-spacing: .2em;
}
.ig-card__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px;
  color: white;
  opacity: 0;
  transition: opacity .3s var(--easing);
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
  pointer-events: none;
}
.ig-card:hover .ig-card__overlay { opacity: 1; }
.ig-card__overlay svg {
  position: absolute; top: 12px; right: 12px;
  color: var(--accent);
}
.ig-card__cap {
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   SUBSCRIBE
   ========================================================= */
.subscribe {
  position: relative;
  padding: 140px var(--container);
  background: var(--accent);
  color: var(--accent-ink);
  overflow: hidden;
}
.subscribe__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at top left, rgba(0,0,0,.18), transparent 40%),
    radial-gradient(ellipse at bottom right, rgba(0,0,0,.25), transparent 50%);
}
.subscribe__noise {
  position: absolute; inset: 0; opacity: .15; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.subscribe__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.subscribe__title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(40px, 8vw, 96px);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 36px 0 48px;
  color: var(--accent-ink);
}
.subscribe__title span { display: block; color: color-mix(in srgb, var(--accent-ink) 55%, transparent); }

.subscribe__form {
  display: flex; gap: 8px;
  max-width: 640px;
  border-bottom: 2px solid var(--accent-ink);
  padding-bottom: 6px;
}
.subscribe__form input {
  flex: 1; min-width: 0;
  background: transparent;
  border: 0;
  font-family: var(--f-body); font-size: clamp(18px, 2vw, 22px); font-weight: 500;
  color: var(--accent-ink);
  padding: 14px 4px;
  outline: 0;
}
.subscribe__form input::placeholder { color: color-mix(in srgb, var(--accent-ink) 45%, transparent); }
.subscribe__form button {
  background: var(--accent-ink);
  color: var(--accent);
  border: 0;
  padding: 14px 28px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-weight: 700; font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
  transition: gap .25s, transform .15s;
  flex-shrink: 0;
  cursor: pointer;
}
.subscribe__form button:hover { gap: 16px; transform: translateX(2px); }
.subscribe__form button:disabled { opacity: .6; cursor: wait; }

.subscribe__feedback {
  margin-top: 20px; min-height: 24px;
  font-family: var(--f-mono); font-size: 13px; letter-spacing: .05em;
  color: var(--accent-ink);
}
.subscribe__feedback.is-error { color: #7a0010; }
.subscribe__feedback.is-success { font-weight: 700; }
.subscribe__legal {
  margin-top: 24px;
  color: color-mix(in srgb, var(--accent-ink) 55%, transparent);
}

/* =========================================================
   SOCIALS — pro tiles + side rail
   ========================================================= */
.socials-pro {
  padding: 140px var(--container) 100px;
  position: relative;
  overflow: hidden;
}
.socials-pro__inner { max-width: 1400px; margin: 0 auto; }
.socials-pro__title {
  margin-top: 28px;
  margin-bottom: 56px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 120px);
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.socials-pro__title .line {
  display: inline-block;
  overflow: hidden;
}
.socials-pro__title .line--accent {
  color: var(--accent);
  font-style: italic;
  position: relative;
}
.socials-pro__title .line--accent::after {
  content: "";
  display: inline-block;
  width: 16px; height: 16px;
  background: var(--accent);
  margin-left: 12px;
  vertical-align: 12%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(.7); opacity: .55; }
}

/* GRID OF BRANDED TILES */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.social-tile {
  position: relative;
  display: grid;
  grid-template-columns: 32px 64px 1fr 40px;
  gap: 14px;
  align-items: center;
  padding: 28px 26px;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: color .35s cubic-bezier(.77,0,.18,1);
  --i: 0;
}

/* The brand-colour fill that wipes up from below on hover */
.social-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: translateY(101%);
  transition: transform .55s cubic-bezier(.77,0,.18,1);
  z-index: -1;
}
.social-tile:hover::before,
.social-tile:focus-visible::before {
  transform: translateY(0);
}

/* Subtle accent line that slides in on hover */
.social-tile::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s cubic-bezier(.77,0,.18,1) .05s;
  z-index: 1;
}
.social-tile:hover::after { transform: scaleY(1); transform-origin: top; }

/* Giant watermark icon on the right */
.social-tile__bg-icon {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  width: 220px; height: 220px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  transition: opacity .5s, transform .5s cubic-bezier(.77,0,.18,1);
  color: currentColor;
}
.social-tile__bg-icon svg { width: 100%; height: 100%; display: block; }
.social-tile:hover .social-tile__bg-icon {
  opacity: 0.16;
  transform: translateY(-50%) rotate(0deg) scale(1.1);
}

.social-tile__num {
  position: relative; z-index: 2;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--text-mute);
  align-self: start;
  padding-top: 6px;
  transition: color .35s;
}
.social-tile:hover .social-tile__num { color: rgba(0,0,0,.6); }

.social-tile__icon {
  position: relative; z-index: 2;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--brand);
  transition: color .35s, transform .5s cubic-bezier(.34,1.56,.64,1);
}
.social-tile__icon svg { width: 36px; height: 36px; }
.social-tile:hover .social-tile__icon {
  color: #000;
  transform: rotate(-8deg) scale(1.12);
}
/* Twitter/X & Tidal which are black — invert on hover for visibility */
.social-tile[style*="#000000"]:hover .social-tile__icon { color: #fff; }
.social-tile[style*="#000000"]:hover::before { background: #fff; color: #000; }
.social-tile[style*="#000000"]:hover { color: #000; }

.social-tile__meta {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.social-tile__platform {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: .005em;
  text-transform: uppercase;
  transition: color .35s;
}
.social-tile:hover .social-tile__platform { color: #000; }
.social-tile__handle {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: .08em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .35s;
}
.social-tile:hover .social-tile__handle { color: rgba(0,0,0,.65); }

.social-tile__arrow {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1),
              border-color .35s,
              background .35s,
              color .35s;
}
.social-tile:hover .social-tile__arrow {
  transform: translate(4px, -4px) rotate(0);
  border-color: #000;
  background: #000;
  color: var(--brand);
}

/* Stagger entrance: each tile reveals .08s after the previous */
.social-tile.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.social-tile.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   FLOATING SIDE RAIL (visible after scrolling past hero)
   ========================================================= */
.social-rail {
  position: fixed;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.social-rail.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.social-rail__item {
  position: relative;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(20, 20, 20, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  text-decoration: none;
  transition: color .3s, background .3s, border-color .3s, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.social-rail__item svg { width: 17px; height: 17px; display: block; }
.social-rail__item:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #000;
}
.social-rail__item[style*="#000000"]:hover { color: #fff; }

/* Tooltip on hover */
.social-rail__item::before {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  padding: 5px 10px;
  background: var(--accent);
  color: #000;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.social-rail__item:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .social-rail { display: none; }
  .social-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   NAV SOCIAL CHIPS (top right) — handles up to ~10 icons
   ========================================================= */
.nav__socials {
  display: flex;
  gap: 2px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  align-items: center;
}
.nav__social {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: var(--text-mute);
  text-decoration: none;
  transition: color .3s, transform .35s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}
.nav__social svg {
  width: 17px; height: 17px;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}
.nav__social:hover {
  color: var(--brand);
  transform: translateY(-3px);
}
.nav__social:hover svg {
  transform: rotate(-10deg) scale(1.15);
}
/* Underline pop on hover */
.nav__social::after {
  content: "";
  position: absolute;
  left: 25%; right: 25%; bottom: 4px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.77,0,.18,1);
}
.nav__social:hover::after { transform: scaleX(1); }

/* Hide some icons as viewport shrinks */
@media (max-width: 1200px) {
  .nav__social:nth-child(n+7) { display: none; }
}
@media (max-width: 1024px) {
  .nav__social:nth-child(n+5) { display: none; }
}
@media (max-width: 820px) {
  .nav__socials { display: none; }
}

/* =========================================================
   HERO SOCIALS — under the artist name
   ========================================================= */
.hero__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 26px;
}
.hero__social {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  text-decoration: none;
  transition: color .3s, background .3s, border-color .3s, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.hero__social svg {
  width: 20px; height: 20px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.hero__social:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #000;
}
.hero__social[style*="#000000"]:hover { color: #fff; }
.hero__social:hover svg { transform: rotate(-10deg) scale(1.15); }
/* Tooltip on hover */
.hero__social::after {
  content: attr(data-tooltip);
  position: absolute; left: 50%; bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(6px);
  padding: 4px 8px;
  background: var(--accent); color: #000;
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.hero__social:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   FOOTER — pro multi-column with socials
   ========================================================= */
.footer {
  position: relative;
  padding: 80px var(--container) 32px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
}
.footer__inner {
  max-width: 1400px; margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-title {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.footer__logo { display: flex; align-items: center; gap: 12px; }
.footer__mark {
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}
.footer__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer__sub { font-size: 11px; letter-spacing: .15em; color: var(--text-mute); }
.footer__email {
  color: var(--text);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 32px);
  text-decoration: none;
  letter-spacing: -.005em;
  transition: color .3s;
}
.footer__email:hover { color: var(--accent); }
.footer__socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.footer__social {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  color: var(--text-mute);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: color .3s, background .3s, border-color .3s, transform .3s;
}
.footer__social svg {
  width: 18px; height: 18px;
  color: var(--brand);
  transition: transform .3s;
}
.footer__social:hover {
  background: rgba(255,255,255,.04);
  border-color: var(--brand);
  color: var(--text);
  transform: translateX(4px);
}
.footer__social:hover svg { transform: rotate(-10deg) scale(1.1); }

.footer__bottom {
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.footer__bottom .footer__copy    { justify-self: start; }
.footer__bottom .footer__powered { justify-self: center; }
.footer__bottom .footer__credit  { justify-self: end; }
/* When credit is absent, keep powered centered; the empty 3rd column reserves space */
.footer__bottom:not(:has(.footer__credit))::after {
  content: ""; /* preserve grid column for symmetry */
}

@media (max-width: 720px) {
  .footer__bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 8px;
  }
  .footer__bottom .footer__copy,
  .footer__bottom .footer__powered,
  .footer__bottom .footer__credit { justify-self: center; }
}

@media (max-width: 900px) {
  .footer { padding: 60px 20px 24px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   MOBILE NAV — hamburger + full-screen overlay
   ========================================================= */
.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  margin-left: 8px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  align-items: center; justify-content: center;
  position: relative;
  z-index: 110;
}
.nav__hamburger span,
.nav__hamburger span::before,
.nav__hamburger span::after {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  transition: transform .3s, background .3s, top .3s;
}
.nav__hamburger span { position: relative; }
.nav__hamburger span::before,
.nav__hamburger span::after {
  content: ""; position: absolute; left: 0;
}
.nav__hamburger span::before { top: -6px; }
.nav__hamburger span::after  { top:  6px; }
body.nav-open .nav__hamburger span { background: transparent; }
body.nav-open .nav__hamburger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav__hamburger span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--easing);
  display: flex; align-items: center; justify-content: center;
}
body.nav-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__inner {
  display: flex; flex-direction: column; gap: 32px;
  padding: 40px;
  width: 100%;
  max-width: 600px;
}
.mobile-menu__links {
  display: flex; flex-direction: column;
  gap: 0;
}
.mobile-menu__links a {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 8vw, 64px);
  line-height: 1.1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  transition: color .25s, transform .35s;
  opacity: 0;
  transform: translateY(40px);
}
body.nav-open .mobile-menu__links a {
  opacity: 1; transform: translateY(0);
}
body.nav-open .mobile-menu__links a:nth-child(1) { transition-delay: .15s; }
body.nav-open .mobile-menu__links a:nth-child(2) { transition-delay: .20s; }
body.nav-open .mobile-menu__links a:nth-child(3) { transition-delay: .25s; }
body.nav-open .mobile-menu__links a:nth-child(4) { transition-delay: .30s; }
body.nav-open .mobile-menu__links a:nth-child(5) { transition-delay: .35s; }
body.nav-open .mobile-menu__links a:nth-child(6) { transition-delay: .40s; }
.mobile-menu__links a {
  transition: opacity .55s var(--easing), transform .55s var(--easing), color .25s;
}
.mobile-menu__links a:hover {
  color: var(--accent);
}
.mobile-menu__links a::after {
  content: "→";
  display: inline-block;
  margin-left: 14px;
  transform: translateX(-10px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}
.mobile-menu__links a:hover::after { transform: translateX(0); opacity: 1; }

.mobile-menu__socials {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.mobile-menu__social {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}
.mobile-menu__social:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #000;
  transform: translateY(-3px);
}
.mobile-menu__social[style*="#000000"]:hover { color: #fff; }
.mobile-menu__email {
  font-size: 13px;
  color: var(--text-mute);
  text-decoration: none;
  letter-spacing: .1em;
}
.mobile-menu__email:hover { color: var(--accent); }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: inline-flex; }
}
@media (min-width: 821px) {
  .mobile-menu { display: none !important; }
}

/* =========================================================
   MOBILE AUDIT — public landing fine-tuning
   ========================================================= */
@media (max-width: 768px) {
  /* tighter padding */
  .nav { padding: 16px 20px; }
  .nav__brand { font-size: 14px; }

  /* hero */
  .hero { padding: 100px 20px 40px; min-height: 90vh; }
  .hero__title { font-size: clamp(56px, 18vw, 120px); }
  .hero__tagline { font-size: 14px; }

  /* big countdown */
  .bigdown { padding: 60px 20px; }
  .bigdown__where { font-size: clamp(24px, 7vw, 40px); margin-bottom: 28px; }
  .bigdown__grid { gap: 4px; }
  .bigdown__cell { padding: 20px 6px 14px; }
  .bigdown__num { font-size: clamp(48px, 14vw, 80px); }
  .bigdown__lbl { font-size: 9px; }
  .bigdown__cta { padding: 14px 22px; font-size: 14px; }

  /* shows */
  .show__when { font-size: 9px; padding: 5px 8px; }

  /* socials */
  .socials-pro { padding: 80px 20px 60px; }
  .socials-pro__title { font-size: clamp(40px, 12vw, 72px); margin-bottom: 32px; }
  .social-tile { padding: 22px 18px; grid-template-columns: 28px 50px 1fr 36px; gap: 10px; }
  .social-tile__platform { font-size: 20px; }
  .social-tile__icon svg { width: 30px; height: 30px; }
  .social-tile__arrow { width: 34px; height: 34px; }

  /* subscribe */
  .subscribe { padding: 80px 20px; }
  .subscribe__title { font-size: clamp(40px, 10vw, 64px); }

  /* about */
  .about { padding: 80px 20px; }

  /* shows */
  .shows { padding: 80px 20px; }
}

/* iOS safe-area bottom */
@supports (padding: env(safe-area-inset-bottom)) {
  .footer { padding-bottom: max(32px, env(safe-area-inset-bottom)); }
  .social-rail { bottom: max(24px, env(safe-area-inset-bottom)); }
}

/* Prevent iOS body scroll when menu open */
body.nav-open { overflow: hidden; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js .reveal { opacity: 1; transform: none; }

/* =========================================================
   THEMES — swap accent colors via data-theme attribute on <html>
   ========================================================= */
html[data-theme="magenta"] {
  --accent: #ff2d55;
  --accent-2: #ff9ec2;
  --accent-ink: #ffffff;
}
html[data-theme="cyan"] {
  --accent: #00e5ff;
  --accent-2: #ff2d55;
  --accent-ink: #000000;
}
html[data-theme="blood-red"] {
  --accent: #ff0033;
  --accent-2: #ffffff;
  --accent-ink: #ffffff;
}
html[data-theme="sunset"] {
  --accent: #ff6b35;
  --accent-2: #ffd23f;
  --accent-ink: #000000;
}
html[data-theme="ultraviolet"] {
  --accent: #b14eff;
  --accent-2: #00e5ff;
  --accent-ink: #ffffff;
}
html[data-theme="mono"] {
  --accent: #ffffff;
  --accent-2: #888888;
  --accent-ink: #000000;
}
html[data-theme="emerald"] {
  --accent: #10ffb0;
  --accent-2: #ff2d55;
  --accent-ink: #000000;
}

/* =========================================================
   HERO LIVE STATUS BADGE
   ========================================================= */
.hero__livestatus {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  margin: 0 0 18px;
  border: 1px solid var(--accent);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  align-self: flex-start;
  transition: transform .3s, background .3s, color .3s;
}
.hero__livestatus--live { color: #ff2d55; border-color: #ff2d55; }
.hero__livestatus--live .hero__livestatus-pulse { background: #ff2d55; }
.hero__livestatus--live .hero__livestatus-pulse::after { background: #ff2d55; }
.hero__livestatus-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}
.hero__livestatus-pulse::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%; background: var(--accent);
  animation: livePulse 1.6s ease-out infinite;
  opacity: .55;
}
@keyframes livePulse {
  0%   { transform: scale(.8); opacity: .55; }
  100% { transform: scale(3);  opacity: 0; }
}
a.hero__livestatus:hover {
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-2px);
}
a.hero__livestatus:hover .hero__livestatus-pulse { background: var(--accent-ink); }
a.hero__livestatus:hover .hero__livestatus-pulse::after { background: var(--accent-ink); }

/* =========================================================
   STATS COUNTER
   ========================================================= */
.stats { padding: 120px var(--container); position: relative; }
.stats__inner { max-width: 1400px; margin: 0 auto; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: var(--line);
}
.stat-tile {
  padding: 40px 28px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.stat-tile::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.stat-tile:hover { background: #050505; }
.stat-tile:hover::before { opacity: .05; }
.stat-tile__value {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.stat-tile__suffix {
  font-size: .45em;
  color: var(--accent);
  margin-left: 4px;
}
.stat-tile__label {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-top: 18px;
}

@media (max-width: 768px) {
  .stats { padding: 80px 20px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat-tile { padding: 32px 20px; }
  .stat-tile__value { font-size: clamp(40px, 14vw, 64px); }
}

/* =========================================================
   VENUES / LOGO CLOUD
   ========================================================= */
.venues { padding: 100px var(--container); overflow: hidden; }
.venues__inner { max-width: 1400px; margin: 0 auto; }

.venues__marquee {
  margin-top: 40px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.venues__marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: venueScroll 50s linear infinite;
  align-items: center;
}
@keyframes venueScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.venue-chip {
  display: inline-flex;
  align-items: center;
  height: 60px;
  text-decoration: none;
  color: var(--text-mute);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .3s, filter .3s;
  filter: grayscale(1) brightness(.7);
  opacity: .7;
}
a.venue-chip:hover { color: var(--accent); filter: grayscale(0) brightness(1); opacity: 1; }
.venue-chip img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(.7);
}
a.venue-chip:hover img { filter: brightness(0) invert(1); }

.venues__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
}
.venue-card {
  background: var(--bg);
  padding: 32px 24px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  min-height: 120px;
  color: var(--text-mute);
  transition: background .3s, color .3s;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .04em;
  text-align: center;
}
.venue-card img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(.7);
  transition: filter .3s, transform .3s;
}
a.venue-card:hover { background: #050505; color: var(--accent); }
a.venue-card:hover img { filter: brightness(0) invert(1); transform: scale(1.05); }

@media (max-width: 768px) {
  .venues { padding: 70px 20px; }
  .venues__marquee-track { gap: 50px; }
  .venue-chip { font-size: 20px; height: 50px; }
  .venue-chip img { max-height: 50px; }
}

/* =========================================================
   PHOTO GALLERY
   ========================================================= */
.gallery { padding: 100px var(--container); }
.gallery__inner { max-width: 1400px; margin: 0 auto; }
.gallery__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 240px;
  gap: 4px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: zoom-in;
  display: block;
}
/* Vary tile sizes for masonry-ish layout */
.gallery__item:nth-child(7n+1) { grid-row: span 2; grid-column: span 2; }
.gallery__item:nth-child(7n+4) { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--easing), filter .6s;
  filter: grayscale(.4) brightness(.8);
}
.gallery__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(1);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent 40%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  z-index: 2;
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .gallery { padding: 70px 20px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item:nth-child(7n+1) { grid-row: auto; grid-column: span 2; grid-auto-rows: 200px; }
  .gallery__item:nth-child(7n+4) { grid-row: auto; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--easing);
  display: flex; align-items: center; justify-content: center;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage {
  max-width: 92vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.lightbox__stage img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox__caption {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.lightbox__counter {
  position: absolute; top: -32px; right: 0;
  color: var(--text-mute);
  font-size: 11px;
  letter-spacing: .2em;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: transparent; border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  font-size: 28px;
  line-height: 1;
  transition: background .25s, border-color .25s;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--accent); border-color: var(--accent); color: var(--accent-ink);
}
@media (max-width: 600px) {
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* =========================================================
   BOOKING FORM
   ========================================================= */
.booking { padding: 120px var(--container); position: relative; }
.booking__inner { max-width: 880px; margin: 0 auto; }
.booking__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 24px 0 8px;
}
.booking__lede {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.booking__form { display: flex; flex-direction: column; gap: 16px; }
.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking__field { display: flex; flex-direction: column; gap: 8px; }
.booking__field--full { grid-column: 1 / -1; }
.booking__field > span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.booking__field em { color: var(--accent); font-style: normal; }
.booking__field input,
.booking__field select,
.booking__field textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 14px 16px;
  font-family: var(--f-sans);
  font-size: 15px;
  border-radius: 4px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.booking__field input:focus,
.booking__field select:focus,
.booking__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 4%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}
/* Custom select chevron — replaces browser default */
.booking__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.booking__field select:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%),
    linear-gradient(color-mix(in srgb, var(--accent) 4%, transparent), color-mix(in srgb, var(--accent) 4%, transparent));
}
/* Style the dropdown options (Chrome/Edge/Firefox honour this on most platforms) */
.booking__field select option {
  background: #1a1a1a;
  color: var(--text);
  padding: 12px;
  font-size: 14px;
}
.booking__field select option:hover,
.booking__field select option:checked,
.booking__field select option:focus {
  background: linear-gradient(var(--accent), var(--accent));
  background-color: var(--accent) !important;
  color: var(--accent-ink) !important;
}
.booking__field select option[value=""] {
  color: var(--text-mute);
  font-style: italic;
}
.booking__field textarea { resize: vertical; min-height: 120px; }
.booking__submit {
  margin-top: 16px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center; gap: 16px;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--accent-ink);
  border: none;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.booking__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212,255,60,.3);
}
.booking__submit:disabled { opacity: .5; cursor: wait; }
.booking__submit .btn-mega__arrow {
  transition: transform .3s;
}
.booking__submit:hover .btn-mega__arrow { transform: translateX(6px); }
.booking__feedback { font-size: 14px; min-height: 1.5em; }
.booking__feedback.is-success { color: var(--accent); }
.booking__feedback.is-error { color: #ff5577; }

@media (max-width: 768px) {
  .booking { padding: 80px 20px; }
  .booking__title { font-size: clamp(40px, 11vw, 64px); }
  .booking__row { grid-template-columns: 1fr; }
  .booking__submit { width: 100%; justify-content: center; }
}

/* =========================================================
   STICKY MUSIC PLAYER
   ========================================================= */
.music-player {
  position: fixed;
  left: 0; right: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr 44px;
  gap: 16px;
  align-items: center;
  padding: 10px 16px;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid var(--accent);
  transition: transform .4s var(--easing);
}
.music-player--top {
  top: 0; bottom: auto;
  border-top: none;
  border-bottom: 1px solid var(--accent);
  transform: translateY(-110%);
}
.music-player--bottom {
  bottom: 0; top: auto;
  transform: translateY(110%);
}
.music-player.is-ready { transform: translateY(0); }
.music-player.is-closed { transform: translateY(110%) !important; }
.music-player--top.is-closed { transform: translateY(-110%) !important; }

.music-player__info {
  display: flex; align-items: center; gap: 12px;
  min-width: 0;
}
.music-player__pulse {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.music-player__pulse::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--accent);
  animation: livePulse 1.8s ease-out infinite;
  opacity: .5;
}
.music-player__meta { min-width: 0; }
.music-player__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-player__sub {
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--text-mute);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-player__embed {
  min-width: 0;
}
.music-player__embed iframe {
  display: block;
  max-height: 60px;
}
.music-player__close {
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.music-player__close:hover {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
}

@media (max-width: 600px) {
  .music-player {
    grid-template-columns: 1fr 36px;
    gap: 8px;
  }
  .music-player__info { display: none; }
  .music-player__embed iframe { max-height: 48px; }
  .music-player__close { width: 32px; height: 32px; font-size: 18px; }
}

/* Push footer up when bottom music player is active so it doesn't overlap */
body.has-music-bottom { padding-bottom: 80px; }
@media (max-width: 600px) { body.has-music-bottom { padding-bottom: 60px; } }
body.has-music-top .nav { top: 80px; }
@media (max-width: 600px) { body.has-music-top .nav { top: 60px; } }

/* =========================================================
   HERO VIDEO BG (variant: video)
   ========================================================= */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(.7) saturate(.85);
}
.hero--variant-video .hero__overlay {
  background: linear-gradient(135deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.7) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
@media (max-width: 600px) {
  /* iOS: only show poster, skip auto-playing video on mobile to save data */
  .hero__video { display: none; }
}

/* =========================================================
   HERO SPLIT (variant: split — image on right half)
   ========================================================= */
.hero--variant-split { display: grid; grid-template-columns: 1fr 1fr; }
.hero--variant-split .hero__content { grid-column: 1; }
.hero--variant-split .hero__split-image {
  grid-column: 2;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero--variant-split .hero__split-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%);
}
@media (max-width: 900px) {
  .hero--variant-split { grid-template-columns: 1fr; }
  .hero--variant-split .hero__split-image {
    grid-column: 1; grid-row: 1;
    position: absolute; inset: 0; opacity: .35;
  }
  .hero--variant-split .hero__content { grid-column: 1; grid-row: 1; z-index: 2; }
}

/* =========================================================
   LANGUAGE SWITCH
   ========================================================= */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  margin-left: 10px;
  font-family: var(--f-mono);
}
.lang-switch__btn {
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--text-mute);
  text-decoration: none;
  transition: background .25s, color .25s;
  font-weight: 600;
}
.lang-switch__btn + .lang-switch__btn { border-left: 1px solid var(--line); }
.lang-switch__btn:hover { color: var(--text); background: rgba(255,255,255,.03); text-decoration: none; }
.lang-switch__btn.is-active { background: var(--accent); color: var(--accent-ink); }
@media (max-width: 820px) {
  .lang-switch { display: none; }
}

/* =========================================================
   ADMIN: analytics dashboard charts
   ========================================================= */
.analytics-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.analytics-card {
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.analytics-card__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.analytics-card__value {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -.01em;
  color: var(--accent);
  margin: 6px 0 0;
  font-variant-numeric: tabular-nums;
}
.analytics-card__sub { font-size: 11px; color: var(--text-mute); margin-top: 6px; }

.chart-card {
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 16px;
}
.chart-card h3 { margin: 0 0 16px; font-size: 14px; }
.chart-svg { width: 100%; height: 200px; display: block; }
.chart-svg .grid-line { stroke: var(--line); stroke-dasharray: 2 4; }
.chart-svg .bar { fill: var(--accent); transition: fill .25s; }
.chart-svg .bar:hover { fill: var(--text); }
.chart-svg .line-path { stroke: var(--accent); stroke-width: 2; fill: none; }
.chart-svg .area-fill { fill: var(--accent); opacity: .12; }
.chart-svg .axis-label { fill: var(--text-mute); font-family: var(--f-mono); font-size: 10px; }

.platform-bar {
  display: grid; grid-template-columns: 100px 1fr 60px;
  gap: 12px; align-items: center;
  padding: 8px 0;
}
.platform-bar__name { font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); text-transform: uppercase; }
.platform-bar__track { height: 8px; background: var(--line); border-radius: 4px; overflow: hidden; }
.platform-bar__fill { height: 100%; background: var(--accent); transition: width .8s var(--easing); }
.platform-bar__count { font-family: var(--f-mono); font-size: 12px; text-align: right; font-variant-numeric: tabular-nums; }

/* =========================================================
   HERO SLIDESHOW (variant fallback when multiple hero images active)
   ========================================================= */
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlideFade var(--slide-time, 30s) infinite;
}
@keyframes heroSlideFade {
  0%, 5%   { opacity: 1; transform: scale(1.02); }
  calc((100% / var(--slide-count, 3)) - 2%), calc((100% / var(--slide-count, 3)) + 2%) { opacity: 0; }
  95%, 100% { opacity: 0; transform: scale(1); }
}
/* Fallback for browsers without calc() in keyframes — simpler fade */
@supports not (animation-name: heroSlideFade) {
  .hero__slide { animation: heroSlideSimple var(--slide-time, 30s) infinite; }
}
@keyframes heroSlideSimple {
  0%, 25%  { opacity: 1; }
  35%, 100% { opacity: 0; }
}

/* =========================================================
   HERO SCROLL EFFECTS
   ========================================================= */
/* Default (normal): hero scrolls away with the page — no special treatment needed. */

/* Fixed: image stays in viewport while content scrolls past */
.hero--scroll-fixed .hero__image,
.hero--scroll-fixed .hero__slideshow {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;          /* was -1 — caused image to hide behind body bg */
  transform: none;     /* override the default scale(1.05) so fixed positioning isn't broken by transform */
}
.hero--scroll-fixed { background: transparent; }
.hero--scroll-fixed .hero__overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
}
.hero--scroll-fixed .hero__scanlines {
  position: fixed;
  inset: 0;
  z-index: 1;
}
.hero--scroll-fixed .hero__content { position: relative; z-index: 2; }

/* All subsequent sections paint OVER the fixed hero image as the user scrolls past */
.hero--scroll-fixed ~ section,
.hero--scroll-fixed ~ footer,
.hero--scroll-fixed ~ .marquee {
  position: relative;
  z-index: 3;
  background: var(--bg);
}

/* Parallax: image scrolls slower than page (GPU-accelerated transform) */
.hero--scroll-parallax .hero__image,
.hero--scroll-parallax .hero__slideshow {
  will-change: transform;
  transition: transform 0s linear;
}
/* JS adds inline transform: translate3d(0, scrollY * 0.4, 0) */

@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; opacity: 1; }
  .hero__slide:not(:first-child) { display: none; }
  .hero--scroll-parallax .hero__image { transform: none !important; }
}

/* =========================================================
   MUSIC EMBED IN GIG CARDS
   ========================================================= */
.show__embed {
  margin-top: -1px;
  padding: 0 28px 20px;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.music-embed {
  width: 100%;
  border-radius: 8px;
  display: block;
  margin-top: 12px;
  border: 0;
}
.music-embed--spotify { max-width: 100%; height: 152px; }
.music-embed--apple { max-width: 100%; min-height: 175px; }
.music-embed--soundcloud { min-height: 152px; }
.music-embed--youtube { min-height: 240px; }
.music-embed--mixcloud { min-height: 152px; }
@media (max-width: 600px) {
  .show__embed { padding: 0 16px 16px; }
}

/* =========================================================
   GALLERY FILTER CHIPS
   ========================================================= */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.gallery__chip {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65);
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
}
.gallery__chip:hover {
  border-color: var(--accent);
  color: var(--text);
}
.gallery__chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink, #000);
  font-weight: 700;
}
.gallery__item.is-hidden-by-filter { display: none; }

/* =========================================================
   LIVE STATUS — platform variant with icon
   ========================================================= */
.hero__livestatus--has-platform {
  padding-left: 14px;
}
.hero__livestatus-platform {
  display: inline-flex;
  align-items: center;
  margin-right: 4px;
  opacity: .9;
}
.hero__livestatus-platform svg { width: 14px; height: 14px; fill: currentColor; }

/* =========================================================
   COOKIE CONSENT BANNER (GDPR)
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 9999;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(15, 15, 15, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px 24px;
  animation: cookieSlideUp .4s ease-out;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__inner { display: flex; flex-direction: column; gap: 12px; }
.cookie-banner__text {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,.92);
}
.cookie-banner__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .06em;
  cursor: pointer;
  color: rgba(255,255,255,.75);
}
.cookie-banner__toggle input { accent-color: var(--accent); width: 16px; height: 16px; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  flex: 1;
  min-width: 140px;
  padding: 10px 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
}
.cookie-banner__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--accent-ink, #000);
  border-color: var(--accent);
  font-weight: 700;
}
.cookie-banner__btn--accept:hover { background: transparent; color: var(--accent); }
@media (max-width: 500px) {
  .cookie-banner { bottom: 8px; left: 8px; right: 8px; padding: 16px; }
  .cookie-banner__btn { min-width: 0; padding: 10px 12px; }
}

/* =========================================================
   RELEASE EMBED (Spotify / Bandcamp sticky player)
   ========================================================= */
.release-embed--after_hero { padding: 30px 24px; max-width: 900px; margin: 0 auto; }
.release-embed--after_hero .release-embed__inner { background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 16px; }

.release-embed--in_hero {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 90%;
  max-width: 500px;
}

.release-embed--sticky_top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(15, 15, 15, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 8px 16px;
  animation: releaseSlideDown .4s ease-out;
}
.release-embed--sticky_top.is-dismissed { transform: translateY(-100%); transition: transform .3s; }

.release-embed--sticky_bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(15, 15, 15, .92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 8px 16px;
  animation: releaseSlideUp .4s ease-out;
}
.release-embed--sticky_bottom.is-dismissed { transform: translateY(100%); transition: transform .3s; }

@keyframes releaseSlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes releaseSlideUp   { from { transform: translateY(100%);  } to { transform: translateY(0); } }

.release-embed--sticky_top .release-embed__inner,
.release-embed--sticky_bottom .release-embed__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.release-embed__label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}
.release-embed--after_hero .release-embed__label { margin-bottom: 10px; }
.release-embed__close {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 14px;
}
.release-embed__close:hover { color: var(--accent); border-color: var(--accent); }
.release-embed iframe { display: block; max-width: 100%; }
.release-embed--sticky_top iframe,
.release-embed--sticky_bottom iframe { max-height: 80px; }

/* =========================================================
   SHOWS — "Add to calendar" button
   ========================================================= */
.shows__subscribe {
  margin-left: auto;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--text-mute);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  transition: all .2s;
}
.shows__subscribe:hover {
  color: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}

/* =========================================================
   LANG SWITCHER — DROPDOWN VARIANT (4+ languages)
   ========================================================= */
.lang-switch--dropdown {
  position: relative;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px 7px 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .2s;
}
.lang-switch__toggle:hover {
  border-color: var(--accent);
  color: var(--text);
}
.lang-switch__toggle[aria-expanded="true"] {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.lang-switch__caret {
  font-size: 9px;
  transition: transform .2s;
}
.lang-switch__toggle[aria-expanded="true"] .lang-switch__caret {
  transform: rotate(180deg);
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 220px;
  max-height: 60vh;
  overflow-y: auto;
  background: rgba(15, 15, 15, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 200;
  animation: langMenuFade .15s ease-out;
}
@keyframes langMenuFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-switch__menu li { margin: 0; padding: 0; }
.lang-switch__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  color: var(--text-dim);
  border-radius: 6px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.lang-switch__opt:hover {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--text);
  text-decoration: none;
}
.lang-switch__opt.is-active {
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  color: var(--accent);
}
.lang-switch__code {
  flex-shrink: 0;
  width: 28px;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--text-mute);
}
.lang-switch__opt.is-active .lang-switch__code { color: var(--accent); }
.lang-switch__label { flex: 1; font-size: 13px; }
.lang-switch__check { color: var(--accent); font-size: 14px; }

/* Mobile: keep the dropdown but anchored differently */
@media (max-width: 640px) {
  .lang-switch__menu { right: -8px; min-width: 180px; }
}

/* =========================================================
   POWERED-BY CREDIT (sits in footer__bottom middle column)
   ========================================================= */
.footer__powered {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}
.footer__powered-heart {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  margin: 0 2px;
  animation: heartPulse 2.4s ease-in-out infinite;
}
@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.15); }
}
.footer__powered-link {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: color .2s, border-color .2s;
}
.footer__powered-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-decoration: none;
}

/* =========================================================
   FOOTER — LEGAL LINKS ROW (above the copyright/powered row)
   ========================================================= */
.footer__legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer__legal a:hover { color: var(--accent); }
