/* STOR — Grindarna till Ithaka — album smart-link
   Mono brand: black bg, white Helvetica bold. One screen, scrollable. */

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

:root {
  --bg: #000;
  --fg: #fff;
  --dim: rgba(255, 255, 255, 0.5);
  --faint: rgba(255, 255, 255, 0.16);
  --border: rgba(255, 255, 255, 0.85);
  --font: Helvetica, "Helvetica Neue", Arial, sans-serif;
  --maxw: 460px;
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 700;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); }

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

/* ── Layout ─────────────────────────────────────────────── */
.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 5vw, 44px);
  padding: clamp(40px, 9vw, 80px) clamp(20px, 5vw, 40px) clamp(56px, 9vw, 96px);
  /* subtle lit-from-the-side vignette, echoing the poster — still mono */
  background: radial-gradient(125% 80% at 72% 16%, #1c1c1c 0%, #0a0a0a 46%, #000 100%);
}

.hero,
.dsp,
.social {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Press strip (acclaim) ──────────────────────────────── */
.press {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 4vw, 22px);
  padding-bottom: clamp(24px, 5vw, 34px);
  margin-bottom: clamp(24px, 5vw, 34px);
  border-bottom: 1px solid var(--faint);
}

.press-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.press-pub {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}

/* GP lighthouses */
.lighthouses { display: inline-flex; gap: 5px; align-items: flex-end; }
.fyr {
  width: 15px;
  height: 23px;
  fill: var(--fg);
  display: block;
}

/* DN 0–5 scale with the 4 ringed */
.dn-scale {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  font-size: clamp(13px, 1.7vw, 15px);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums lining-nums;
}
.dn-scale .on {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.95em;
  height: 1.95em;
  border: 2px solid var(--fg);
  border-radius: 50%;
  line-height: 1;
}

/* Di tiles */
.di-row { display: inline-flex; gap: 5px; }
.di {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 23px;
  border: 1.5px solid var(--border);
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1;
}

/* ── Cover + title ──────────────────────────────────────── */
.cover {
  width: clamp(220px, 62vw, 340px);
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  user-select: none;
}

.kicker {
  margin-top: clamp(22px, 4vw, 32px);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim);
}

.title {
  margin-top: 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(34px, 10vw, 62px);
  line-height: 0.94;
  letter-spacing: 0.005em;
}

.artist {
  margin-top: clamp(14px, 2.5vw, 18px);
  text-transform: uppercase;
  font-size: clamp(15px, 2.2vw, 18px);
  letter-spacing: 0.34em;
  /* optical: caps tracking pushes the block right; nudge back */
  text-indent: 0.34em;
}

.credit {
  margin-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ── DSP buttons ────────────────────────────────────────── */
.dsp { gap: 12px; }

.btn {
  width: 100%;
  padding: clamp(15px, 2.4vw, 18px);
  border: 2px solid var(--border);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: 0.1em;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: var(--fg); color: var(--bg); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--dim); outline-offset: 3px; }

/* ── Live callout ───────────────────────────────────────── */
.live {
  width: 100%;
  max-width: var(--maxw);
  border: 2px solid var(--border);
  padding: clamp(16px, 2.6vw, 20px) clamp(18px, 3vw, 24px);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 12px;
  transition: background 0.18s ease, color 0.18s ease;
}
.live:hover { background: var(--fg); color: var(--bg); }
.live:focus-visible { outline: 2px solid var(--dim); outline-offset: 3px; }
.live-kicker {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  width: 100%;
}
.live-main {
  font-size: clamp(17px, 2.6vw, 21px);
  letter-spacing: 0.01em;
}
.live-meta {
  margin-left: auto;
  font-size: clamp(13px, 1.8vw, 15px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ── Socials ────────────────────────────────────────────── */
.social {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.social a {
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, opacity 0.18s ease;
}
.social a:hover { border-bottom-color: var(--border); }
.social a:focus-visible { outline: 2px solid var(--dim); outline-offset: 3px; }

/* ── More platforms ─────────────────────────────────────── */
.more {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.18s ease;
}
.more:hover { color: var(--fg); }
.more:focus-visible { outline: 2px solid var(--dim); outline-offset: 3px; }

/* ── Footer ─────────────────────────────────────────────── */
.foot {
  margin-top: clamp(8px, 2vw, 18px);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: center;
}

/* ── Entrance ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.fi-1 { animation-delay: 0.05s; }
.fi-2 { animation-delay: 0.22s; }
.fi-3 { animation-delay: 0.38s; }
.fi-4 { animation-delay: 0.52s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { animation: none; opacity: 1; transform: none; }
  .btn, .live, .social a, .more { transition: none; }
}
