:root {
  color-scheme: light;
  --bg: #f5f5f3;
  --surface: #ffffff;
  --soft: #ecece8;
  --text: #171715;
  --muted: #686862;
  --line: #deded8;
  --radius: 18px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--text); }
body { margin: 0; background: var(--bg); }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .72; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(245, 245, 243, .9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.site-brand:hover { opacity: 1; }
.site-brand-logo {
  display: block;
  object-fit: contain;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  width: 36px;
  height: 36px;
  padding: 3px;
}
@media (min-width: 768px) {
  .site-brand-logo { width: 40px; height: 40px; }
}
.site-brand-wordmark {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111111;
}
.header-link { font-size: 15px; color: var(--muted); }
.page { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 28px 0 72px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 13px; margin-bottom: 34px; }

h1, h2, p { margin-top: 0; }
h1 { font-size: clamp(34px, 6vw, 64px); line-height: 1.02; letter-spacing: -.045em; font-weight: 600; }
h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -.025em; }
.eyebrow { color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.muted, .app-note { color: var(--muted); }
.verdict { font-size: 19px; line-height: 1.5; color: var(--muted); max-width: 680px; }
.long-copy { font-size: 18px; line-height: 1.7; max-width: 820px; }
.app-note { font-size: 14px; }

.release-hero { display: grid; grid-template-columns: minmax(260px, 42%) 1fr; gap: clamp(36px, 7vw, 88px); align-items: center; }
.hero-cover-wrap { aspect-ratio: 1; overflow: hidden; border-radius: 5px; background: var(--soft); box-shadow: 0 24px 60px rgba(23,23,21,.12); }
.hero-cover { width: 100%; height: 100%; object-fit: cover; }
.hero-copy h1 { margin: 10px 0 18px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); margin-bottom: 24px; }
.hero-meta span + span::before { content: "·"; margin-right: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chips a { padding: 8px 12px; border-radius: 999px; background: var(--soft); font-size: 13px; }

.artist-hero { display: flex; align-items: center; gap: clamp(28px, 6vw, 72px); }
.artist-image { width: clamp(150px, 24vw, 260px); aspect-ratio: 1; border-radius: 50%; object-fit: cover; background: var(--soft); }
.artist-hero h1 { margin: 8px 0 18px; }

.content-section { margin-top: 64px; }
.facts { margin: 0; }
.facts div { display: grid; grid-template-columns: 160px 1fr; padding: 16px 0; border-top: 1px solid var(--line); }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; }

.catalog-hero { max-width: 850px; padding: 30px 0 20px; }
.catalog-hero p:not(.eyebrow) { font-size: 20px; line-height: 1.55; color: var(--muted); }
.genre-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 10px; }
.genre-nav a { padding: 10px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; font-size: 14px; }
.genre-nav span { color: var(--muted); margin-left: 4px; }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.section-heading span { color: var(--muted); }
.release-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.release-card { min-width: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.release-cover-link { display: block; aspect-ratio: 1; background: var(--soft); }
.release-cover { width: 100%; height: 100%; object-fit: cover; }
.cover-placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: var(--soft); color: var(--muted); font-size: 64px; font-weight: 600; }
.release-card-body { padding: 18px; }
.release-card h2 { font-size: 21px; margin: 6px 0 8px; }
.release-card p { line-height: 1.45; }
.release-card .muted { font-size: 13px; }
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 42px; }
.pagination a, .pagination span { min-width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); }
.pagination span { background: var(--text); color: white; }

.download-card { margin-top: 80px; padding: clamp(26px, 5vw, 52px); display: flex; align-items: center; justify-content: space-between; gap: 32px; background: var(--text); color: white; border-radius: 26px; }
.download-card h2 { margin-bottom: 10px; }
.download-card p { color: #c9c9c2; margin-bottom: 0; }
.button { flex: 0 0 auto; display: inline-flex; padding: 14px 20px; border-radius: 999px; background: white; color: var(--text); font-weight: 600; }
.site-footer { padding: 40px max(24px, calc((100vw - 1120px) / 2)) 56px; border-top: 1px solid var(--line); }
.site-footer-shell { width: min(1120px, 100%); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px 40px; }
.site-footer-brand { flex: 1 1 320px; min-width: 260px; }
.site-footer-brand-row { display: flex; align-items: center; gap: 10px; }
.site-footer-logo { border-radius: 8px; border: 1px solid rgba(0, 0, 0, 0.08); background: #ffffff; padding: 2px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.site-footer .site-brand-wordmark { font-size: 1.125rem; line-height: 1.5rem; }
.site-footer-disclaimer { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 420px; }
.site-footer-aside { flex: 1 1 320px; min-width: 260px; display: flex; flex-direction: column; gap: 18px; }
.site-footer-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.site-footer-links a { color: var(--muted); font-size: 13px; }
.site-footer-payment { display: flex; flex-direction: column; gap: 8px; }
.site-footer-payment-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.site-footer-payment-label { color: var(--muted); font-size: 12px; }
.site-footer-payment-row a { color: var(--muted); font-size: 12px; }
.site-payment-badge { display: inline-flex; align-items: center; justify-content: center; height: 22px; padding: 0 8px; border-radius: 4px; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .2px; }
.counter-pixel { position: absolute; left: -9999px; }

@media (max-width: 760px) {
  .page { width: min(100% - 28px, 1120px); }
  .site-header { padding-inline: 18px; }
  .site-footer { padding-inline: 18px; }
  .release-hero { grid-template-columns: 1fr; }
  .hero-cover-wrap { width: min(100%, 480px); margin-inline: auto; }
  .artist-hero { align-items: flex-start; flex-direction: column; }
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .release-card-body { padding: 14px; }
  .download-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 460px) {
  .release-grid { grid-template-columns: 1fr; }
  .facts div { grid-template-columns: 1fr; gap: 6px; }
}
