/* Base / reset / layout primitives */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.65;
  color: var(--paper-dim);
  background: var(--ink-900);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(216, 162, 74, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 0%, rgba(90, 120, 200, 0.06), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--paper);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 1.1rem + 0.6vw, 1.45rem); }

p { text-wrap: pretty; }

a { color: var(--gold-300); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold-400); }

img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold-500); color: var(--ink-900); padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Copyright marks: Inter lacks ℗ (it falls back smaller than ©); Helvetica/Arial
   draw © and ℗ at a matching size, so render both marks from that font. */
.cmark { font-family: Helvetica, Arial, sans-serif; }

.eyebrow, .hero__eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem;
  font-weight: 600; color: var(--gold-400);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  cursor: pointer; border: 1px solid transparent; transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: #1a1204; box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-2px); color: #1a1204; filter: brightness(1.06); }
.btn--ghost { border-color: var(--line); color: var(--paper); background: rgba(255, 255, 255, 0.02); }
.btn--ghost:hover { border-color: var(--gold-line); color: var(--paper); background: var(--gold-soft); }

.link-arrow { font-weight: 600; color: var(--gold-300); }
.link-arrow:hover { color: var(--gold-400); }

/* Section rhythm */
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--muted { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015)); }
.section--band { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.section__head {
  display: flex; align-items: end; justify-content: space-between; gap: 1.5rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.section__title { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2rem); }
.section__subtitle { color: var(--muted); margin-top: 0.4rem; max-width: 46ch; }
.section__cta { font-weight: 600; white-space: nowrap; }

/* Page headers */
.page-head { padding-block: clamp(2.5rem, 5vw, 4rem) 0; }
.page-head h1 { margin-bottom: 0.6rem; }
.page-head__lead { color: var(--muted); max-width: 62ch; font-size: 1.1rem; }
.page-head__meta { color: var(--muted-2); font-size: 0.9rem; }
.page-head--center { text-align: center; }
.page-head--center .page-head__lead { margin-inline: auto; }

.chip {
  display: inline-block; padding: 0.3rem 0.75rem; border-radius: 999px;
  background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-300);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em;
}
.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }

/* Prose (legal / blog / album description) */
.prose { max-width: 70ch; color: var(--paper-dim); }
.prose--article { max-width: var(--article-w); }
/* Article (blog/legal) pages: title shares the body's measure and is centered. */
.page-article .page-head .wrap { max-width: var(--article-w); text-align: center; }
.prose h2 { margin-top: 2.4rem; margin-bottom: 0.8rem; }
.prose h3 { margin-top: 1.8rem; margin-bottom: 0.6rem; color: var(--gold-300); }
.prose h4 { margin-top: 1.4rem; margin-bottom: 0.4rem; font-family: var(--font-sans); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.2rem 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote {
  border-left: 3px solid var(--gold-line); padding-left: 1.2rem; margin: 1.5rem 0;
  color: var(--paper); font-family: var(--font-serif); font-size: 1.2rem;
}
.notice {
  background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; margin-bottom: 1.6rem; color: var(--paper-dim); font-size: 0.95rem;
}
.notice code { background: rgba(0,0,0,0.3); padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.85em; }
