/* ============================================================
   JADA MONROE — 1950s Soul Blues
   Inspired by BRW: dark, cinematic, sparse, elegant
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
* { -webkit-tap-highlight-color: transparent; }
input, button, select, textarea { touch-action: manipulation; }

:root {
  --black:      #0C0C0A;
  --dark:       #111210;
  --dark-mid:   #161714;
  --dark-lift:  #1C1E1A;

  --gold:       #DDA853;
  --gold-light: #EEC070;
  --gold-dim:   #A07830;

  --ivory:      #F5EEDC;
  --ivory-dim:  #C8BEA8;
  --ivory-mute: #7A7268;

  --border:     rgba(221,168,83,0.12);
  --border-mid: rgba(221,168,83,0.25);

  --font-display: 'Poppins', sans-serif;
  --font-cond:    'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;
}

body {
  background: var(--dark);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  margin: 0 0 14px 0;
  display: block;
  object-fit: contain;
}


.accent {
  background: linear-gradient(to right, #DDA853 0%, #DDA853 40%, #E8C278 70%, #FFF3D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-mid), transparent);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 64px;
  transition: background 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(12,12,10,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { width: 14px; height: 14px; fill: var(--gold); }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-right: 36px;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ivory); }
.nav-links a.active {
  color: var(--gold);
  position: relative;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.nav-btn {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-btn:hover { background: var(--gold-light); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--ivory-mute); transition: all 0.3s;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(12,12,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px 28px;
  z-index: 499;
  flex-direction: column;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Hero background — Jada header photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  background-image: url('assets/header.webp');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

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

/* Cinematic overlay — strong left fade for text, subtle dark top/bottom */
.hero-fade {
  position: absolute;
  inset: 0; z-index: 1;
  background:
    linear-gradient(to right,
      rgba(12,12,10,0.94) 0%,
      rgba(12,12,10,0.65) 45%,
      rgba(12,12,10,0.15) 100%),
    linear-gradient(to top,
      rgba(12,12,10,0.7) 0%,
      transparent 35%),
    linear-gradient(to bottom,
      rgba(12,12,10,0.5) 0%,
      transparent 20%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 100px;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0;
  color: var(--ivory);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 15px;
  color: var(--ivory-dim);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Floating now-playing card */
.now-playing {
  position: absolute;
  right: 64px;
  bottom: 100px;
  z-index: 3;
  background: rgba(22,23,20,0.92);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  padding: 16px 18px 14px;
  width: 280px;
  backdrop-filter: blur(12px);
}
.np-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.np-art {
  width: 52px; height: 52px;
  background: var(--dark-lift);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  overflow: hidden;
}
.np-art img { width: 100%; height: 100%; object-fit: cover; }
.np-meta { flex: 1; min-width: 0; }
.np-label {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 4px;
}
.np-track {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ivory);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.np-artist {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.np-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.np-play:hover { border-color: var(--gold); background: rgba(221,168,83,0.08); }
.np-play svg { width: 12px; height: 12px; fill: var(--gold); margin-left: 2px; }
.np-bar { height: 1px; background: var(--border); margin-bottom: 8px; position: relative; }
.np-bar-fill { position: absolute; top: 0; left: 0; height: 100%; width: 38%; background: var(--gold); }
.np-time {
  display: flex; justify-content: space-between;
  font-family: var(--font-cond);
  font-size: 10px; font-weight: 300;
  color: var(--ivory-mute); letter-spacing: 0.06em;
}

/* Stream bar */
.stream-bar {
  border-top: 1px solid var(--border);
  background: var(--black);
  padding: 0 64px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.stream-label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  white-space: nowrap;
}
.stream-platforms { display: flex; gap: 28px; }
.stream-platforms a {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.stream-platforms a:hover { color: var(--gold); }
.s-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.5; }
.stream-stats { display: none; }
.sstat { display: none; }
.sstat-num {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: 0.04em;
}
.sstat-lbl {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section { padding: 112px 64px; }
.section-sm { padding: 80px 64px; }

.eyebrow {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--ivory);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 48px;
}

/* ============================================================
   MUSIC / LATEST RELEASE
   ============================================================ */
.music-section { background: var(--dark); }

.music-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

/* Featured release */
.release-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--dark-mid);
  margin-bottom: 2px;
}
.release-art {
  background: var(--dark-lift);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.release-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.release-art-ph {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(221,168,83,0.1);
  letter-spacing: 0.04em;
  user-select: none;
}
.release-info {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.release-badge {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.release-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--ivory);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.release-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.release-meta span {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.release-desc {
  font-size: 14px;
  color: var(--ivory-mute);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 400px;
}

/* Tracklist */
.tracklist { border-top: 1px solid var(--border); }
.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  gap: 16px;
}
.track-row:hover { background: rgba(221,168,83,0.03); margin: 0 -8px; padding: 14px 8px; }
.track-name {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.15s;
}
.track-row:hover .track-name { color: var(--ivory); }
.track-icons { display: flex; gap: 8px; }
.track-icon {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.track-icon:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.track-icon svg { width: 15px; height: 15px; }

/* Singles grid */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.single-card {
  background: var(--dark-mid);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}
.single-card:hover { transform: translateY(-3px); }
.single-card:hover .sc-overlay { opacity: 1; }
.sc-art {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.sc-art-bg { position: absolute; inset: 0; }
.sc-overlay {
  position: absolute; inset: 0;
  background: rgba(12,12,10,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.sc-play {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sc-play svg { width: 14px; height: 14px; fill: var(--gold); margin-left: 2px; }
.sc-ph {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(221,168,83,0.1);
  position: relative; z-index: 1;
  letter-spacing: 0.04em;
}
.sc-info { padding: 14px 18px; border-top: 1px solid var(--border); }
.sc-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ivory);
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.sc-meta {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  display: flex;
  justify-content: space-between;
}
.sc-streams { color: var(--gold-dim); }

/* ============================================================
   VIDEO
   ============================================================ */
.video-section { background: var(--dark-mid); text-align: center; }

.video-frame {
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--dark-lift);
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.video-frame:hover .vf-play { transform: translate(-50%,-50%) scale(1.06); }
a.video-frame { cursor: pointer; }
.vf-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-lift) 100%);
}
.vf-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: 100px;
  color: rgba(221,168,83,0.04);
  white-space: nowrap;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  user-select: none;
  letter-spacing: 0.04em;
}
.vf-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  width: 72px; height: 72px;
  border: 1px solid rgba(221,168,83,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
  background: rgba(12,12,10,0.4);
}
.vf-play svg { width: 20px; height: 20px; fill: var(--gold); margin-left: 3px; }
.vf-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 36px;
  background: linear-gradient(to top, rgba(12,12,10,0.95), transparent);
  display: flex; justify-content: space-between; align-items: flex-end;
  pointer-events: none;
}
.vf-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.vf-sub {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.vf-dur {
  font-family: var(--font-cond);
  font-size: 13px;
  color: var(--ivory-mute);
  letter-spacing: 0.06em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--dark); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-photos { position: relative; height: 520px; }
.about-main {
  position: absolute;
  top: 0; left: 0;
  width: 76%; height: 78%;
  background: var(--dark-lift);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-main img { width: 100%; height: 100%; object-fit: cover; }
.about-over {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%; height: 50%;
  background: var(--dark-mid);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.about-over img { width: 100%; height: 100%; object-fit: cover; }
.photo-ph {
  font-family: var(--font-display);
  font-size: 20px;
  color: rgba(221,168,83,0.15);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.play-ring-wrap {
  position: absolute; inset: 0;
  background: rgba(12,12,10,0.3);
  display: flex; align-items: center; justify-content: center;
}
.play-ring {
  width: 48px; height: 48px;
  border: 1px solid rgba(221,168,83,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.play-ring svg { width: 14px; height: 14px; fill: var(--gold); margin-left: 2px; }

.about-text {}
.about-quote {
  border-left: 2px solid var(--gold);
  padding: 10px 20px;
  margin: 28px 0 32px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ivory-dim);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.about-body {
  font-size: 15px;
  color: var(--ivory-mute);
  line-height: 1.85;
  margin-bottom: 36px;
}
.about-body p + p { margin-top: 14px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 36px;
}
.stat { text-align: center; padding: 0 8px; }
.stat:not(:last-child) { border-right: 1px solid var(--border); }
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.stat-lbl {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--dark-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contact-body {
  font-size: 15px;
  color: var(--ivory-mute);
  line-height: 1.8;
  margin-bottom: 40px;
}
.cdetails { display: flex; flex-direction: column; gap: 20px; }
.cdetail { display: flex; gap: 16px; align-items: flex-start; }
.cdetail-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cdetail-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.cdetail-lbl {
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 3px;
}
.cdetail-val { font-size: 14px; color: var(--ivory-dim); }
.cdetail-val a:hover { color: var(--gold); }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-lbl {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-mute);
}
.form-input {
  background: rgba(12,12,10,0.6);
  border: 1px solid var(--border);
  color: var(--ivory);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  border-radius: 1px;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--ivory-mute); }
textarea.form-input { resize: none; min-height: 130px; }
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A7268' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
select.form-input option { background: #111210; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.2s;
  min-height: 52px;
}
.form-submit:hover { background: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
/* ── FOOTER ── */
.footer-wrap {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 56px 64px 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 40px;
  align-items: start;
}
.footer-links-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
/* Brand column */
.footer-brand { }
.footer-tagline {
  font-family: var(--font-cond);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 12px; font-weight: 300;
  color: var(--ivory-mute);
  line-height: 1.8;
  max-width: 260px;
}
.footer-subscribe {
  display: flex;
  gap: 0;
  margin-top: 18px;
  max-width: 260px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1px;
}
.footer-sub-input {
  flex: 1;
  background: none;
  border: none;
  color: var(--ivory);
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  outline: none;
  min-width: 0;
}
.footer-sub-input::placeholder { color: var(--ivory-mute); opacity: 0.5; }
.footer-sub-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 9px 14px;
  font-family: var(--font-cond);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-sub-btn:hover { background: var(--gold-light); }
/* Quick links column */
.footer-col-title {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-list a {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ivory-mute);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--gold); }
.fnav-arrow {
  color: var(--gold); font-size: 11px; opacity: 0.7;
  transition: transform 0.2s;
}
.footer-nav-list a:hover .fnav-arrow { transform: translate(2px, -2px); }
/* Contact column */
.footer-contact-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  font-family: var(--font-cond);
  font-size: 12px; font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ivory-mute);
  display: flex; align-items: flex-start; gap: 9px;
  line-height: 1.5;
}
.footer-contact-list li svg { width: 13px; height: 13px; fill: none; stroke: var(--gold); stroke-width: 1.5; flex-shrink: 0; margin-top: 1px; }
.footer-contact-list li a { color: var(--ivory-mute); transition: color 0.2s; }
.footer-contact-list li a:hover { color: var(--gold); }
/* Social icons */
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); background: rgba(221,168,83,0.08); }
.footer-socials a svg { width: 14px; height: 14px; fill: var(--ivory-mute); transition: fill 0.2s; }
.footer-socials a:hover svg { fill: var(--gold); }
/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy {
  font-family: var(--font-cond);
  font-size: 10px; font-weight: 300;
  color: var(--ivory-mute); opacity: 0.5;
  letter-spacing: 0.1em;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-family: var(--font-cond);
  font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory-mute);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: 1px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  min-height: 46px;
}
.btn svg { width: 12px; height: 12px; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold svg { fill: var(--black); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,238,220,0.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 152px 64px 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(221,168,83,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb-sep { color: var(--ivory-mute); opacity: 0.4; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 88px);
  color: var(--ivory);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-2 { transition-delay: 0.12s; }
.reveal-3 { transition-delay: 0.22s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .release-card { grid-template-columns: 280px 1fr; }
  .singles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 60px; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  /* Nav */
  .navbar { padding: 0 20px; height: 64px; }
  .nav-links, .nav-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 38px; }

  /* Hero */
  .now-playing { display: none; }
  .hero { min-height: 100svh; }
  .hero-bg { background-position: 65% center; }
  .hero-fade {
    background:
      linear-gradient(to right,
        rgba(12,12,10,0.97) 0%,
        rgba(12,12,10,0.85) 50%,
        rgba(12,12,10,0.50) 100%),
      linear-gradient(to top,
        rgba(12,12,10,0.85) 0%,
        transparent 40%),
      linear-gradient(to bottom,
        rgba(12,12,10,0.55) 0%,
        transparent 22%);
  }
  .hero-content { padding: 0 24px 88px; max-width: 100%; }

  /* Stream bar */
  .stream-bar { padding: 0 20px; gap: 16px; }
  .stream-stats { display: none; }
  .stream-platforms { gap: 16px; flex-wrap: wrap; }

  /* Sections */
  .section { padding: 72px 20px; }
  .section-sm { padding: 56px 20px; }

  /* Music */
  .music-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .release-card { grid-template-columns: 1fr; }
  .release-art { aspect-ratio: 4/3; max-height: 320px; }
  .release-info { padding: 32px 28px; border-left: none; border-top: 1px solid var(--border); }
  .singles-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { height: 300px; }

  /* Contact */
  .contact-section { grid-template-columns: 1fr; gap: 24px; }
  .contact-body { font-size: 13px; margin-bottom: 16px; }
  /* Detail cards: horizontal compact row instead of tall stack */
  .cdetails { flex-direction: column; gap: 10px; }
  .cdetail { padding: 0; }
  .cdetail-icon { width: 28px; height: 28px; flex-shrink: 0; }
  .cdetail-icon svg { width: 11px; height: 11px; }
  .cdetail-lbl { font-size: 8px; margin-bottom: 1px; }
  .cdetail-val { font-size: 12px; word-break: break-all; }
  /* Form tighter */
  .form-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  textarea.form-input { min-height: 90px !important; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-wrap { padding: 40px 24px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Inner pages */
  .page-hero { padding: 110px 20px 56px; }
  .page-title { font-size: clamp(42px, 9vw, 68px); }

  /* Touch targets */
  .btn { min-height: 48px; }
  .nav-hamburger { min-width: 44px; min-height: 44px; }
  .nav-drawer a { min-height: 52px; display: flex; align-items: center; }
  .form-input { min-height: 48px; font-size: 16px; } /* 16px prevents iOS zoom */
  textarea.form-input { min-height: 120px; }
  .form-submit { min-height: 52px; font-size: 14px; }
  .track-icon { min-width: 40px; min-height: 40px; width: 40px; height: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  /* Hero */
  .hero { min-height: 100svh; align-items: flex-end; }
  /* Show her face in upper portion, text sits below */
  .hero-bg { background-position: center 15%; }
  /* Heavy bottom-up fade so text is always readable */
  .hero-fade {
    background:
      linear-gradient(to top,
        rgba(12,12,10,1.0)   0%,
        rgba(12,12,10,0.97) 20%,
        rgba(12,12,10,0.80) 42%,
        rgba(12,12,10,0.35) 65%,
        rgba(12,12,10,0.05) 100%),
      linear-gradient(to bottom,
        rgba(12,12,10,0.55) 0%,
        transparent 22%);
  }
  .hero-content { padding: 0 20px 52px; }
  .hero-title { font-size: clamp(34px, 10vw, 52px); margin-bottom: 14px; }
  .hero-desc { font-size: 14px; max-width: 100%; margin-bottom: 28px; line-height: 1.7; }
  /* Buttons: side by side, auto width, not stretched */
  .hero-actions { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn { width: auto; min-width: 140px; flex: 1; justify-content: center; max-width: 200px; }
  .hero-eyebrow { font-size: 9px; letter-spacing: 0.2em; margin-bottom: 16px; }

  /* Stream bar */
  .stream-bar { height: auto; padding: 10px 16px; flex-wrap: wrap; gap: 8px; }
  .stream-label { font-size: 9px; }
  .stream-platforms { gap: 12px; flex-wrap: wrap; }
  .stream-platforms a { font-size: 10px; }
  .stream-platforms a:nth-child(n+3) { display: flex; }

  /* Sections */
  .section { padding: 56px 16px; }
  .sec-title { font-size: clamp(28px, 9vw, 44px); margin-bottom: 28px; }

  /* Music */
  .release-info { padding: 20px 16px; }
  .release-title { font-size: clamp(24px, 7vw, 36px); }
  .release-badge { font-size: 9px; }
  .release-meta span { font-size: 10px; }
  .singles-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .sc-name { font-size: 13px; }

  /* About */
  .about-photos { height: 240px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-num { font-size: 30px; }
  .stat-lbl { font-size: 9px; }

  /* Contact form */
  .contact-body { font-size: 13px; margin-bottom: 16px; }

  /* Footer — mobile */
  .footer-wrap { padding: 24px 20px 16px; }
  .footer-inner { display: flex !important; flex-direction: column !important; gap: 0 !important; }
  /* Brand: compact, no border — flows straight into columns */
  .footer-brand { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); }
  .footer-logo-img { height: 36px; margin: 0 0 6px 0; }
  .footer-tagline { font-size: 8px; letter-spacing: 0.22em; }
  .footer-desc { display: none; }
  /* Two cols side by side */
  .footer-links-contact { display: flex !important; flex-direction: row !important; gap: 24px !important; margin-bottom: 16px; align-items: flex-start; }
  .footer-links-col { flex: 0 0 auto; }
  .footer-contact-col { flex: 1; min-width: 0; }
  .footer-col-title { font-size: 8px; letter-spacing: 0.22em; margin-bottom: 10px; }
  /* Quick links */
  .footer-nav-list { gap: 8px; }
  .footer-nav-list a { font-size: 11px; gap: 4px; }
  .fnav-arrow { font-size: 9px; }
  /* Contact info — email small enough to not wrap */
  .footer-contact-list { gap: 7px; margin-bottom: 12px; }
  .footer-contact-list li { font-size: 10px; word-break: break-all; line-height: 1.4; gap: 6px; }
  .footer-contact-list li svg { width: 10px; height: 10px; flex-shrink: 0; margin-top: 1px; }
  /* Socials — all 4 in one row, no wrapping */
  .footer-socials { gap: 6px; flex-wrap: nowrap; }
  .footer-socials a { width: 26px; height: 26px; }
  .footer-socials a svg { width: 10px; height: 10px; }
  /* Bottom */
  .footer-bottom { flex-direction: column !important; gap: 6px; padding-top: 14px; border-top: 1px solid var(--border); }
  .footer-copy { font-size: 8px; text-align: center; line-height: 1.6; opacity: 0.5; }
  .footer-bottom-links { justify-content: center; gap: 12px; }
  .footer-bottom-links a { font-size: 8px; }
  .footer-bottom-links { justify-content: center; gap: 12px; }
  .footer-bottom-links a { font-size: 9px; }

  /* Inner pages */
  .page-hero { padding: 96px 16px 44px; }
  .page-title { font-size: clamp(36px, 12vw, 56px); }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤390px)
   ============================================================ */
@media (max-width: 390px) {
  .hero-title { font-size: 36px; }
  .singles-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .stat:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .stream-platforms a:nth-child(n+2) { display: flex; }
  .stream-platforms { gap: 10px; }
  .stream-platforms a { font-size: 9px; }
  .release-info { padding: 16px 14px; }
}

/* ============================================================
   iOS SAFE AREA / NOTCH SUPPORT
   ============================================================ */
.navbar {
  padding-left: max(64px, env(safe-area-inset-left));
  padding-right: max(64px, env(safe-area-inset-right));
}
@media (max-width: 960px) {
  .navbar {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .footer-wrap {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }
  .hero-content {
    padding-bottom: max(80px, calc(60px + env(safe-area-inset-bottom)));
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding-bottom: max(60px, calc(50px + env(safe-area-inset-bottom)));
  }
}
