@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Cormorant+SC:wght@300;400&display=swap');

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

:root {
  --cream:   #f4f0e6;
  --warm:    #ede8db;
  --sand:    #d6cfc0;
  --stone:   #5c5448;  /* darkened: ~6.4:1 on cream, passes AA */
  --bark:    #4a4038;  /* darkened: ~8:1 on cream, passes AAA */
  --ink:     #2e2a24;
  --rule:    rgba(120, 110, 96, 0.25);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Header ── */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.25rem 2rem;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-family: 'Cormorant SC', serif;
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  color: var(--ink);
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  transition: color 0.35s;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--bark);
  transition: width 0.35s ease;
}

nav a:hover { color: var(--ink); }
nav a:hover::after { width: 100%; }
nav a.active { color: var(--bark); }
nav a.active::after { width: 100%; }

/* ── Hero (index only) ── */

.hero {
  position: relative;
  width: 100%;
  height: 80svh;
  min-height: 480px;
  overflow: hidden;
  background: var(--warm);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(18%) brightness(0.97) contrast(0.97);
  transition: transform 8s ease;
}

.hero:hover .hero-img { transform: scale(1.025); }

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 24px 64px rgba(46,42,36,0.3), 0 4px 16px rgba(46,42,36,0.15);
  width: min(280px, 55vw);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.album-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 80px rgba(46,42,36,0.35), 0 6px 20px rgba(46,42,36,0.18);
}

.album-art {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* ── Divider ── */

.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.rule-sm {
  display: block;
  width: 2.5rem;
  border-top: 1px solid var(--bark);
  margin: 1.5rem 0;
}

/* ── Sections (single page) ── */

.section {
  border-top: 1px solid var(--rule);
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 3rem;
}

/* ── Stream links ── */

.stream-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}

.stream-item:first-of-type { border-top: 1px solid var(--rule); }

.stream-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color 0.3s;
}

.stream-arrow {
  font-size: 1rem;
  color: var(--sand);
  transition: transform 0.3s ease, color 0.3s;
}

.stream-item:hover .stream-name { color: var(--bark); }
.stream-item:hover .stream-arrow { transform: translate(4px, -2px); color: var(--bark); }

/* ── Page body text (licensing, contact) ── */

.page-body-text {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  max-width: 52ch;
}

.page-body-text a {
  color: var(--ink);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 1px;
  transition: border-color 0.25s, color 0.25s;
}

.page-body-text a:hover {
  color: var(--bark);
  border-color: var(--bark);
}

/* ── Footer ── */

footer {
  margin-top: auto;
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 1.75rem;
}

.footer-socials a {
  font-family: 'Cormorant SC', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  transition: color 0.3s;
}

.footer-socials a:hover { color: var(--ink); }

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--sand);
}

/* ── About section ── */

.bio-subhead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--bark);
  margin-bottom: 1.5rem;
  max-width: 42ch;
}

.bio-body {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--stone);
  font-weight: 300;
  max-width: 56ch;
}

.about-rule { margin: 3.5rem 0; }

.ep-heading {
  font-family: 'Cormorant SC', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.ep-notes { display: flex; flex-direction: column; gap: 1.25rem; }

.ep-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--stone);
  font-weight: 300;
  max-width: 58ch;
}

.tracks-heading {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.tracklist { display: flex; flex-direction: column; }

.track-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--rule);
}

.track-item:first-of-type { border-top: 1px solid var(--rule); }

.track-header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 0.85rem;
}

.track-number {
  font-family: 'Cormorant SC', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--sand);
  flex-shrink: 0;
}

.track-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.track-note {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--stone);
  font-weight: 300;
  padding-left: 2.5rem;
  max-width: 54ch;
}

/* ── Responsive ── */

@media (min-width: 768px) {
  header { padding: 2.25rem 3.5rem; }
  .section-inner { padding: 6rem 3.5rem 7rem; }
  footer { padding: 1.75rem 3.5rem; }
}

/* Stack header on mobile so nav doesn't overflow */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    padding: 1.5rem 1.5rem 1.25rem;
  }

  nav { gap: 1.35rem; }
  nav a { font-size: 0.7rem; letter-spacing: 0.12em; }

  .section-inner { padding: 3rem 1.5rem 4rem; }

  .section-heading { margin-bottom: 2rem; }

  .album-card { width: min(300px, 72vw); }

  .track-note { padding-left: 0; margin-top: 0.65rem; }

  .about-rule { margin: 2.5rem 0; }

  footer { padding: 1.5rem; }
}
