/* ============================================
   SPARROWVERSE — Stylesheet v4
   Dark Cosmic + Gold — Minimal, Animated, Art-Forward
   ============================================ */

/* ============================================
   SPLASH SCREEN — "Welcome to the Sparrowverse"
   ============================================ */
.splash {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: #06060e;
  animation: splashLifecycle 5.5s ease-in-out forwards;
}

@keyframes splashLifecycle {
  0%   { opacity: 0; }
  10%  { opacity: 1; }   /* fade in */
  75%  { opacity: 1; }  /* hold visible */
  100% { opacity: 0; pointer-events: none; } /* fade out */
}

.splash-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, #1e0d38 0%, #0d0820 50%, #06060e 100%);
}

.splash-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
}

/* ---- Spinning vinyl ---- */
.splash-vinyl {
  animation: fadeInUp 0.8s ease both;
}

.splash-disc {
  position: relative;
  width: min(320px, 65vw); height: min(320px, 65vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #1c1c1c 0%, #111 60%, #080808 100%);
  box-shadow:
    0 0 0 4px #222,
    0 0 0 5px #1a1a1a,
    0 0 60px rgba(155,109,255,0.2),
    0 20px 80px rgba(0,0,0,0.8);
  animation: spin 4s linear infinite;
}

.splash-grooves {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0px,
      transparent 3px,
      rgba(25,25,25,0.9) 3px,
      rgba(25,25,25,0.9) 4px,
      transparent 4px,
      transparent 8px
    );
}

.splash-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 38%; height: 38%;
  border-radius: 50%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.06);
}
.splash-label img {
  width: 100%; height: 100%; object-fit: contain;
  background: transparent;
}

.splash-spindle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #06060e;
  box-shadow: 0 0 0 2px rgba(232,184,48,0.6);
  z-index: 2;
}

/* ---- Welcome text ---- */
.splash-text {
  text-align: center;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.splash-subtitle {
  font-family: var(--font-b);
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 300;
  color: rgba(240,236,255,0.6);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.splash-title {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(232,184,48,0.4));
}

/* ---- Keyframes ---- */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes splashFadeOut {
  0%   { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

/* ============================================
   ROOT VARIABLES
   ============================================ */

:root {
  --bg:          #06060e;
  --bg2:         #0a0a16;
  --card:        #0f0f1e;
  --card-hover:  #14142a;

  --gold:        #e8b830;
  --gold-dim:    rgba(232, 184, 48, 0.10);
  --gold-glow:   rgba(232, 184, 48, 0.20);
  --purple:      #9b6dff;
  --purple-dim:  rgba(155, 109, 255, 0.08);

  --text:        #f0ecff;
  --text2:       #8a88a8;
  --text-muted:  #45445a;

  --border:      rgba(255,255,255,0.06);
  --border-gold: rgba(232, 184, 48, 0.22);

  --font-d: 'Syne', sans-serif;
  --font-b: 'Space Grotesk', sans-serif;

  --pad:    7rem 2rem;
  --max:    1100px;
  --r:      12px;
  --r-lg:   20px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--gold); color: #06060e; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ============================================
   REVEAL ANIMATIONS — scroll-triggered
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(6, 6, 14, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-d); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.04em; color: var(--text);
}
.nav-sigil {
  width: 30px; height: 30px; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(232,184,48,0.35));
}

.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ============================================
   HERO — Full cosmic background, animated
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  /* Cosmic space scene as full-page background */
  background: url('art/cosmic-bg.jpg') center center / cover no-repeat;
}

/* Dark overlay — makes text readable over the cosmic image */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,6,14,0.50) 0%, rgba(6,6,14,0.35) 40%, rgba(6,6,14,0.80) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle color pulse — animated */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 35%, rgba(155,109,255,0.08) 0%, transparent 60%);
  animation: cosmicPulse 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes cosmicPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Eye glow — pulses over the cosmic figure's eyes */
.hero .eye-glow {
  position: absolute;
  top: 16%; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 70px;
  background: radial-gradient(ellipse, rgba(200,100,255,0.95) 0%, rgba(155,109,255,0.5) 35%, transparent 70%);
  border-radius: 50%;
  filter: blur(18px);
  animation: eyePulse 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes eyePulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.3); }
}

.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
  padding: 2rem;
}

.hero-logo {
  width: min(360px, 55vw);
  height: auto; object-fit: contain;
  animation: fadeUp 1s var(--ease) both;
  filter: drop-shadow(0 0 80px rgba(232,184,48,0.5));
}

.hero-tagline {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: rgba(240,236,255,0.9);
  letter-spacing: 0.06em;
  max-width: 460px;
  font-style: italic;
  font-weight: 300;
  animation: fadeUp 1s 0.15s var(--ease) both;
  text-shadow: 0 2px 16px rgba(0,0,0,0.9);
}

.hero-links {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 1s 0.3s var(--ease) both;
}

.hero-link {
  display: inline-block; padding: 0.85rem 2.4rem;
  background: var(--gold); color: #06060e;
  font-family: var(--font-d); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r);
  transition: transform 0.22s var(--spring), box-shadow 0.22s;
}
.hero-link:hover { transform: translateY(-3px); box-shadow: 0 14px 40px var(--gold-glow); }

.hero-link-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-gold);
}
.hero-link-ghost:hover { background: var(--gold-dim); transform: translateY(-3px); box-shadow: none; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(200,196,220,0.6); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  animation: fadeUp 1s 0.8s var(--ease) both;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

/* ============================================
   TWINKLING STARS — layered over hero
   ============================================ */
.stars-container {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2; overflow: hidden;
}

/* Individual twinkling star dots */
.star-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.1; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.4); }
}

/* Shooting star */
.shooting-star {
  position: absolute;
  width: var(--length, 120px);
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(var(--angle, -45deg));
  transform-origin: left center;
  animation: shoot var(--speed, 1.2s) ease-out forwards;
  pointer-events: none; z-index: 3;
}

@keyframes shoot {
  0%   { opacity: 1; transform: rotate(var(--angle, -45deg)) translateX(0); }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(var(--angle, -45deg)) translateX(calc(100vw + 100px)); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--pad); max-width: var(--max); margin: 0 auto; }
.section.alt { background: var(--bg2); }

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 1;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--text) 40%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc { color: var(--text2); font-size: 0.92rem; margin-bottom: 2.5rem; }

/* ============================================
   SHOWS
   ============================================ */
.shows-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.show-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem 2.25rem;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.show-card:hover { border-color: var(--border-gold); transform: translateX(4px); }

.show-date { text-align: center; min-width: 68px; }
.show-date .month { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.show-date .day { font-family: var(--font-d); font-size: 3rem; font-weight: 800; line-height: 1; }
.show-date .year { font-size: 0.65rem; color: var(--text-muted); }

.show-info h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.25rem; }
.show-info .venue { color: var(--text2); font-size: 0.88rem; }
.show-info .time { color: var(--text-muted); font-size: 0.72rem; margin-top: 0.2rem; letter-spacing: 0.04em; }

.show-cta {
  padding: 0.75rem 1.9rem;
  background: var(--gold); color: #06060e;
  font-family: var(--font-d); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r); white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s var(--spring), box-shadow 0.2s;
}
.show-cta:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); }

.center { text-align: center; margin-top: 0.5rem; }

/* ============================================
   VIDEO PLAYER — Featured YouTube embed
   ============================================ */
.featured-video {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.featured-video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

.video-nav {
  display: grid; grid-template-columns: 40px 1fr 40px; gap: 0.75rem; align-items: center; margin-bottom: 2rem;
}

.video-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background 0.2s, transform 0.2s var(--spring);
}
.video-nav-btn:hover { background: var(--gold-dim); transform: scale(1.08); }

.video-thumbs {
  display: flex; gap: 0.75rem; overflow-x: auto; scrollbar-width: none;
  padding-bottom: 4px;
}
.video-thumbs::-webkit-scrollbar { display: none; }

.video-thumb {
  flex-shrink: 0; width: 140px; cursor: pointer;
  border-radius: var(--r); overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s var(--spring), box-shadow 0.2s;
  position: relative;
}
.video-thumb:hover { transform: scale(1.04); border-color: var(--border-gold); }
.video-thumb.active { border-color: var(--gold); box-shadow: 0 0 16px var(--gold-glow); }

.video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.video-thumb .vt-overlay {
  position: absolute; inset: 0;
  background: rgba(6,6,14,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.video-thumb:hover .vt-overlay { opacity: 1; }
.vt-overlay svg { width: 32px; height: 32px; fill: var(--gold); filter: drop-shadow(0 0 8px var(--gold-glow)); }

.video-thumb .vt-title {
  font-size: 0.62rem; padding: 4px 6px 5px;
  color: var(--text2); line-height: 1.3;
  background: var(--card);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ============================================
   VINYL COLLECTION / THE VAULT
   ============================================ */
.vinyl-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.vinyl-platter {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  cursor: pointer;
  user-select: none;
}

/* The vinyl disc itself */
.vinyl-disc {
  position: relative;
  width: 220px; height: 220px;
  border-radius: 50%;
  /* Vinyl base color */
  background:
    radial-gradient(circle at 50% 50%, #1a1a1a 0%, #111 60%, #0a0a0a 100%);
  box-shadow:
    0 0 0 3px #222,
    0 0 0 4px #1a1a1a,
    0 8px 32px rgba(0,0,0,0.6);
  /* Start spinning — continuous */
  animation: spin 6s linear infinite;
  transition: animation-play-state 0.3s;
}

/* Vinyl grooves — concentric rings */
.vinyl-grooves {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0px,
      transparent 2px,
      rgba(30,30,30,0.8) 2px,
      rgba(30,30,30,0.8) 3px,
      transparent 3px,
      transparent 6px
    );
}

/* The label art — album cover in center */
.vinyl-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 86px; height: 86px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
}

/* Spindle hole */
.vinyl-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #06060e;
  box-shadow: 0 0 0 2px rgba(232,184,48,0.5);
  z-index: 2;
}

/* Vinyl label below */
.vinyl-label-text {
  font-family: var(--font-d); font-size: 0.85rem; font-weight: 700;
  color: var(--text2); text-align: center; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.vinyl-platter:hover .vinyl-label-text { color: var(--gold); }

/* Spin animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Sleeve peek — subtle hint below disc */
.vinyl-sleeve {
  width: 30px; height: 6px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.06), transparent);
  border-radius: 3px;
  margin-top: -0.5rem;
}

/* ============================================
   MUSIC
   ============================================ */
.music-embed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.embed-card { background: var(--card); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.music-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ART GALLERY
   ============================================ */
.art-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.875rem; }

.art-item {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--r); cursor: zoom-in;
  background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s var(--spring), box-shadow 0.3s;
}
.art-item:hover { border-color: var(--border-gold); transform: scale(1.025); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.art-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.art-item:hover img { transform: scale(1.07); }

.art-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,14,0.92) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 1rem;
  opacity: 0; transition: opacity 0.3s;
}
.art-item:hover .art-overlay { opacity: 1; }
.art-overlay span { font-size: 0.72rem; font-weight: 600; color: var(--text); letter-spacing: 0.04em; }

/* ============================================
   SOCIAL GRID
   ============================================ */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 1rem; }

.social-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 2.5rem 2rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); text-align: center;
  transition: border-color 0.25s, transform 0.25s var(--spring), box-shadow 0.25s;
}
.social-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }

.social-icon { width: 48px; height: 48px; color: var(--gold); }
.social-icon svg { width: 100%; height: 100%; }

.social-handle { font-size: 0.88rem; font-weight: 600; color: var(--text); font-family: var(--font-d); }
.social-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================
   ABOUT
   ============================================ */
.about-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4.5rem; align-items: start; }
.about-lead { font-family: var(--font-d); font-size: 1.55rem; font-weight: 700; color: var(--gold); margin-bottom: 1.5rem; line-height: 1.35; }
.about-text p { color: var(--text2); margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.85; }
.about-text p em { color: var(--text); font-style: normal; font-weight: 600; }
.contact { margin-top: 2rem; }
.contact a { color: var(--gold); font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid var(--gold-dim); transition: border-color 0.2s; }
.contact a:hover { border-color: var(--gold); }

.about-art-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.about-art-img { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--border); object-fit: cover; box-shadow: 0 16px 60px rgba(0,0,0,0.4); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #03030a; border-top: 1px solid var(--border);
  padding: 4.5rem 2rem 3rem; text-align: center;
}
.footer-sigil { width: 60px; height: 60px; margin: 0 auto 1.25rem; object-fit: contain; filter: drop-shadow(0 0 20px rgba(232,184,48,0.3)); }
.footer-logo { font-family: var(--font-d); font-size: 1.8rem; font-weight: 800; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { color: var(--text2); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.7rem; color: var(--text-muted); }

/* ============================================
   UTILITIES
   ============================================ */
.ext-link {
  display: inline-block; padding: 0.72rem 1.9rem;
  border: 1px solid var(--border-gold); color: var(--gold);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r); transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s var(--spring);
  font-family: var(--font-d);
}
.ext-link:hover { background: var(--gold); color: #06060e; box-shadow: 0 8px 28px var(--gold-glow); transform: translateY(-2px); }
.youtube-link { margin-top: 1.5rem; text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-art-stack { flex-direction: row; max-width: 500px; }
}

@media (max-width: 900px) {
  .music-embed-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(6,6,14,0.97); padding: 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border); backdrop-filter: blur(20px);
  }
  .section { padding: 5rem 1.5rem; }
  .hero-logo { width: min(300px, 85vw); }
  .hero-art-left { width: 38vw; opacity: 0.35; }
  .hero-art-right { width: 30vw; opacity: 0.28; }
  .show-card { grid-template-columns: 1fr; gap: 0.875rem; padding: 1.5rem; }
  .show-date { display: flex; gap: 0.75rem; align-items: baseline; }
  .show-date .day { font-size: 2.2rem; }
  .video-thumbs { gap: 0.5rem; }
  .video-thumb { width: 110px; }
  .about-art-stack { flex-direction: column; max-width: 100%; }
  .social-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .nav-logo span { font-size: 0.88rem; }
  .social-grid { grid-template-columns: 1fr; }
  .video-nav { grid-template-columns: 32px 1fr 32px; }
  .video-thumb { width: 100px; }
}
