/* ============================================================
   BOX3MUSIC — Standalone stylesheet
   Brand: Black, Gold, Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:          #060606;
  --bg2:         #0f0f0f;
  --bg3:         #141414;
  --border:      rgba(255,255,255,.08);
  --text:        #f5f5f5;
  --muted:       rgba(255,255,255,.45);
  --accent:      #D4A853;
  --accent-dim:  rgba(212,168,83,.18);
  --accent-glow: rgba(212,168,83,.35);
  --glass:       rgba(255,255,255,.05);
  --glass2:      rgba(255,255,255,.10);
  --radius:      6px;
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), #fff8e8);
  z-index: 1000; pointer-events: none;
}

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--accent); color: #000;
  padding: .4rem 1rem; border-radius: var(--radius);
  font-weight: 700; z-index: 9999;
}
.skip-link:focus { top: .5rem; }

/* ── Container ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem; border-radius: var(--radius);
  font-family: inherit; font-size: .88rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
  background: var(--text); color: #000;
}
.btn:hover { background: var(--accent); color: #000; }

.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover { background: #e8bc6a; }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-accent-sm {
  display: inline-flex; align-items: center;
  padding: .45rem 1.1rem; border-radius: var(--radius);
  font-family: inherit; font-size: .78rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; background: var(--accent); color: #000;
  border: none; transition: var(--transition);
}
.btn-accent-sm:hover { background: #e8bc6a; }

.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-muted { background: var(--bg2); }

.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .6rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.02em; margin-bottom: 1.25rem;
}

p { margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* ── AOS ── */
.aos { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(6,6,6,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 2rem;
}
.brand-mark {
  font-size: 1.25rem; font-weight: 900; letter-spacing: .06em; color: #fff;
}
.brand-mark span { color: var(--accent); }
.brand-sub {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-top: .1rem;
}

.nav-list {
  display: flex; align-items: center; gap: .2rem; flex-wrap: wrap;
}
.nav-list a {
  font-size: .8rem; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase; padding: .4rem .7rem;
  border-radius: 4px; transition: var(--transition); color: var(--muted);
}
.nav-list a:hover,
.nav-list a.active { color: #fff; }
.nav-list a.nav-sister {
  color: var(--accent); border: 1px solid rgba(212,168,83,.3);
  padding: .35rem .7rem;
}
.nav-list a.nav-sister:hover { background: var(--accent-dim); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; padding: .4rem .85rem;
  border-radius: 4px; cursor: pointer;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 66px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: #060606;
  background-size: cover;
  background-position: center;
  animation: hero-kenburns 18s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,6,6,.72) 0%,
    rgba(6,6,6,.35) 45%,
    rgba(6,6,6,.15) 100%
  );
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 6rem 1.5rem 5rem;
}
.hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .75rem;
}
.artist-name {
  font-size: clamp(5.5rem, 18vw, 12rem);
  font-weight: 900; letter-spacing: -.03em; line-height: .9;
  color: #fff;
  text-shadow: 0 0 100px rgba(212,168,83,.3);
  margin-bottom: .35rem;
}
.hero h1 {
  font-size: clamp(.95rem, 2.5vw, 1.5rem);
  font-weight: 300; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 1.25rem; line-height: 1.4;
}
.hero-lead {
  max-width: 52ch; font-size: 1.05rem;
  color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2rem;
}

.stream-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.stream-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem; border-radius: var(--radius);
  font-family: inherit; font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  background: var(--accent); color: #000; border: none;
}
.stream-btn:hover { background: #e8bc6a; }
.stream-btn.stream-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,.25);
}
.stream-btn.stream-ghost:hover { border-color: var(--accent); color: var(--accent); }
.stream-icon { font-size: 1rem; }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
}
.marquee-track {
  display: flex; gap: 2rem;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.marquee-track span.sep { color: var(--accent); font-size: .6rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   RELEASES
══════════════════════════════ */
.release-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.release-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.release-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.release-art {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.release-art::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  transition: var(--transition);
}
.release-card:hover .release-art::after { background: rgba(0,0,0,.15); }
.release-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; z-index: 1;
  opacity: 0; transition: var(--transition);
  text-shadow: 0 0 24px rgba(212,168,83,.9);
}
.release-card:hover .release-play { opacity: 1; }
/* ══════════════════════════════
   MUSIC CATEGORY TABS
══════════════════════════════ */
.music-tabs {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 2rem 0 .75rem;
}
.tab-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-family: inherit; font-size: .72rem;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
}
.tab-btn:hover { border-color: var(--accent); color: var(--accent); }
.tab-btn.active { background: var(--accent); border-color: var(--accent); color: #000; }

.tab-desc {
  font-size: .85rem; color: var(--muted);
  min-height: 1.4rem; margin-bottom: 1.75rem;
  transition: opacity .3s ease;
}

.release-card.card-hidden { display: none; }

/* Coming soon badge on placeholder cards */
.release-coming-soon {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50px; padding: .25rem .65rem;
  margin-bottom: .6rem;
}

/* Focus music education callout */
.focus-edu-cta {
  display: none;
  margin-top: 2.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.focus-edu-cta.visible { display: block; }
.focus-edu-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
@media (max-width: 640px) {
  .focus-edu-inner { flex-direction: column; align-items: flex-start; }
}

/* Release art genre gradients */
.release-art-soul        { background: linear-gradient(145deg, #1a0814 0%, #3d1530 55%, #1a0814 100%); }
.release-art-electronic  { background: linear-gradient(145deg, #05091a 0%, #0d2245 55%, #05091a 100%); }
.release-art-ambient     { background: linear-gradient(145deg, #041410 0%, #0a2e24 55%, #041410 100%); }
.release-art-urban       { background: linear-gradient(145deg, #0f0f14 0%, #1c1c32 55%, #0f0f14 100%); }
.release-art-meditation  { background: linear-gradient(145deg, #080d1a 0%, #0d1f3a 55%, #080d1a 100%); }
.release-art-frequency   { background: linear-gradient(145deg, #100a00 0%, #2a1800 55%, #100a00 100%); }
.release-art-frequency-b { background: linear-gradient(145deg, #0a0514 0%, #1e0f38 55%, #0a0514 100%); }
.release-art-focus       { background: linear-gradient(145deg, #040c10 0%, #082030 55%, #040c10 100%); }

/* Music note decoration on release art */
.release-art::before {
  content: '♪';
  position: absolute; bottom: .85rem; right: 1rem;
  font-size: 2.2rem; color: rgba(212,168,83,.18);
  z-index: 1; pointer-events: none;
  transition: var(--transition);
}
.release-card:hover .release-art::before { color: rgba(212,168,83,.45); }

.release-body { padding: 1rem; }
.release-genre {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .3rem;
}
.release-title { font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.release-sub { font-size: .78rem; color: var(--muted); margin-bottom: .75rem; }
.release-platform-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.btn-ghost-sm {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost-sm:hover { border-color: var(--accent); color: var(--accent); }

/* ══════════════════════════════
   FEATURED ARTIST CARD
══════════════════════════════ */
.featured-artist-card {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 900px;
}
.featured-artist-img {
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.featured-artist-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6,6,6,.82) 0%,
    rgba(6,6,6,.45) 55%,
    rgba(6,6,6,.65) 100%
  );
}
.featured-artist-content {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: center; padding: 2.5rem;
}
.featured-artist-name {
  font-size: clamp(2rem, 6vw, 4.5rem); font-weight: 900;
  letter-spacing: -.02em; line-height: .9; color: #fff;
  text-shadow: 0 0 50px rgba(212,168,83,.3);
  margin-bottom: .6rem;
}
.featured-artist-sub {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
}

/* ══════════════════════════════
   ARTIST
══════════════════════════════ */
.artist-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

/* Artist identity card — replaces gallery image */
.artist-visual-col { display: flex; }
.artist-identity-card {
  aspect-ratio: 3 / 4;
  width: 100%;
  background:
    radial-gradient(ellipse at center, rgba(212,168,83,.09) 0%, transparent 65%),
    linear-gradient(160deg, #0f0f0f 0%, #1a1008 55%, #060606 100%);
  border: 1px solid rgba(212,168,83,.2);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.artist-identity-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--accent); opacity: .65;
  margin-bottom: 1rem;
}
.artist-identity-name {
  font-size: clamp(3.5rem, 9vw, 6.5rem); font-weight: 900;
  letter-spacing: -.03em; line-height: .9; color: #fff;
  text-shadow: 0 0 60px rgba(212,168,83,.3);
}
.artist-identity-sub {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-top: .85rem; font-weight: 600;
}
.artist-identity-bar {
  width: 36px; height: 1px;
  background: var(--accent); margin: 1.5rem auto;
}
.artist-identity-genres {
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
/* Animated waveform bars */
.artist-identity-wave {
  display: flex; align-items: flex-end; gap: 4px;
  margin-top: 1.75rem; height: 28px;
}
.artist-identity-wave span {
  display: block; width: 4px;
  background: var(--accent); border-radius: 2px;
  opacity: .5;
  animation: wave-bar 1.4s ease-in-out infinite;
}
.artist-identity-wave span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.artist-identity-wave span:nth-child(2) { height: 16px; animation-delay: .1s; }
.artist-identity-wave span:nth-child(3) { height: 22px; animation-delay: .2s; }
.artist-identity-wave span:nth-child(4) { height: 28px; animation-delay: .3s; }
.artist-identity-wave span:nth-child(5) { height: 22px; animation-delay: .4s; }
.artist-identity-wave span:nth-child(6) { height: 16px; animation-delay: .5s; }
.artist-identity-wave span:nth-child(7) { height: 10px; animation-delay: .6s; }
.artist-identity-wave span:nth-child(8) { height: 6px;  animation-delay: .7s; }
@keyframes wave-bar {
  0%, 100% { transform: scaleY(1); opacity: .45; }
  50%       { transform: scaleY(.35); opacity: .2; }
}
.artist-text h2 { margin-bottom: .25rem; }
.artist-sub {
  font-size: 1.05rem; color: var(--accent);
  font-weight: 500; letter-spacing: .02em;
  margin-bottom: 1.25rem;
}
.founder-quote {
  border-left: 3px solid var(--accent);
  background: var(--accent-dim);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.founder-quote blockquote {
  font-size: .95rem; font-style: italic;
  color: rgba(255,255,255,.8); line-height: 1.65;
}

/* ══════════════════════════════
   STATS STRIP
   Gold background, inverted text
══════════════════════════════ */
.stats-strip { background: var(--accent); padding: 3.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1;
  color: #000;
}
.stat-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(0,0,0,.65); margin-top: .4rem;
}

/* ══════════════════════════════
   MOOD GRID
══════════════════════════════ */
.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem; margin-top: 2rem;
}
.mood-card {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem 1.25rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.mood-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.mood-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 40%, transparent 100%);
}
.mood-soul       { background: linear-gradient(145deg, #1a0814 0%, #3d1530 60%, #1a0814 100%); }
.mood-electronic { background: linear-gradient(145deg, #05091a 0%, #0d2245 60%, #05091a 100%); }
.mood-ambient    { background: linear-gradient(145deg, #041410 0%, #0a2e24 60%, #041410 100%); }
.mood-urban      { background: linear-gradient(145deg, #0f0f14 0%, #1c1c32 60%, #0f0f14 100%); }

.mood-num {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: .6rem; font-weight: 800; letter-spacing: .12em;
  color: var(--accent); text-transform: uppercase; z-index: 1;
}
.mood-genre {
  position: relative; z-index: 1;
  font-size: 1.45rem; font-weight: 800; letter-spacing: -.01em;
  color: #fff; margin-bottom: .5rem;
}
.mood-desc {
  position: relative; z-index: 1;
  font-size: .8rem; color: rgba(255,255,255,.6);
  line-height: 1.5; margin-bottom: 0;
}

/* Art & Sol Gallery callout block */
.gallery-cta-block {
  margin-top: 2.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.gallery-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}

/* ══════════════════════════════
   PILLARS
══════════════════════════════ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 2rem;
}
.pillar-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.pillar-card:hover {
  border-color: var(--accent);
  background: var(--glass2);
}
.pillar-num {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  color: var(--accent); text-transform: uppercase; margin-bottom: .6rem;
}
.pillar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.pillar-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; margin-bottom: 0; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem; align-items: start;
}
.contact-details {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem;
}
.contact-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .2rem;
}
.contact-value { font-size: .92rem; }

.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form label {
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .7rem 1rem;
  border-radius: var(--radius);
  font-family: inherit; font-size: .92rem;
  transition: var(--transition);
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; align-items: start;
}
.footer-brand {
  font-size: 1.1rem; font-weight: 900;
  letter-spacing: .08em; margin-bottom: .3rem;
}
.footer-sub {
  font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .5rem;
}
.footer-muted { font-size: .78rem; color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .82rem; color: var(--muted);
  letter-spacing: .04em; text-transform: uppercase;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .release-grid   { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .mood-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .artist-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .artist-identity-card { aspect-ratio: 4 / 3; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-list {
    display: none;
    position: absolute; top: 66px; right: 0; left: 0;
    background: rgba(6,6,6,.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem; gap: .25rem;
  }
  .nav-list.open { display: flex; }
  .hero-inner { padding: 4rem 1.5rem 3rem; }
  .artist-name { font-size: clamp(4rem, 22vw, 7rem); }
  .release-grid   { grid-template-columns: 1fr; }
  .pillars-grid   { grid-template-columns: 1fr; }
  .mood-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .form-row-2     { grid-template-columns: 1fr; }
  .footer-inner   { grid-template-columns: 1fr; }
  .gallery-cta-inner { flex-direction: column; align-items: flex-start; }
}
