/* =============================================================
   DESIGN TOKENS
   ============================================================= */

:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f625f;
  --paper: #ffffff;
  --panel: #ffffff;
  --line: #dedbd2;
  --gold: #d4ad35;
  --red: #b84735;
  --green: #506f5a;
  --transition: 150ms ease;
}


/* =============================================================
   RESET & BASE
   ============================================================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

main {
  min-height: 70vh;
}



/* =============================================================
   LAYOUT
   ============================================================= */

.main-panel {
  width: min(100% - clamp(20px, 4vw, 56px), 1280px);
  margin: clamp(20px, 3vw, 36px) auto clamp(48px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: clip;
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 68vh;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.hero h1,
.page-heading h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.5rem, 8vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-art {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.hero-art img {
  width: min(62%, 220px);
  height: auto;
}

.section-grid,
.page-heading,
.page-grid,
.prose,
.content-list,
.contact-form {
  padding: clamp(36px, 6vw, 72px) clamp(20px, 4vw, 56px);
}

.centered-page {
  width: min(100% - clamp(40px, 8vw, 112px), 980px);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

.page-heading.centered-page {
  padding-bottom: clamp(18px, 3vw, 34px);
}

.page-heading.centered-page p:not(.eyebrow),
.home-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.home-intro {
  text-align: center;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading-centered {
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.release-grid {
  width: 100%;
}


/* =============================================================
   BUTTONS & UTILITIES
   ============================================================= */

.eyebrow,
.card-kicker {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.streaming-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity var(--transition), background var(--transition);
}

.button:hover {
  opacity: 0.8;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.primary:hover {
  opacity: 1;
  background: var(--muted);
  border-color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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


/* =============================================================
   ARTISTS
   ============================================================= */

.breadcrumbs {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  color: var(--muted);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li + li::before {
  content: "›";
  color: var(--line);
}

.breadcrumbs a {
  text-decoration: none;
}

.prose p {
  margin: 0;
  color: var(--muted);
}


/* =============================================================
   RELEASES
   ============================================================= */

.release-detail {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 4vw, 56px);
}

.release-detail > img,
.artist-heading > img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.artist-heading > img {
  width: 96px;
}


/* =============================================================
   POSTS
   ============================================================= */

.post-hero-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-hero {
  min-height: clamp(260px, 38vw, 430px);
  align-content: center;
  gap: 16px;
}

.post-hero-meta {
  color: rgba(255, 255, 255, 0.78);
}

.post-content {
  padding-top: clamp(40px, 6vw, 72px);
}

.related-posts {
  width: min(100% - clamp(40px, 8vw, 112px), 1180px);
  margin: 0 auto clamp(56px, 7vw, 92px);
}

.related-posts h2 {
  margin: 0 0 clamp(22px, 3vw, 34px);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: 0;
}

.related-post-grid {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}


/* =============================================================
   STATIC PAGES (about, contact, migrated WP content)
   ============================================================= */

.content-list {
  display: grid;
  gap: 20px;
  max-width: 980px;
}

.content-list article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.content-list h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0;
}

.content-list h2 a {
  text-decoration: none;
}

.content-list p {
  margin: 0;
  color: var(--muted);
}

.migrated-content .page-heading {
  padding-bottom: 24px;
}

.wp-content {
  width: min(1080px, calc(100% - clamp(40px, 8vw, 112px)));
  margin: 0 auto;
  padding: 0 0 clamp(48px, 7vw, 88px);
}

.wp-content :where(h1, h2, h3, h4, h5, h6) {
  margin: 1.4em 0 0.45em;
  line-height: 1.1;
  letter-spacing: 0;
}

.wp-content :where(p, ul, ol, figure, blockquote) {
  margin: 0 0 1rem;
}

.wp-content :where(img) {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.wp-content :where(.wp-block-image, figure) {
  max-width: 100%;
}

.wp-content :where(.has-text-align-center, .stk-block-heading__text.has-text-align-center) {
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
}



/* =============================================================
   RESPONSIVE
   ============================================================= */

/* --- 760px: single-column layout reflow --- */
@media (max-width: 760px) {
  .section-grid,
  .hero {
    grid-template-columns: 1fr;
  }

  .centered-page {
    width: min(100% - 40px, 980px);
  }

  .hero {
    min-height: auto;
  }

  .release-detail {
    grid-template-columns: 1fr;
  }

  .release-copy {
    justify-items: start;
    text-align: left;
  }

  .artist-profile-card > div {
    justify-items: start;
    text-align: left;
  }

}
