/* ========================================
   VELVET EMPIRE MUSIC GROUP — GLOBAL STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:           #080808;
  --bg-card:      #111111;
  --bg-card-2:    #161616;
  --gold:         #c9a84c;
  --gold-light:   #e8c96a;
  --gold-dark:    #9a7a2a;
  --text:         #f0f0f0;
  --text-muted:   #888888;
  --text-dim:     #555555;
  --border:       #222222;
  --border-gold:  #c9a84c44;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold:  0 0 30px rgba(201,168,76,0.15);
  --transition:   all 0.25s ease;
  --max-width:    1200px;
  --nav-height:   72px;
}

/* ── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); line-height: 1.8; }

.label-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── LAYOUT ────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { max-width: 520px; }

/* ── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #444;
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.78rem; }
.btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }

/* ── NAVIGATION ────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 100%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 40px,
    rgba(201,168,76,0.018) 40px, rgba(201,168,76,0.018) 41px
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── CARDS ─────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ── ARTIST GRID ───────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.artist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.artist-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.artist-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.artist-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-style: italic;
  color: rgba(201,168,76,0.3);
}
.artist-card-body { padding: 1.5rem; }
.artist-card-genre {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.artist-card-name {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.artist-card-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.artist-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── RELEASE CARDS ─────────────────────── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.release-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.release-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.release-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  position: relative;
}
.release-cover-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.1);
}
/* ── Release card gradient art area (singles) ─────────────────────────── */
.release-art {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.release-art.artist-vyda {
  background: linear-gradient(135deg, #12082a 0%, #1e0d3a 50%, #070410 100%);
}
.release-art.artist-silas {
  background: linear-gradient(135deg, #1a0800 0%, #3a1500 50%, #0a0400 100%);
}
.release-art.artist-delta-rose {
  background: linear-gradient(135deg, #0d0a1a 0%, #1a0d2e 50%, #0a0812 100%);
}
/* decorative watermark initial */
.release-art::before {
  content: attr(data-initial);
  position: absolute;
  bottom: -12px;
  right: 12px;
  font-size: 120px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
/* "Single" badge */
.release-art-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
}
/* subtle glow pulse at center */
.release-art::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* vinyl record icon centered */
.release-art-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  opacity: 0.32;
  pointer-events: none;
  user-select: none;
}
.release-art-icon svg {
  width: 100%;
  height: 100%;
}

.release-body { padding: 1.2rem 1.5rem 1.5rem; }
.release-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  display: inline-block;
  margin-bottom: 0.8rem;
}
.release-title {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.release-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.release-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.release-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}

/* ── TRACKLIST ─────────────────────────── */
.tracklist { width: 100%; border-collapse: collapse; }
.tracklist tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.tracklist tr:last-child { border-bottom: none; }
.tracklist tr:hover { background: rgba(255,255,255,0.03); }
.tracklist td { padding: 0.9rem 0.5rem; font-size: 0.9rem; }
.track-num { color: var(--text-dim); width: 36px; text-align: center; }
.track-title { color: var(--text); font-weight: 500; }
.track-featured { color: var(--gold); font-size: 0.7rem; margin-left: 0.5rem; }
.track-price-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; color: #1a1a1a; background: var(--gold); border-radius: 3px; padding: 1px 6px; margin-left: 6px; vertical-align: middle; letter-spacing: 0.02em; }
.track-duration { color: var(--text-muted); text-align: right; font-size: 0.85rem; font-variant-numeric: tabular-nums; }

/* ── STAT ROW ──────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 4rem;
}
.stat-item {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── DIVIDER ───────────────────────────── */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1rem 0 2rem;
}
.divider-center { margin: 1rem auto 2rem; }

/* ── PRICING TIERS ─────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.25s;
}
.pricing-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card.featured {
  border-color: var(--border-gold);
  background: #131008;
}
.pricing-card.featured::before { opacity: 1; }
.pricing-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  background: var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 700;
}
.pricing-tier {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.pricing-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-features {
  margin-bottom: 2rem;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.78rem;
}

/* ── FOOTER ────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.footer-brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ── ARTIST PAGE ───────────────────────── */
.artist-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.artist-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.25);
}
.artist-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.artist-hero-genre {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.artist-hero-name {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.artist-hero-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.artist-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── BREADCRUMB ────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-dim); }

/* ── PAGE HEADER ───────────────────────── */
.page-header {
  padding: 10rem 0 4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 5rem;
}
.page-header h1 { margin-bottom: 0.75rem; }

/* ── NOTICE BANNER ─────────────────────── */
.notice {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.notice strong { color: var(--gold); }

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .artist-section { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* ── Nav ── */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* ── Hero ── */
  .hero-title { font-size: clamp(2.4rem, 11vw, 4.5rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Artist hero ── */
  .artist-hero { min-height: 50vh; }
  .artist-hero-content { padding: 2.5rem 0; }
  .artist-hero-name { font-size: clamp(2.4rem, 10vw, 4rem); }

  /* ── Grids ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .artists-grid { grid-template-columns: 1fr; }
  .releases-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  /* ── Tracklist table ── */
  .tracklist { display: block; }
  .tracklist tbody { display: block; }
  .tracklist tr { display: flex; align-items: center; flex-wrap: nowrap; gap: 0.5rem; padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--border); }
  .tracklist tr:last-child { border-bottom: none; }
  .tracklist td { padding: 0; border: none; }
  .track-num { width: 28px; flex-shrink: 0; font-size: 0.8rem; }
  .track-title { flex: 1; font-size: 0.85rem; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .track-featured { display: none; }
  .track-duration { flex-shrink: 0; font-size: 0.8rem; white-space: nowrap; }

  /* ── Cards ── */
  .card { border-radius: var(--radius); }
  .pricing-card { padding: 1.5rem; }

  /* ── Section headers ── */
  .section-header { text-align: left; }
  .divider-center { margin-left: 0; }

  /* ── Buttons ── */
  .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.9rem; }

  /* ── Store / licensing page tables ── */
  table { width: 100%; }
}

@media (max-width: 480px) {
  .releases-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  /* ── Artist section ── */
  .artist-section { gap: 2rem; }
  .artist-hero { min-height: 40vh; }

  /* ── Tracklist on very small screens ── */
  .track-num { display: none; }
  .track-title { font-size: 0.82rem; }

  /* ── Footer ── */
  .footer-social { flex-wrap: wrap; }

  /* ── Pricing ── */
  .pricing-card { padding: 1.25rem; }

  /* ── Release card art height ── */
  .release-art { height: 140px; }
  .release-art-icon { width: 70px; height: 70px; }

  /* ── Hero CTA ── */
  .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .section-eyebrow { font-size: 0.65rem; }

  /* ── General overflow prevention ── */
  img { max-width: 100%; height: auto; }
  * { box-sizing: border-box; }
}
