/* Umbra Volatilis — lyrics pages */
:root {
  --bg: #08080f; --bg-surface: #10101c; --bg-card: #141420;
  --border: rgba(255,255,255,.08);
  --text: #e8e2d8; --text-muted: #8a8078; --text-dim: #5a5450;
  --accent: #c8954a; --accent-glow: rgba(200,149,74,.18);
  --cool: #8878d0;
  --radius: 6px; --radius-lg: 12px;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 5vw, 2.5rem);
}

/* ── Nav ── */
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 3rem;
  transition: color .15s;
}
.nav-back:hover { color: var(--accent); }
.nav-back svg { flex-shrink: 0; }

/* ── Track header ── */
.track-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}
.track-header__label {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.track-header__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: .4rem;
}
.track-header__subtitle {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.track-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}
.tag {
  display: inline-block;
  padding: .3rem .75rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Player (small) ── */
.track-player {
  margin-bottom: 2.5rem;
}
.track-player iframe {
  width: 100%;
  height: 100px;
  border-radius: var(--radius);
  border: 0;
  background: var(--bg-surface);
  display: block;
}

/* ── Meaning ── */
.track-meaning {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2.5rem;
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.track-meaning strong { color: var(--text); }

/* ── Lyrics ── */
.lyrics-section { margin-bottom: 3rem; }

.lyrics-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.lyrics-column__label {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.lyrics-single { max-width: 560px; }

.lyrics-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  white-space: pre-wrap;
  font-family: var(--font-body);
}
.lyrics-text em {
  color: var(--text-muted);
  font-style: italic;
}

/* Verse / chorus visual rhythm */
.lyrics-verse { margin-bottom: 1.4em; }
.lyrics-chorus {
  margin-bottom: 1.4em;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(200,149,74,.35);
  color: var(--text);
}

/* ── Dream source ── */
.dream-source {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.dream-source__label {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cool);
  margin-bottom: .6rem;
}
.dream-source__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.dream-source__desc {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.dream-source__links { display: flex; gap: .75rem; flex-wrap: wrap; }
.link-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: .83rem;
  color: var(--text-muted);
  transition: color .15s, border-color .15s;
}
.link-pill:hover { color: var(--text); border-color: rgba(255,255,255,.22); }
.link-pill--accent { color: var(--accent); border-color: rgba(200,149,74,.3); }
.link-pill--accent:hover { color: var(--accent); background: var(--accent-glow); }

/* ── Footer ── */
.lyrics-footer {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.lyrics-footer__left { color: var(--text-dim); font-size: .82rem; }
.lyrics-footer__links { display: flex; gap: .75rem; flex-wrap: wrap; }

@media (max-width: 640px) {
  .lyrics-columns { grid-template-columns: 1fr; }
  .lyrics-footer { flex-direction: column; gap: .75rem; }
}
