/* ===========================
   Lil' Gravy — Stoneridge
   =========================== */

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

:root {
  --bg:        #111010;
  --surface:   #1c1b1a;
  --gold:      #c8a96e;
  --gold-dim:  #9e7e4a;
  --text:      #e8e0d5;
  --muted:     #8a7f74;
  --max-w:     740px;
}

html {
  font-size: 17px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- HEADER ---- */

header {
  border-bottom: 1px solid #2e2b28;
  padding: 3rem 1.5rem 2.5rem;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.artist-photo-wrap {
  flex-shrink: 0;
}

.artist-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold-dim);
  display: block;
}

.header-text h1 {
  font-size: 2.6rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1.1;
}

.location {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- MAIN ---- */

main {
  flex: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* ---- BIO ---- */

.bio p {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  color: var(--text);
}

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

.bio em {
  color: var(--gold-dim);
  font-style: italic;
}

.sig {
  margin-top: 0.5rem;
  color: var(--muted);
  font-style: italic;
}

/* ---- ALBUM ---- */

.album h2 {
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.album-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.album-layout {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
}

.cover-link {
  flex-shrink: 0;
  display: block;
}

.album-cover {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  border: 1px solid #2e2b28;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.cover-link:hover .album-cover {
  opacity: 0.85;
}

.album-player {
  flex: 1;
  min-width: 0;
}

.soundcloud-embed {
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #2e2b28;
}

.soundcloud-embed iframe {
  display: block;
}

.listen-link {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.listen-link:hover,
.listen-link:focus {
  background: var(--gold);
  color: var(--bg);
}

/* ---- FOOTER ---- */

footer {
  border-top: 1px solid #2e2b28;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 580px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-text h1 {
    font-size: 2rem;
  }

  .artist-photo {
    width: 120px;
    height: 120px;
  }

  .album-layout {
    flex-direction: column;
  }

  .album-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
