/* ═══════════════════════════════════════════
   INDIGENOUS MUSIC DIRECTORY — MAIN STYLES
   v1.0.0
═══════════════════════════════════════════ */

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

:root {
  --bg:            #faf6ee;
  --surface:       #ffffff;
  --surface2:      #f3eee2;
  --surface3:      #ebe3d0;
  --border:        #e3dccb;
  --border-strong: #c9bfa6;
  --text:          #1c1d1a;
  --text-soft:     #3a3c37;
  --muted:         #6b6d65;
  --dim:           #8a8c82;
  --turq:          #1f8a72;
  --turq-bright:   #3ecfaa;
  --turq-glow:     rgba(62,207,170,0.25);
  --gold:          #9a7d2e;
  --gold-bright:   #c9a94b;
  --red-on:        #c8302f;
  --red-bright:    #e84040;
  --player-h:      80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding-bottom: var(--player-h);
  font-size: 17px;
  line-height: 1.55;
}

/* ─── HERO ─── */
.hero {
  max-width: 1340px;
  margin: 0 auto;
  padding: 72px 28px 56px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 30%, rgba(31,138,114,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 85% 75%, rgba(154,125,46,.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--turq);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content:'';
  display: block;
  width: 28px; height: 2px;
  background: var(--turq);
  border-radius: 2px;
}
.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-text h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-text .tagline {
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 12px;
  max-width: 500px;
  line-height: 1.6;
}
.hero-text .sub-tagline {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── ANIMATIONS ─── */
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.35; transform:scale(.65); }
}
@keyframes wave {
  from { height: 4px; }
  to   { height: 24px; }
}

/* ─── NAV ─── */
.topnav {
  background: rgba(250,246,238,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
}
.topnav-inner {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}
.brand-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface3);
  border: 2px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--turq);
  flex-shrink: 0;
  overflow: hidden;
}
.brand-logo img { width:100%; height:100%; object-fit:cover; }
.brand-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}
.brand-text h1 em { color: var(--gold); font-style: italic; font-weight: 700; }
.brand-text .sub {
  font-size: 10px;
  color: var(--turq);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 13px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--turq); background: rgba(31,138,114,0.07); }
.nav-listen {
  background: var(--red-on) !important;
  color: white !important;
  border-radius: 22px !important;
  padding: 8px 18px !important;
  margin-left: 10px;
  display: flex !important;
  align-items: center;
  gap: 8px;
  transition: background .15s, transform .1s !important;
}
.nav-listen:hover { background: var(--red-bright) !important; transform: translateY(-1px); color: white !important; }
.nav-listen::before {
  content:'';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.5s ease-in-out infinite;
}

/* ─── HAMBURGER / MOBILE ─── */
.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  width: 42px; height: 42px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.hamburger svg { width: 20px; height: 20px; }
.hamburger:hover { background: var(--surface2); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 75px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 89;
  padding: 14px 20px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  flex-direction: column;
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  padding: 13px 10px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-listen {
  text-align: center;
  margin-top: 6px;
  border-radius: 22px !important;
  border-bottom: none;
  justify-content: center;
}

/* ─── LAYOUT UTILITIES ─── */
.section {
  max-width: 1340px;
  margin: 0 auto;
  padding: 64px 28px;
}
.section-header { margin-bottom: 36px; }
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--turq);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}
.section-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-top: 10px;
  max-width: 560px;
  line-height: 1.6;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red-on);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 16px rgba(200,48,47,0.22);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--red-bright);
  box-shadow: 0 6px 22px rgba(200,48,47,0.32);
  color: white;
}
.btn-primary svg { width: 16px; height: 16px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--turq);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: 2px solid var(--turq);
  transition: background .15s, color .15s;
  cursor: pointer;
}
.btn-secondary:hover { background: var(--turq); color: white; }

/* ─── ARTIST CARDS ─── */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.artist-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  color: var(--text);
}
.artist-card-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--surface3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.artist-card-photo img { width:100%; height:100%; object-fit:cover; }
.artist-card-photo .placeholder-icon { width:60px; height:60px; color:var(--border-strong); }
.artist-on-air {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red-on);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.artist-on-air::before {
  content:'';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.4s ease-in-out infinite;
}
.artist-card-body { padding: 15px 17px 17px; }
.artist-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}
.artist-nation {
  font-size: 12px;
  color: var(--turq);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 9px;
}
.artist-genres { display:flex; gap:5px; flex-wrap:wrap; }
.genre-tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px 9px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* ─── NOW PLAYING CARD ─── */
.np-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transition: transform .4s ease;
  position: relative;
  overflow: hidden;
}
.np-card::before {
  content:'';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--turq), var(--gold));
}
.np-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turq);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.np-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red-on);
  animation: pulse 1.5s ease-in-out infinite;
}
.np-main { display:flex; gap:16px; align-items:flex-start; margin-bottom:18px; }
.np-art {
  width: 72px; height: 72px;
  border-radius: 10px;
  background: var(--surface3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.np-art svg { width:28px; height:28px; color:var(--dim); }
.np-art img { width:100%; height:100%; object-fit:cover; display:none; }
.np-art img.show { display:block; }
.np-info { flex:1; min-width:0; }
.np-show { font-size:10px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase; font-weight:600; margin-bottom:5px; }
.np-title { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; line-height:1.2; margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.np-artist { font-size:13px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.np-play {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--red-on);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(200,48,47,0.28);
}
.np-play:hover { background: var(--red-bright); transform: scale(1.06); }
.np-play svg { width:18px; height:18px; }
.np-play .pause-icon { display:none; }
.np-play.playing .play-icon { display:none; }
.np-play.playing .pause-icon { display:block; }
.np-recent-label { font-size:10px; color:var(--dim); letter-spacing:.14em; text-transform:uppercase; font-weight:600; margin-bottom:11px; padding-top:14px; border-top:1px solid var(--border); }
.recent-list { display:flex; flex-direction:column; gap:9px; }
.recent-item { display:flex; align-items:center; gap:10px; }
.recent-art { width:34px; height:34px; border-radius:6px; object-fit:cover; background:var(--surface3); flex-shrink:0; border:1px solid var(--border); }
.recent-info { min-width:0; flex:1; }
.recent-title { font-size:13px; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; color:var(--text); }
.recent-artist { font-size:11px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.recent-time { font-size:11px; color:var(--dim); flex-shrink:0; }
.np-wbwt-badge {
  display:inline-flex; align-items:center; gap:5px;
  background:var(--surface2); border:1px solid var(--border); border-radius:20px;
  padding:5px 12px; font-size:11px; font-weight:700; color:var(--turq);
  letter-spacing:.08em; text-transform:uppercase; margin-top:12px;
}

/* ─── STATS BAR ─── */
.stats-bar { background:var(--surface2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.stats-bar-inner {
  max-width:1340px; margin:0 auto; padding:20px 28px;
  display:flex; align-items:center; justify-content:space-around; gap:20px; flex-wrap:wrap;
}
.stat-item { text-align:center; }
.stat-number { font-family:'Playfair Display',serif; font-size:32px; font-weight:900; color:var(--turq); line-height:1; margin-bottom:4px; }
.stat-label { font-size:11px; color:var(--muted); letter-spacing:.14em; text-transform:uppercase; font-weight:600; }

/* ─── BROWSE CARDS ─── */
.browse-section { background:var(--surface2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.browse-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.browse-card {
  background:var(--surface); border:1px solid var(--border); border-radius:14px;
  padding:26px 22px; text-decoration:none; color:var(--text);
  display:flex; align-items:flex-start; gap:15px;
  transition:transform .2s, box-shadow .2s, border-color .15s;
}
.browse-card:hover { transform:translateY(-3px); box-shadow:0 8px 28px rgba(0,0,0,0.09); border-color:var(--turq); color:var(--text); }
.browse-icon {
  width:46px; height:46px; border-radius:11px;
  background:var(--surface3); display:flex; align-items:center; justify-content:center;
  flex-shrink:0; border:1px solid var(--border);
}
.browse-icon svg { width:22px; height:22px; color:var(--turq); }
.browse-info h3 { font-family:'Playfair Display',serif; font-size:17px; font-weight:700; margin-bottom:5px; }
.browse-info p { font-size:13px; color:var(--muted); line-height:1.4; }
.browse-arrow { margin-left:auto; color:var(--dim); flex-shrink:0; align-self:center; transition:transform .15s, color .15s; }
.browse-card:hover .browse-arrow { transform:translateX(3px); color:var(--turq); }

/* ─── PROMO STRIP ─── */
.promo-strip { background:var(--text); color:white; padding:56px 0; }
.promo-strip-inner {
  max-width:1340px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
}
.promo-eyebrow { font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--turq-bright); font-weight:700; margin-bottom:12px; }
.promo-title { font-family:'Playfair Display',serif; font-size:36px; font-weight:900; line-height:1.1; margin-bottom:16px; color:white; }
.promo-title em { color:var(--gold-bright); font-style:italic; font-weight:400; }
.promo-text { font-size:15px; color:rgba(255,255,255,0.68); line-height:1.65; margin-bottom:26px; }
.promo-listen {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--red-on); color:white; text-decoration:none;
  padding:13px 26px; border-radius:28px; font-weight:700; font-size:15px;
  letter-spacing:.04em; transition:background .15s, transform .15s;
  border:none; cursor:pointer; box-shadow:0 4px 16px rgba(200,48,47,0.35);
}
.promo-listen:hover { background:var(--red-bright); transform:translateY(-2px); }
.promo-listen::before {
  content:''; width:7px; height:7px; border-radius:50%;
  background:white; animation:pulse 1.4s ease-in-out infinite;
}
.promo-visual {
  background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.1);
  border-radius:18px; padding:26px;
}
.promo-now-label {
  font-size:10px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--turq-bright); font-weight:700; margin-bottom:14px;
  display:flex; align-items:center; gap:8px;
}
.promo-now-label::before {
  content:''; width:7px; height:7px; border-radius:50%;
  background:var(--red-bright); animation:pulse 1.4s ease-in-out infinite;
}
.promo-track { display:flex; align-items:center; gap:14px; margin-bottom:14px; }
.promo-art {
  width:58px; height:58px; border-radius:10px;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12);
  overflow:hidden; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.promo-art svg { width:24px; height:24px; color:rgba(255,255,255,0.3); }
.promo-art img { width:100%; height:100%; object-fit:cover; display:none; }
.promo-art img.show { display:block; }
.promo-track-title { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:white; margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.promo-track-artist { font-size:13px; color:rgba(255,255,255,0.5); }
.promo-waveform { display:flex; align-items:center; gap:3px; height:28px; margin-top:12px; }
.promo-waveform span { display:block; width:3px; background:var(--turq-bright); border-radius:2px; animation:wave 1.1s ease-in-out infinite alternate; opacity:.7; }
.promo-waveform span:nth-child(2)  { animation-delay:.10s; }
.promo-waveform span:nth-child(3)  { animation-delay:.22s; }
.promo-waveform span:nth-child(4)  { animation-delay:.08s; }
.promo-waveform span:nth-child(5)  { animation-delay:.30s; }
.promo-waveform span:nth-child(6)  { animation-delay:.15s; }
.promo-waveform span:nth-child(7)  { animation-delay:.25s; }
.promo-waveform span:nth-child(8)  { animation-delay:.05s; }
.promo-waveform span:nth-child(9)  { animation-delay:.18s; }
.promo-waveform span:nth-child(10) { animation-delay:.35s; }
.promo-waveform span:nth-child(11) { animation-delay:.12s; }
.promo-waveform span:nth-child(12) { animation-delay:.28s; }
.promo-waveform.paused span { animation-play-state:paused; height:8px !important; }

/* ─── SUBMIT CTA ─── */
.submit-cta { text-align:center; padding:72px 28px; max-width:700px; margin:0 auto; }
.submit-cta h2 { font-family:'Playfair Display',serif; font-size:38px; font-weight:900; margin-bottom:14px; line-height:1.1; }
.submit-cta h2 em { color:var(--gold); font-style:italic; font-weight:400; }
.submit-cta p { font-size:17px; color:var(--muted); margin-bottom:28px; line-height:1.6; }

/* ─── FOOTER ─── */
footer { background:var(--surface2); border-top:1px solid var(--border); padding:30px 28px; }
.footer-inner {
  max-width:1340px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px;
}
.footer-brand { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; }
.footer-links a { text-decoration:none; color:var(--muted); font-size:13px; font-weight:500; transition:color .15s; }
.footer-links a:hover { color:var(--turq); }
.footer-meta { font-size:12px; color:var(--dim); }

/* ─── PLAYER BAR ─── */
.player-bar {
  position:fixed; bottom:0; left:0; right:0; height:var(--player-h);
  background:rgba(255,255,255,0.97); backdrop-filter:blur(16px);
  border-top:1px solid var(--border); z-index:100; box-shadow:0 -4px 24px rgba(0,0,0,0.08);
}
.player-bar-inner {
  max-width:1340px; margin:0 auto; height:100%;
  display:flex; align-items:center; padding:0 28px; gap:18px;
}
.pb-track { display:flex; align-items:center; gap:12px; flex:1; min-width:0; }
.pb-art {
  width:46px; height:46px; border-radius:8px;
  background:var(--surface3); border:1px solid var(--border);
  flex-shrink:0; overflow:hidden; display:flex; align-items:center; justify-content:center;
}
.pb-art svg { width:18px; height:18px; color:var(--dim); }
.pb-art img { width:100%; height:100%; object-fit:cover; display:none; }
.pb-art img.show { display:block; }
.pb-info { min-width:0; }
.pb-title { font-size:14px; font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; color:var(--text); line-height:1.2; margin-bottom:2px; }
.pb-artist { font-size:12px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pb-play {
  width:46px; height:46px; border-radius:50%;
  background:var(--red-on); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center; color:white;
  transition:background .15s, transform .15s; box-shadow:0 2px 10px rgba(200,48,47,0.25);
  flex-shrink:0;
}
.pb-play:hover { background:var(--red-bright); transform:scale(1.05); }
.pb-play svg { width:17px; height:17px; }
.pb-play .pb-pause-icon { display:none; }
.pb-play.playing .pb-play-icon { display:none; }
.pb-play.playing .pb-pause-icon { display:block; }
.pb-right { display:flex; align-items:center; gap:14px; flex-shrink:0; }
.pb-status { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); white-space:nowrap; }
.pb-status.live { color:var(--red-on); }
.pb-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red-on);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 20px;
}
.pb-vol-wrap { display:flex; align-items:center; gap:8px; }
.pb-vol-wrap svg { width:15px; height:15px; color:var(--dim); flex-shrink:0; }
.pb-vol-slider { width:80px; accent-color:var(--turq); cursor:pointer; }

/* ─── ARTIST DIRECTORY PAGE ─── */
.dir-hero {
  max-width:1340px; margin:0 auto; padding:52px 28px 36px;
}
.dir-hero h1 { font-family:'Playfair Display',serif; font-size:46px; font-weight:900; line-height:1.05; margin-bottom:12px; }
.dir-hero h1 em { color:var(--gold); font-style:italic; font-weight:400; }
.dir-hero p { font-size:17px; color:var(--muted); max-width:560px; }

.dir-controls {
  max-width:1340px; margin:0 auto; padding:0 28px 28px;
  display:flex; gap:12px; flex-wrap:wrap; align-items:center;
}
.dir-search {
  flex:1; min-width:240px; max-width:400px;
  display:flex; align-items:center; gap:10px;
  background:var(--surface); border:1px solid var(--border);
  border-radius:10px; padding:10px 16px;
  transition:border-color .15s;
}
.dir-search:focus-within { border-color:var(--turq); }
.dir-search svg { width:18px; height:18px; color:var(--dim); flex-shrink:0; }
.dir-search input { border:none; background:transparent; font-size:15px; color:var(--text); width:100%; outline:none; font-family:inherit; }
.dir-search input::placeholder { color:var(--dim); }
.dir-filter {
  background:var(--surface); border:1px solid var(--border);
  border-radius:10px; padding:10px 16px; font-size:14px;
  color:var(--text); font-family:inherit; cursor:pointer;
  transition:border-color .15s; outline:none; font-weight:500;
}
.dir-filter:focus { border-color:var(--turq); }
.dir-count { font-size:14px; color:var(--muted); margin-left:auto; font-weight:500; }

.dir-grid {
  max-width:1340px; margin:0 auto; padding:0 28px 64px;
}

/* ─── SINGLE ARTIST PAGE ─── */
.artist-single {
  max-width:1000px; margin:0 auto; padding:52px 28px 64px;
}
.artist-single-header { display:grid; grid-template-columns:280px 1fr; gap:40px; margin-bottom:48px; align-items:start; }
.artist-single-photo {
  width:100%; aspect-ratio:1; border-radius:18px; overflow:hidden;
  background:var(--surface3); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
}
.artist-single-photo img { width:100%; height:100%; object-fit:cover; }
.artist-single-photo svg { width:80px; height:80px; color:var(--border-strong); }
.artist-single-meta .artist-nation-large {
  font-size:13px; color:var(--turq); font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; margin-bottom:8px;
}
.artist-single-meta h1 { font-family:'Playfair Display',serif; font-size:42px; font-weight:900; line-height:1.05; margin-bottom:14px; }
.artist-single-meta .artist-genres-large { display:flex; gap:7px; flex-wrap:wrap; margin-bottom:20px; }
.artist-single-meta .genre-tag-large {
  background:var(--surface2); border:1px solid var(--border);
  border-radius:12px; padding:5px 13px; font-size:13px; color:var(--text-soft); font-weight:600;
}
.artist-bio { font-size:16px; color:var(--text-soft); line-height:1.7; margin-bottom:32px; }
.artist-social-links { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:28px; }
.social-link {
  display:inline-flex; align-items:center; gap:7px;
  background:var(--surface2); border:1px solid var(--border);
  border-radius:10px; padding:8px 14px; text-decoration:none;
  font-size:13px; font-weight:600; color:var(--text-soft);
  transition:border-color .15s, color .15s;
}
.social-link:hover { border-color:var(--turq); color:var(--turq); }
.social-link svg { width:15px; height:15px; }
.artist-awards { margin-top:28px; }
.artist-awards h3 { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; margin-bottom:12px; }
.award-item { font-size:14px; color:var(--muted); padding:6px 0; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:8px; }
.award-item::before { content:'★'; color:var(--gold); font-size:12px; }
.wbwt-note-box {
  background:var(--surface2); border:1px solid var(--border); border-left:3px solid var(--turq);
  border-radius:10px; padding:14px 18px; font-size:14px; color:var(--text-soft);
  font-style:italic; margin-top:20px;
}
.wbwt-note-box::before { content:'♪ Station Note: '; font-weight:700; font-style:normal; color:var(--turq); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .browse-grid { grid-template-columns: 1fr 1fr; }
  .promo-strip-inner { grid-template-columns: 1fr; gap:36px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr !important; gap: 40px; padding: 48px 20px 36px; }
  .artist-single-header { grid-template-columns: 1fr; }
  .artist-single-photo { max-width: 240px; }
  .pb-vol-wrap, .pb-status { display: none; }
}
@media (max-width: 680px) {
  .browse-grid { grid-template-columns: 1fr; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); gap:12px; }
  .section { padding: 44px 18px; }
  .dir-hero { padding: 36px 18px 24px; }
  .dir-hero h1 { font-size: 34px; }
  .stat-number { font-size: 26px; }
}
