:root {
  --bg: #0c0c0e;
  --bg-soft: #161619;
  --fg: #f3f3f4;
  --muted: #a0a0a8;
  --accent: #e0457b;
  --border: #26262b;
  --radius: 14px;
  --max: 1180px;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.4rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-mark { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.site-nav { display: flex; gap: 1.4rem; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--fg); }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  max-width: 820px;
  margin: 2.5rem auto 1rem;
  padding: 1rem 1.4rem 0;
}
.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.hero h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  line-height: 1.12;
  margin: 1.3rem 0 0.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-sub { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ---------- Grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.4rem;
  max-width: var(--max);
  margin: 2.5rem auto;
  padding: 0 1.4rem 3rem;
}
.card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card-art { aspect-ratio: 1 / 1; overflow: hidden; background: #000; }
.card-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-meta { padding: 0.85rem 1rem 1.1rem; }
.card-meta h2 { font-size: 1.02rem; margin: 0 0 0.3rem; line-height: 1.25; }
.card-meta p { margin: 0; color: var(--muted); font-size: 0.86rem; }

/* ---------- Pages ---------- */
.page {
  max-width: 860px;
  margin: 2rem auto 4rem;
  padding: 0 1.4rem;
}
.page h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 0.6rem; }
.about p { color: #d4d4d8; font-size: 1.08rem; max-width: 60ch; }
.back {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
}
.back:hover { color: var(--fg); }

.show-head { display: flex; gap: 1.6rem; align-items: flex-start; flex-wrap: wrap; }
.show-art {
  width: 200px;
  height: 200px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}
.show-tag { color: var(--muted); font-size: 1.05rem; max-width: 52ch; margin: 0.2rem 0 1rem; }
.listen { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.btn {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--fg);
  transition: background 0.15s, border-color 0.15s;
}
.btn:hover { border-color: var(--accent); }
.btn.apple:hover { background: #6f33b5; border-color: #6f33b5; }
.btn.spotify:hover { background: #1db954; border-color: #1db954; color: #001; }

.player { margin-top: 2rem; border-radius: 14px; overflow: hidden; background: var(--bg-soft); }
.player iframe { display: block; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.4rem 3rem;
  text-align: center;
  color: var(--muted);
}
.site-footer .social { display: flex; gap: 1.4rem; justify-content: center; margin-bottom: 0.8rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--fg); }
.site-footer .contact { font-size: 0.9rem; margin: 0.4rem 0; }
.site-footer .copy { font-size: 0.8rem; margin: 0.6rem 0 0; opacity: 0.7; }

@media (max-width: 520px) {
  .show-art { width: 140px; height: 140px; }
  .site-nav { gap: 1rem; }
}
