:root {
  --bg: #0e0f13;
  --surface: #181a21;
  --text: #eceef3;
  --muted: #9aa0ad;
  --accent: #6ee7b7;
  --border: #262a34;
  --radius: 12px;
  --maxw: 960px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

/* Header / footer */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}
.brand:hover { text-decoration: none; }
/* sml_logo.svg is already white, built for the dark header. */
.brand-logo { height: 34px; width: auto; }
.site-header nav a { margin-left: 1.25rem; color: var(--muted); }
.site-header nav a:hover { color: var(--text); }
.site-footer {
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.muted { color: var(--muted); }

/* Hero / intros */
.hero, .page-intro { margin-bottom: 2.5rem; }
.hero { text-align: center; }
.hero-title { margin: 0 0 1rem; }
/* title.svg is the full white lockup (mascot + wordmark), built for dark bg. */
.hero-logo { width: 100%; max-width: 360px; height: auto; }
.hero p { max-width: 46ch; margin-left: auto; margin-right: auto; }
.page-intro h1 { font-size: 2.4rem; margin-bottom: 0.5rem; }

.button {
  display: inline-block;
  background: var(--accent);
  color: #0e0f13;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.button:hover { text-decoration: none; opacity: 0.9; }

/* Album grid */
.album-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.album-card {
  flex: 0 1 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--text);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.album-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  text-decoration: none;
}
.album-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}
.album-card h3 { margin: 0; font-size: 1.05rem; }

/* Single album */
.album-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.album-cover {
  width: 260px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.album-meta h1 { margin: 0 0 0.25rem; font-size: 2rem; }
.album-artist { font-size: 1.1rem; color: var(--muted); margin: 0 0 0.5rem; }
.album-section { margin-top: 2.25rem; }
.album-section h2 { font-size: 1.25rem; border-bottom: 1px solid var(--border); padding-bottom: 0.4rem; }

/* Stores */
.store-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.store-link {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  color: var(--text);
}
.store-link:hover { border-color: var(--accent); text-decoration: none; }

/* Tracks */
.track-list { list-style: none; counter-reset: none; padding: 0; margin: 0; }
.track {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}
.track-num { width: 2rem; color: var(--muted); text-align: right; font-variant-numeric: tabular-nums; }
.track-title { flex: 1; }
.track-time { color: var(--muted); font-variant-numeric: tabular-nums; }
