
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('ttf');
    font-display: swap;
}
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/Cormorant_Garamond/CormorantGaramond-Italic-VariableFont_wght.ttf') format('ttf');
    font-display: swap;
}
/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --black:       #0a0806;
  --deep:        #110e09;
  --velvet:      #1a1208;
  --amber:       #c8821a;
  --gold:        #e8a827;
  --gold-light:  #f5c84a;
  --coral:       #d4603a;
  --cream:       #f5ead6;
  --cream-dim:   #c9b99a;
  --white:       #fdf8f0;
  --glass:       rgba(200,130,26,0.08);
  --glass-border:rgba(200,130,26,0.18);
  --radius:      4px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.gold { color: var(--gold); }
.coral { color: var(--coral); }

/* ============================================================
   NAV
============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition);
}
nav.scrolled {
  background: rgba(10,8,6,0.92);
  backdrop-filter: blur(12px);
  padding: 0.85rem 2.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.nav-logo span {
  color: var(--cream-dim);
  font-style: italic;
  font-weight: 400;
  font-size: 0.85em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--amber); color: var(--black); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 1.5rem 6rem;
}

/* Radial ambient glow */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 30%, rgba(200,130,26,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(212,96,58,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- DISCO BALL ---- */
.disco-wrap {
  position: absolute;
  opacity: 0.3;
  top: -60px;
  left: 77%;
  transform: translateX(-50%);
  width: 160px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disco-wire {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(200,130,26,0.3), rgba(200,130,26,0.6));
}

.disco-ball {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: relative;
  animation: ballSpin 8s linear infinite;
  flex-shrink: 0;
}
/* @keyframes ballSpin { to { transform: rotateY(30deg); } } */

@keyframes ballSpin {
    25% {
        transform: rotateY(15deg);
    }
    75% {
        transform: rotateY(-15deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}

.disco-ball-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 35% 30%, #fff 0%, #ccc 20%, #888 50%, #444 80%, #111 100%);
  box-shadow:
    0 0 30px rgba(200,130,26,0.4),
    0 0 60px rgba(200,130,26,0.2),
    inset -8px -8px 20px rgba(0,0,0,0.6);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 1px;
  padding: 2px;
}

.disco-tile {
  border-radius: 1px;
  opacity: 0.85;
}

/* Scattered light rays from the disco ball */
.disco-rays {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.disco-rays::before,
.disco-rays::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  height: 300px;
  background: linear-gradient(to bottom, rgba(232,168,39,0.5), transparent);
  transform-origin: top center;
}

/* Light spots animation */
.light-spot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: lightDance 3s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
@keyframes lightDance {
  0%   { transform: translate(0,0) scale(1); opacity: 0.35; }
  100% { transform: translate(var(--tx), var(--ty)) scale(var(--ts)); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 120px;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(4.5rem, 14vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 0 80px rgba(200,130,26,0.3);
}
.hero-title .italic-line {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 0.65em;
  letter-spacing: 0.05em;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--cream-dim);
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}

.hero-genres {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.genre-pill {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--cream-dim);
  background: var(--glass);
  transition: border-color var(--transition), color var(--transition);
}
.genre-pill:hover { border-color: var(--gold); color: var(--gold); }

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.btn-primary {
  padding: 0.85rem 2.2rem;
  background: var(--amber);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  padding: 0.85rem 2.2rem;
  border: 1px solid rgba(245,234,214,0.3);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
  background: none; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--cream); }

.scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-dim);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollHintPulse 2s ease-in-out infinite;
}
@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(4px); }
}
.scroll-hint svg { width: 16px; height: 16px; }

/* ============================================================
   DIVIDER
============================================================ */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--glass-border), transparent);
  margin: 0;
}

/* ============================================================
   MUSIC PLAYER
============================================================ */
#listen {
  padding: 7rem 1.5rem;
  position: relative;
  background: linear-gradient(to bottom, var(--black), var(--velvet));
}

.player-container {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.player-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.player-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 3.5rem;
}

.player-card {
  background: linear-gradient(135deg, rgba(26,18,8,0.9) 0%, rgba(16,12,6,0.95) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(200,130,26,0.1);
  position: relative;
  overflow: hidden;
}

.player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--amber), var(--gold), transparent);
}

/* Waveform visualization */
.waveform-container {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 1.5rem;
}
.wave-bar {
  width: 3px;
  border-radius: 2px;
  background: var(--glass-border);
  transition: height 0.1s ease, background 0.3s ease;
  animation: none;
}
.wave-bar.active {
  background: var(--amber);
  animation: waveAnim var(--dur, 0.6s) ease-in-out infinite alternate;
}
@keyframes waveAnim {
  from { height: var(--min, 8px); }
  to   { height: var(--max, 40px); }
}

/* Genre badge */
.player-genre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(200,130,26,0.1);
  border: 1px solid rgba(200,130,26,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.genre-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.genre-dot.paused { animation: none; opacity: 0.4; }

.player-track-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.player-track-desc {
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-bottom: 1.8rem;
}

/* Progress */
.progress-area {
  margin-bottom: 1.5rem;
}
.progress-track {
  width: 100%;
  height: 3px;
  background: rgba(200,130,26,0.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  margin-bottom: 0.6rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--amber), var(--gold-light));
  border-radius: 2px;
  width: 0%;
  transition: width 0.2s linear;
  pointer-events: none;
}
.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-light);
  left: 0%;
  transition: left 0.2s linear;
  box-shadow: 0 0 8px rgba(232,168,39,0.6);
}
.progress-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--cream-dim);
  font-variant-numeric: tabular-nums;
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.ctrl-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream-dim);
  transition: color var(--transition), transform var(--transition);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctrl-btn:hover { color: var(--gold); transform: scale(1.1); }
.ctrl-btn.play-btn {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--amber), var(--coral));
  border-radius: 50%;
  color: var(--black);
  box-shadow: 0 0 20px rgba(200,130,26,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ctrl-btn.play-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 30px rgba(200,130,26,0.6);
}
.ctrl-btn svg { width: 22px; height: 22px; }
.ctrl-btn.play-btn svg { width: 22px; height: 22px; }
.ctrl-btn.sm svg { width: 18px; height: 18px; }

/* Track list */
.tracklist {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tracklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition);
  border: 1px solid transparent;
  text-align: left;
  background: none;
  width: 100%;
  color: inherit;
}
.tracklist-item:hover { background: rgba(200,130,26,0.06); border-color: var(--glass-border); }
.tracklist-item.active { background: rgba(200,130,26,0.1); border-color: rgba(200,130,26,0.2); }
.track-num {
  font-size: 0.7rem;
  color: var(--cream-dim);
  width: 16px;
  text-align: right;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.tracklist-item.active .track-num { color: var(--amber); }
.track-genre-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.track-info { flex: 1; }
.track-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}
.tracklist-item.active .track-name { color: var(--gold); }
.track-genre-label {
  font-size: 0.68rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
}
.track-dur {
  font-size: 0.72rem;
  color: var(--cream-dim);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
============================================================ */
#about {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, var(--velvet), var(--deep));
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,130,26,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

/* Stage mockup illustration */
.stage-illus {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(160deg, #1a0f04 0%, #0d0904 100%);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.stage-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* adjust to frame the shot */
    z-index: 0;
    border-radius: 8px;
    opacity: 0.6; /* dim it so the overlays read clearly — tune to taste */
}

.stage-light {
  position: absolute;
  top: -30%;
  border-radius: 50%;
  filter: blur(40px);
}
.stage-light.l1 { left: 20%; width: 120px; height: 200px; background: rgba(200,130,26,0.25); }
.stage-light.l2 { left: 50%; width: 100px; height: 180px; background: rgba(212,96,58,0.2); transform: translateX(-50%); }
.stage-light.l3 { right: 15%; width: 130px; height: 220px; background: rgba(245,200,74,0.15); }

.stage-silhouettes {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 65%;
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0 1rem;
}

.silhouette {
  background: rgba(0,0,0,0.85);
  border-radius: 4px 4px 0 0;
  flex-shrink: 0;
}

.stage-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 18%;
  background: linear-gradient(to top, rgba(200,130,26,0.08), transparent);
  border-top: 1px solid rgba(200,130,26,0.15);
}

.stage-mini-ball {
  position: absolute;
  opacity: 0.7;
  top: 8%; left: 65%;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #aaa 40%, #555 75%, #111);
  box-shadow: 0 0 10px rgba(232,168,39,0.6), 0 0 20px rgba(232,168,39,0.3);
}

/* .about-text {} */
.about-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.about-heading em {
  font-style: italic;
  color: var(--gold);
}

.about-body {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.85;
}
.about-body p + p { margin-top: 1.2rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}
/* .stat-item {} */
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.3rem;
}

.genres-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

/* ============================================================
   CONTACT
============================================================ */
#contact {
  padding: 7rem 1.5rem;
  background: linear-gradient(to bottom, var(--deep), var(--black));
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--glass-border));
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-heading {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.contact-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream-dim);
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.contact-card {
  padding: 2rem;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-card:hover {
  border-color: rgba(200,130,26,0.35);
  transform: translateY(-3px);
}
.contact-card-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(200,130,26,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--amber);
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.contact-card p, .contact-card a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
}
.contact-card a:hover { color: var(--gold); }

/* Form */
.contact-form {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
}
.form-group select option { background: var(--deep); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--amber), var(--coral));
  border: none;
  border-radius: var(--radius);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* Socials */
.social-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--amber); color: var(--amber); }
.social-link svg { width: 16px; height: 16px; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  opacity: 0.5;
}

/* ============================================================
   ANIMATIONS ON SCROLL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .stat-num { font-size: 1.7rem; }

  .disco-wrap { width: 110px; }
  .disco-ball { width: 80px; height: 80px; }
  .disco-wire { height: 60px; }
  .hero-content { margin-top: 140px; }

  .player-card { padding: 1.8rem 1.2rem 1.5rem; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-genres { gap: 0.4rem; }
}