:root{
  --bg: #121212;
  --bg2:#181818;
  --card:#1d1d1d;
  --text:#e9e5dc;
  --muted:#bfb6a3;
  --line: rgba(255,255,255,.08);
  --accent:#c7a06a;
  --accent2:#8f744a;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
}

/* Reset / Base */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, var(--bg), #0f0f0f 80%);
  color:var(--text);
}

/* Make images behave everywhere unless explicitly sized */
img{ max-width:100%; height:auto; display:block; }

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  background:#000;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}

/* Header / Nav */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(18,18,18,.70);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  color:var(--accent);
  background: rgba(255,255,255,.03);
  font-weight:700;
  letter-spacing:.02em;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-text strong{
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.brand-text span{
  font-size:12px;
  color:var(--muted);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav-links a{
  font-size:13px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
}
.nav-links a:hover{
  background: rgba(255,255,255,.04);
  color: var(--text);
  text-decoration:none;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:600;
  font-size:13px;
}
.btn:hover{ background: rgba(255,255,255,.06); text-decoration:none; }
.btn.primary{
  border-color: rgba(199,160,106,.45);
  background: rgba(199,160,106,.14);
}
.btn.primary:hover{ background: rgba(199,160,106,.20); }
.btn.small{ padding:8px 12px; font-size:12px; }

/* HERO */
.hero{
  padding:70px 0 40px;
}
.hero-card{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  padding: 44px 26px;
  text-align:center;
}
.portrait{
  width: 140px;
  height: 140px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(199,160,106,.55);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  margin:0 auto;
}
h1{
  margin: 18px 0 8px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing:.01em;
}
.tagline{
  margin: 0 auto 18px;
  max-width: 650px;
  color: var(--muted);
  font-style: italic;
  font-size: clamp(14px, 2.2vw, 18px);
}
.hero-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 16px;
}

/* Sections */
.section{ padding:48px 0; }
.section-header{
  text-align:center;
  margin-bottom:18px;
}
.section-header h2{
  margin:0 0 8px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(28px, 4vw, 44px);
  color:var(--accent);
}
.section-header p{
  margin:0;
  color:var(--muted);
}

/* Grid (YOU NEED THIS for discography + Official Links) */
.grid{
  display:grid;
  gap:18px;
}
.grid.two{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.three{ grid-template-columns: repeat(3, minmax(0,1fr)); }

@media (max-width: 900px){
  .grid.two, .grid.three{ grid-template-columns: 1fr; }
  .brand{ min-width:auto; }
}

/* Cards */
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  padding:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.20);
}

/* Prose */
.prose{
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--text);
}
.prose p{ margin:0 0 14px; color: var(--muted); }
.prose p strong{ color: var(--text); }

/* Album block (used on multiple pages) */
.album{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

/* IMPORTANT: don’t let album covers grow */
.album img{
  flex: 0 0 auto;
  max-width: 200px;
}

/* Default album cover style (for images that use class="cover") */
.album .cover{
  width:140px;
  height:140px;
  border-radius: 18px;
  object-fit:cover;
  border:1px solid var(--line);
  flex:0 0 auto;
}

/* Discography cover style (YOUR discography uses class="disco-cover") */
.album .disco-cover{
  width:140px !important;
  height:140px !important;
  max-width:140px !important;
  max-height:140px !important;
  min-width:140px !important;
  min-height:140px !important;
  border-radius: 18px;
  object-fit:cover;
  border:1px solid var(--line);
  flex:0 0 auto;
}

/* Small screens: stack album content nicely */
@media (max-width: 900px){
  .album{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}

/* Album text bits */
.album h3{
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 26px;
  color: var(--text);
}
.album .year{
  color: var(--muted);
  font-size: 13px;
  margin-bottom:10px;
}
.album p{
  margin:0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}
.album-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Official Links cards: keep content inside, stop weird wrapping */
.grid.two > a.card{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-start;
  max-width: 520px;
  width:100%;
}
.grid.two > a.card p{
  margin:0;
}

/* ===== MUSIC SAMPLES (FIXED to match YOUR music.html HTML) ===== */
/*
Your music.html uses:
  <div class="track sample"> ... <div class="sample-player"> ... </div>
Not:
  .sample-item / .sample-main
So we style YOUR structure directly.
*/
.track{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.track-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.cover{
  width:54px;
  height:54px;
  border-radius: 14px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  flex:0 0 auto;
}

/* specifically for the sample covers inside music samples */
.music-samples .sample-cover{
  width:48px !important;
  height:48px !important;
  max-width:48px !important;
  max-height:48px !important;
  min-width:48px !important;
  min-height:48px !important;
  border-radius:10px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  flex:0 0 auto;
}

.track strong{
  display:block;
  font-size:16px;
}
.track span{
  display:block;
  color: var(--muted);
  font-size:13px;
  margin-top:3px;
}

/* Hide audio until hover/focus (same behavior you wanted) */
.music-samples .sample-player{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition: max-height .22s ease, opacity .22s ease;
}
.music-samples .track.sample:hover .sample-player,
.music-samples .track.sample:focus-within .sample-player{
  max-height:120px;
  opacity:1;
}
.music-samples .sample-player audio{
  width:100%;
  height:36px;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.25);
  padding:32px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap:18px;
  align-items:start;
}
.footer-grid h4{
  margin:0 0 10px;
  color:var(--accent);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size:18px;
}
.footer-grid ul{ list-style:none; padding:0; margin:0; }
.footer-grid li{ margin:8px 0; color: var(--muted); }
.footer-grid a{ color:var(--muted); }
.footer-grid a:hover{ color:var(--text); text-decoration:none; }

@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr; }
}

.footer-bottom{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color: rgba(233,229,220,.55);
  font-size:12px;
  text-align:center;
}

hr.sep{
  border:none;
  border-top:1px solid var(--line);
  margin:28px 0 0;
}
