/* ============================================================================
   AMARI BANDZ — lyrics page shell.

   Shared by every public/*-lyrics.html. Load it AFTER /tokens.css:

     <link rel="stylesheet" href="/tokens.css" />
     <link rel="stylesheet" href="/lyrics.css" />

   This was previously a 22-line <style> block duplicated byte-for-byte across
   six pages, which is exactly how a rebrand misses pages. Edit here once.
   Tokens only — no raw hex, no rgba() literals, no shadows, no blurs.
   ========================================================================== */

:root {
  --f-ui:   'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-mono: 'Geist Mono', ui-monospace, SFMono-Regular, 'JetBrains Mono', monospace;
}

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

body {
  font-family: var(--f-ui);
  font-size: 15px;
  line-height: 1.55;
  background: var(--ink);
  color: var(--fg);
  min-height: 100vh;
  padding: 56px 20px 80px;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* The atmosphere is the shared .mesh layer from tokens.css — one static amber
   ray, no animated blurred blobs. Nothing here paints a background. */

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max-w-prose);
  margin: 0 auto;
}

/* ---- header ------------------------------------------------------------- */

.eyebrow {
  color: var(--signal);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .24em;
  text-indent: .24em;
  text-transform: uppercase;
}

.hd {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  margin: 16px 0 24px;
}

/* cover art: square plate, 0 radius, one hairline. no shadow. */
.hd .cov {
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
  object-fit: cover;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
}

h1 {
  font-weight: 700;
  font-size: clamp(28px, 6.5vw, 56px);
  line-height: .96;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--fg);
}

.art {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .10em;
  text-indent: .10em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-top: 8px;
}

/* ACT BUTTON — flat --signal fill, mandatory --on-signal label. */
.stream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 16px;
  padding: 0 20px;
  background: var(--signal);
  color: var(--on-signal);
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--dur-fast) var(--ease);
}
.stream:active { background: var(--signal-press); }

/* ---- lyrics body -------------------------------------------------------- */

.lyrics {
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--edge);
}

/* section marks read as the page's structural signal */
.sec {
  color: var(--signal);
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: .10em;
  text-indent: .10em;
  text-transform: uppercase;
  margin: 32px 0 12px;
}
.sec:first-child { margin-top: 0; }

.ln {
  color: var(--fg);
  font-size: 16px;
  line-height: 1.72;
}

.sp { height: 16px; }

/* ---- footer ------------------------------------------------------------- */

footer {
  text-align: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--edge);
  color: var(--fg-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
footer a {
  color: var(--fg-2);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
footer a:hover { color: var(--signal); }

@media (max-width: 520px) {
  .hd { gap: 16px; }
  .hd .cov { width: 92px; height: 92px; flex: 0 0 92px; }
}
