/* ============================================================
   DJ VIKTOR YOSEF — Complete Stylesheet v3
   ============================================================ */

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --bg-0:  #050510;
  --bg-1:  #09091a;
  --bg-2:  #0e0e24;

  --pink:       #ff0066;
  --pink-light: #ff69b4;
  --pink-dim:   rgba(255,0,102,0.15);
  --pink-glow:  rgba(255,0,102,0.4);
  --purple:     #8800ff;
  --purple-glow:rgba(136,0,255,0.4);
  --cyan:       #00d4ff;
  --cyan-glow:  rgba(0,212,255,0.35);

  --grad:      linear-gradient(135deg, #ff0066 0%, #8800ff 100%);
  --grad-rev:  linear-gradient(135deg, #8800ff 0%, #ff0066 100%);
  --grad-text: linear-gradient(135deg, #ff0066 0%, #ff69b4 40%, #a855f7 100%);

  --white:  #ffffff;
  --text:   rgba(255,255,255,0.88);
  --text-2: rgba(255,255,255,0.55);
  --text-3: rgba(255,255,255,0.28);
  --border: rgba(255,255,255,0.07);
  --card:   rgba(255,255,255,0.025);

  --ff-head: 'Bebas Neue', 'Impact', sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --nav-h:  72px;
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg-0);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
body.intro-active { overflow: hidden; }
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Gradient text ──────────────────────────────────────────── */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section label ──────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--pink);
  opacity: 0.5;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.7;
}

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal, .reveal-right, .reveal-up, .reveal-left {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal       { transform: translateY(44px); }
.reveal-right { transform: translateX(60px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-up    { transform: translateY(30px); }
.in-view { opacity: 1 !important; transform: none !important; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--grad);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.25s var(--spring);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover {
  box-shadow: 0 16px 50px var(--pink-glow);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--spring), box-shadow 0.25s;
}
.btn-outline:hover {
  border-color: var(--pink);
  background: var(--pink-dim);
  box-shadow: 0 0 28px var(--pink-glow);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   INTRO OVERLAY — Fullscreen Spline
   ══════════════════════════════════════════════════════════════ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s var(--ease), visibility 1.2s;
}
.intro.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Fullscreen Spline — fills entire screen */
.intro-spline-wrap {
  position: absolute;
  inset: 0;
}
.intro-spline-wrap spline-viewer {
  width: 100%;
  height: 100%;
  display: block;
}

/* Logo + subtitle centered on top of Spline */
.intro-overlay-ui {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
  animation: fadeSlideUp 1.2s 0.6s both;
}
.intro-logo {
  width: min(240px, 50vw);
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 60px rgba(255,0,102,0.8));
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 60px rgba(255,0,102,0.8)); }
  50%       { filter: drop-shadow(0 0 100px rgba(136,0,255,0.9)); }
}
.intro-sub {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
}

.intro-skip {
  position: absolute;
  bottom: 52px;
  right: 40px;
  z-index: 3;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-3);
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.intro-skip:hover {
  color: var(--white);
  border-color: var(--pink);
  background: var(--pink-dim);
}

.intro-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.05);
  z-index: 3;
}
.intro-progress-fill {
  height: 100%;
  width: 0;
  background: var(--grad);
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(5,5,16,0.93);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border);
}

/* Logo — bigger */
.nav-logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(255,0,102,0.35));
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 30px rgba(255,0,102,0.8));
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--grad);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: border-color 0.25s, background 0.25s;
}
.lang-trigger:hover { border-color: var(--pink); background: var(--pink-dim); }
.lang-trigger span:first-child { font-size: 1.1rem; }
.lang-chevron {
  width: 13px; height: 13px;
  stroke: var(--text-2);
  transition: transform 0.25s;
}
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 158px;
  background: rgba(12,12,28,0.98);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  backdrop-filter: blur(24px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.22s, visibility 0.22s, transform 0.22s var(--spring);
  z-index: 100;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-2);
  transition: background 0.18s, color 0.18s;
  text-align: left;
}
.lang-opt span:first-child { font-size: 1.1rem; }
.lang-opt:hover { background: var(--pink-dim); color: var(--white); }
.lang-opt.active { color: var(--pink); font-weight: 700; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 999;
  background: rgba(5,5,16,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 28px clamp(20px,5vw,60px) 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mobile-link {
  display: block;
  padding: 14px 0;
  font-size: 1.6rem;
  font-family: var(--ff-head);
  letter-spacing: 0.06em;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--white); padding-left: 10px; }

/* ══════════════════════════════════════════════════════════════
   HERO — Split: concert background left · DJ photo right
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg-0);
  display: flex;
  align-items: stretch;
}

/* Concert background photo — full bleed, updated to background concert.jpg */
.hero-crowd {
  position: absolute;
  inset: 0;
  background: url('../images/background-concert.jpg') center center / cover no-repeat;
  background-color: var(--bg-0);
}
.hero-crowd::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5,5,16,0.55);
}
.hero-crowd::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(5,5,16,0.05) 0%,
    rgba(5,5,16,0.25) 30%,
    rgba(5,5,16,0.65) 52%,
    rgba(5,5,16,0.90) 66%,
    var(--bg-0)       80%
  );
}

/* Bottom fade to next section */
.hero-crowd-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-0) 0%, transparent 100%);
  z-index: 1;
}

/* ── Concert Laser Beams ──────────────────────────────────────── */
.hero-lasers {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero-laser {
  position: absolute;
  top: -80px;
  width: 3px;
  height: 130vh;
  filter: blur(3px);
  transform-origin: top center;
  opacity: 0;
}

.hero-laser.l1 {
  left: 12%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,0,102,0.7) 20%,
    rgba(136,0,255,0.4) 65%,
    transparent 100%
  );
  animation: laserBeam 8s 0s ease-in-out infinite;
}
.hero-laser.l2 {
  left: 28%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,212,255,0.55) 15%,
    rgba(136,0,255,0.35) 60%,
    transparent 100%
  );
  animation: laserBeam 7s 1.8s ease-in-out infinite;
}
.hero-laser.l3 {
  left: 44%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,0,102,0.5) 25%,
    rgba(255,100,0,0.25) 65%,
    transparent 100%
  );
  animation: laserBeam 9.5s 3.5s ease-in-out infinite;
}
.hero-laser.l4 {
  left: 64%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(136,0,255,0.65) 20%,
    rgba(0,212,255,0.35) 65%,
    transparent 100%
  );
  animation: laserBeam 7.5s 0.8s ease-in-out infinite;
}
.hero-laser.l5 {
  left: 80%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,69,0,0.5) 18%,
    rgba(136,0,255,0.3) 60%,
    transparent 100%
  );
  animation: laserBeam 8.5s 5s ease-in-out infinite;
}

@keyframes laserBeam {
  0%   { opacity: 0;   transform: rotate(-18deg); }
  10%  { opacity: 0.9; }
  45%  { opacity: 0.7; transform: rotate(12deg); }
  55%  { opacity: 0.7; transform: rotate(12deg); }
  90%  { opacity: 0.9; }
  100% { opacity: 0;   transform: rotate(-18deg); }
}

/* ── Concert fog/haze at bottom of hero ─────────────────────── */
.hero-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  z-index: 3;
  background: linear-gradient(to top,
    rgba(5,5,16,0.85) 0%,
    rgba(136,0,255,0.04) 30%,
    transparent 100%
  );
  pointer-events: none;
}

/* Left content block */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) clamp(24px,6vw,80px) 100px;
  max-width: 56%;
  min-height: 100svh;
}

/* Canvas particles */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* ── DJ Photo — right side, properly sized, no crop ─────────── */
.hero-photo-wrap {
  position: absolute;
  right: 0;
  top: calc(var(--nav-h) - 10px);   /* Start just below nav — head stays below header */
  bottom: 0;
  width: 60%;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  /* NO overflow:hidden — prevents table from being cut */
}

.hero-photo-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 80%;
  background: radial-gradient(ellipse 70% 60% at 50% 100%,
    rgba(255,0,102,0.5) 0%,
    rgba(136,0,255,0.28) 40%,
    transparent 70%
  );
  filter: blur(70px);
  animation: glowPulse 5s ease-in-out infinite;
  z-index: 0;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1);    }
  50%       { opacity: 1;   transform: scale(1.1); }
}

.hero-photo {
  position: relative;
  z-index: 1;
  /* Fit within available height (nav-to-bottom), object-fit: contain ensures nothing is cut */
  max-height: 100%;
  width: auto;
  max-width: 110%;           /* Allow slight left overflow so table isn't cut */
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(-30px 0 70px rgba(255,0,102,0.18))
          drop-shadow(0 0 40px rgba(136,0,255,0.1));
}

/* Hero text elements */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255,0,102,0.12);
  border: 1px solid rgba(255,0,102,0.25);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.3s both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-label-main {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.45s both;
}

.hero-genre {
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.12em;
  color: var(--text-2);
  text-transform: uppercase;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.75s both;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.9s both;
}
.social-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-2);
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--spring), box-shadow 0.25s;
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover {
  color: var(--white);
  border-color: var(--pink);
  background: var(--pink-dim);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px var(--pink-glow);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeSlideUp 0.8s 1.4s both;
  transition: color 0.25s;
}
.scroll-hint:hover { color: var(--text-2); }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
}
@keyframes scrollLineAnim {
  0%   { transform: scaleY(1);   opacity: 1; }
  50%  { transform: scaleY(0.3); opacity: 0.4; }
  100% { transform: scaleY(1);   opacity: 1; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE BELT
   ══════════════════════════════════════════════════════════════ */
.marquee-belt {
  overflow: hidden;
  white-space: nowrap;
  background: var(--grad);
  padding: 13px 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--ff-head);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.9);
  padding: 0 32px;
  white-space: nowrap;
}
.marquee-dot {
  color: rgba(255,255,255,0.4);
  font-size: 0.5rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT — animation + photo, no purple rectangle
   ══════════════════════════════════════════════════════════════ */
.about {
  padding: 120px clamp(20px,6vw,80px);
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
/* Ambient glow orbs — subtle, not a rectangle */
.about::before {
  content: '';
  position: absolute;
  top: -200px; left: -150px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,0,255,0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
}
.about::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,102,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 18s 5s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(60px,-40px) scale(1.15); }
  66%       { transform: translate(-30px,30px) scale(0.9); }
}

.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.about-bio {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-2);
  margin-bottom: 40px;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 480px;
}

/* Photo wrap — no rectangular background ring */
.about-photo-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,16,0.4) 0%, transparent 50%);
}
.about-photo {
  width: 100%;
  max-width: 440px;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 20px 60px rgba(255,0,102,0.14));
}

/* Spline soundwave below photo — keeps original position */
.about-spline {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 200px;
  z-index: 1;
  opacity: 0.65;
  pointer-events: none;
}
.about-spline spline-viewer { width: 100%; height: 100%; display: block; }

/* ══════════════════════════════════════════════════════════════
   MUSIC
   ══════════════════════════════════════════════════════════════ */
.music {
  padding: 120px 0 80px;
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.music::before {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,102,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.music::after {
  content: '';
  position: absolute;
  left: -80px; top: 30%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,0,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.music-header {
  padding: 0 clamp(20px,6vw,80px);
  margin-bottom: 56px;
}

.music-scroll-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.music-track-list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 24px clamp(20px,6vw,80px) 48px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.music-track-list::-webkit-scrollbar { display: none; }

.music-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--spring), box-shadow 0.25s;
}
.music-arrow:hover {
  background: var(--pink-dim);
  border-color: var(--pink);
  box-shadow: 0 0 24px var(--pink-glow);
  transform: translateY(-50%) scale(1.12);
}
.music-prev { left: 8px; }
.music-next { right: 8px; }

/* ── Track Card ─────────────────────────────────────────────── */
.track-card {
  flex: 0 0 272px;
  scroll-snap-align: start;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  color: var(--text);
  display: block;
  position: relative;
  transition: transform 0.4s var(--spring), box-shadow 0.4s, border-color 0.4s;
}
.track-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.track-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 28px 70px rgba(255,0,102,0.25), 0 0 0 1px rgba(255,0,102,0.2);
  border-color: transparent;
}
.track-card:hover::before { opacity: 0.06; }

/* Track artwork area */
.track-art {
  position: relative;
  height: 210px;
  overflow: hidden;
}

/* Spotify album artwork image — loaded dynamically */
.track-art-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  z-index: 1;
}
.track-art-img.loaded { opacity: 1; }

/* Color gradient fallback (hidden when artwork loads) */
.track-art-bg {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 135deg,
    hsl(var(--hue,330) 85% 16%) 0%,
    hsl(calc(var(--hue,330) + 50) 90%  8%) 45%,
    hsl(calc(var(--hue,330) - 30) 75% 18%) 100%
  );
  transition: transform 0.6s var(--ease), opacity 0.8s;
  z-index: 0;
}
.track-art-img.loaded ~ .track-art-bg { opacity: 0; }
.track-card:hover .track-art-bg { transform: scale(1.1) rotate(3deg); }

/* Dark overlay for readability of bars over artwork */
.track-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
  z-index: 2;
}

/* EQ bars — always visible on top of artwork */
.track-art-bars {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
  z-index: 3;
}
.track-art-bars span {
  display: block;
  width: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.8);
  animation: eq var(--spd, 1.2s) ease-in-out infinite alternate;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}
.track-art-bars span:nth-child(1) { height: 35%; --spd: 0.95s; }
.track-art-bars span:nth-child(2) { height: 72%; --spd: 1.35s; }
.track-art-bars span:nth-child(3) { height: 100%; --spd: 0.75s; }
.track-art-bars span:nth-child(4) { height: 52%; --spd: 1.1s;  }
.track-art-bars span:nth-child(5) { height: 30%; --spd: 1.45s; }
.track-card:hover .track-art-bars span { animation-duration: calc(var(--spd, 1.2s) * 0.35); }
@keyframes eq {
  from { transform: scaleY(0.25); }
  to   { transform: scaleY(1); }
}

.track-spotify-badge {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--spring), background 0.3s;
  z-index: 4;
}
.track-spotify-badge svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); transition: fill 0.3s; }
.track-card:hover .track-spotify-badge { background: #1DB954; transform: scale(1.15); }
.track-card:hover .track-spotify-badge svg { fill: white; }

.track-info {
  padding: 18px 18px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.track-name {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}
.track-genre {
  font-size: 0.73rem;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.track-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.track-card:hover .track-cta { opacity: 1; transform: none; }

.music-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 16px;
}
.music-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-3);
  transition: background 0.25s, transform 0.25s, width 0.25s;
  cursor: pointer;
}
.music-dot.active {
  background: var(--pink);
  transform: scale(1.4);
  width: 20px;
  border-radius: 3px;
}

/* ── Album Teaser (below tracks) ────────────────────────────── */
.music-album-teaser {
  margin-top: 40px;
  padding: 0 clamp(20px,6vw,80px) 40px;
}
.music-album-teaser-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 52px 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.music-album-teaser-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%,
    rgba(136,0,255,0.08) 0%, transparent 70%
  );
  pointer-events: none;
}
.music-album-teaser-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.teaser-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.teaser-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}
.teaser-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.teaser-cta { margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════
   ALBUM SECTION
   ══════════════════════════════════════════════════════════════ */
.album {
  padding: 100px clamp(20px,6vw,80px) 120px;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.album::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(0,100,200,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(136,0,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.album-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

/* CSS Album Art */
.album-artwork-wrap { position: relative; }
.album-artwork {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #010a30 0%, #050025 40%, #0a0030 70%, #040020 100%);
  box-shadow:
    0 0 0 1px rgba(136,0,255,0.2),
    0 30px 90px rgba(136,0,255,0.35),
    0 8px 24px rgba(255,0,102,0.2);
  animation: albumFloat 6s ease-in-out infinite;
}
@keyframes albumFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.album-art-ocean {
  position: absolute;
  bottom: -30px; left: -30px; right: -30px;
  height: 200px;
  background: radial-gradient(ellipse 130% 80% at 50% 120%,
    rgba(0,100,255,0.35) 0%,
    rgba(80,0,200,0.2)  40%,
    transparent         70%
  );
  animation: oceanWave 7s ease-in-out infinite;
}
@keyframes oceanWave {
  0%, 100% { transform: translateY(0) scaleX(1);    }
  50%       { transform: translateY(-10px) scaleX(1.05); }
}
.album-art-wave2 {
  position: absolute;
  bottom: -10px; left: -20px; right: -20px;
  height: 120px;
  background: radial-gradient(ellipse 100% 60% at 50% 100%,
    rgba(0,180,255,0.2) 0%,
    transparent 70%
  );
  animation: oceanWave 5s 1s ease-in-out infinite;
}
.album-art-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.6) 0%, transparent 0%),
    radial-gradient(1px 1px at 40% 15%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1px 1px at 60% 40%, rgba(255,255,255,0.5) 0%, transparent 0%),
    radial-gradient(1px 1px at 80% 25%, rgba(255,255,255,0.3) 0%, transparent 0%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 0%),
    radial-gradient(1.5px 1.5px at 70% 70%, rgba(255,255,255,0.5) 0%, transparent 0%),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.3) 0%, transparent 0%);
}
.album-art-title {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.album-art-title .art-dj {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.album-art-title .art-name {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(0,180,255,0.6);
}
.album-art-title .art-album {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.album-vinyl {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px; height: 240px;
  border-radius: 50%;
  background: conic-gradient(
    #111 0%, #1a1a1a 10%, #111 20%, #1a1a1a 30%,
    #111 40%, #1a1a1a 50%, #111 60%, #1a1a1a 70%,
    #111 80%, #1a1a1a 90%, #111 100%
  );
  animation: vinylSpin 4s linear infinite;
  opacity: 0.7;
  filter: drop-shadow(0 0 20px rgba(255,0,102,0.2));
}
.album-vinyl::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink) 0%, var(--purple) 100%);
}
@keyframes vinylSpin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.album-info { max-width: 540px; }
.album-title {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.album-desc {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT — Beautiful form with rotating border on hover
   ══════════════════════════════════════════════════════════════ */
.contact {
  padding: 120px clamp(20px,6vw,80px);
  background: var(--bg-0);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,0,255,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  top: -150px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,102,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-header { margin-bottom: 52px; }

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 10px; }
.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* Rotating gradient border — triggers on HOVER and FOCUS */
.field-wrap {
  position: relative;
  border-radius: var(--r-sm);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  --angle: 0deg;
}
.field-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-sm) + 1px);
  background: conic-gradient(from var(--angle), #ff0066, #8800ff, #ff69b4, #00d4ff, #ff0066);
  opacity: 0;
  z-index: 0;
  animation: spinAngle 2s linear infinite paused;
  transition: opacity 0.35s;
}
/* Hover: subtle glow */
.field-wrap:hover { border-color: transparent; }
.field-wrap:hover::before {
  opacity: 0.5;
  animation-play-state: running;
}
/* Focus: full bright glow */
.field-wrap:focus-within { border-color: transparent; }
.field-wrap:focus-within::before {
  opacity: 1;
  animation-play-state: running;
}
@keyframes spinAngle { to { --angle: 360deg; } }

.field-wrap input,
.field-wrap textarea {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #090918;
  border: none;
  border-radius: calc(var(--r-sm) - 1px);
  padding: 15px 18px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  resize: vertical;
  transition: background 0.25s;
}
.field-wrap:focus-within input,
.field-wrap:focus-within textarea { background: rgba(8,8,20,0.98); }
.field-wrap input::placeholder,
.field-wrap textarea::placeholder { color: var(--text-3); }
.field-wrap textarea { min-height: 140px; }

.recaptcha-wrap { display: flex; }

.btn-submit {
  position: relative;
  padding: 16px 44px;
  background: var(--grad);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  overflow: hidden;
  align-self: flex-start;
  min-width: 190px;
  transition: transform 0.25s var(--spring), box-shadow 0.25s;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.12), transparent);
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(255,0,102,0.45);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-text, .btn-loading { display: inline-flex; align-items: center; gap: 8px; }
.btn-loading { display: none; }
.btn-submit.loading .btn-text    { display: none; }
.btn-submit.loading .btn-loading { display: inline-flex; }

.form-msg {
  font-size: 0.9rem;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  display: none;
}
.form-msg.success {
  display: block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #86efac;
}
.form-msg.error {
  display: block;
  background: rgba(255,0,102,0.1);
  border: 1px solid rgba(255,0,102,0.25);
  color: var(--pink-light);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — Spectacular effects: aurora, scan line, glow
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Aurora orb 1 */
.footer::before {
  content: '';
  position: absolute;
  top: -100px; left: -80px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(136,0,255,0.07) 0%,
    rgba(255,0,102,0.03) 40%,
    transparent 70%
  );
  animation: auroraA 16s ease-in-out infinite;
  pointer-events: none;
}
/* Aurora orb 2 */
.footer::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255,0,102,0.06) 0%,
    rgba(0,212,255,0.03) 40%,
    transparent 70%
  );
  animation: auroraA 20s 6s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes auroraA {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(80px,-50px) scale(1.2); }
  66%       { transform: translate(-40px,40px) scale(0.85); }
}

/* Giant watermark text in background */
.footer-bg-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-head);
  font-size: clamp(6rem, 18vw, 18rem);
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Top gradient bar with scan line sweep */
.footer-grad-line {
  height: 3px;
  background: var(--grad);
  position: relative;
  overflow: hidden;
}
.footer-grad-line::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right,
    transparent, rgba(255,255,255,0.8), transparent
  );
  animation: scanSweep 4s ease-in-out infinite;
}
@keyframes scanSweep {
  from { left: -60%; }
  to   { left: 110%; }
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 72px clamp(20px,6vw,80px) 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {}
.footer-brand-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(255,0,102,0.3));
  transition: filter 0.3s;
}
.footer-brand-logo:hover img {
  filter: drop-shadow(0 0 36px rgba(255,0,102,0.65));
}
.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-brand-socials {
  display: flex;
  gap: 12px;
}
.footer-social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: color 0.25s, border-color 0.25s, background 0.25s,
              transform 0.25s var(--spring), box-shadow 0.25s;
}
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn:hover {
  color: var(--white);
  border-color: var(--pink);
  background: var(--pink-dim);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 28px var(--pink-glow);
}

.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--grad);
  border-radius: 1px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.76rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-3);
}
.footer-legal-sep { color: var(--text-3); }
.footer-legal-link {
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--pink); }

/* ══════════════════════════════════════════════════════════════
   RTL (Hebrew)
   ══════════════════════════════════════════════════════════════ */
[dir="rtl"] .nav-links    { flex-direction: row-reverse; }
[dir="rtl"] .nav-right    { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { align-items: flex-end; text-align: right; }
[dir="rtl"] .hero-crowd::after {
  background: linear-gradient(to left,
    rgba(5,5,16,0.05) 0%, rgba(5,5,16,0.25) 30%,
    rgba(5,5,16,0.65) 52%, rgba(5,5,16,0.90) 66%, var(--bg-0) 80%
  );
}
[dir="rtl"] .hero-photo-wrap { left: 0; right: auto; }
[dir="rtl"] .section-label { flex-direction: row-reverse; }
[dir="rtl"] .contact-form  { direction: rtl; text-align: right; }
[dir="rtl"] .btn-submit    { align-self: flex-end; }
[dir="rtl"] .about-inner   { direction: rtl; }
[dir="rtl"] .footer-main   { direction: rtl; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — All screen sizes
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-content { max-width: 60%; }
  .hero-photo-wrap { width: 52%; }
  .album-inner { grid-template-columns: 1fr; text-align: center; }
  .album-artwork-wrap { display: flex; justify-content: center; }
  .album-vinyl { display: none; }
  .album-info { max-width: 100%; }
  .album-info .section-label { justify-content: center; }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { min-height: 340px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger    { display: flex; }

  /* Hero mobile: stack vertically */
  .hero { flex-direction: column; }
  .hero-content {
    max-width: 100%;
    min-height: auto;
    padding: calc(var(--nav-h) + 40px) 24px 280px;
  }
  .hero-photo-wrap {
    position: absolute;
    width: 100%;
    top: auto;
    height: 60%;
    bottom: 0;
    right: 0;
    justify-content: center;
  }
  .hero-photo {
    max-height: 100%;
    max-width: 90%;
    object-position: bottom center;
  }
  .hero-crowd::after {
    background: linear-gradient(to top,
      rgba(5,5,16,0.7) 0%,
      rgba(5,5,16,0.5) 40%,
      rgba(5,5,16,0.3) 70%,
      transparent 100%
    );
  }
  /* Reduce laser count on mobile */
  .hero-laser.l3, .hero-laser.l5 { display: none; }

  .music { padding: 80px 0 60px; }
  .music-header { padding: 0 20px; }
  .music-track-list { padding: 20px 20px 30px; }
  .track-card { flex: 0 0 240px; }
  .music-arrow { display: none; }
  .music-album-teaser { padding: 0 20px 40px; }
  .music-album-teaser-inner { padding: 36px 24px; }

  .about { padding: 80px 20px; }
  .contact { padding: 80px 20px; }
  .album { padding: 80px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-socials { justify-content: center; }
  .album-artwork { width: 260px; height: 260px; }
  .intro-logo { width: min(180px, 60vw); }
}

/* ── Tablet (portrait) ────────────────────────────────────────── */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-photo-wrap { width: 70%; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-laser { display: none; }
}

/* ── Spin keyframe for form loading spinner ──────────────────── */
@keyframes spin-rotate { to { transform: rotate(360deg); } }
