/* Home page layout rhythm */
:root {
  --home-gutter: clamp(18px, 3.6vw, 64px);
  --home-wide: 1760px;
  --home-reading: 1760px;
}

.hero {
  min-height: clamp(620px, 84vh, 900px);
  align-items: center;
  justify-items: center;
  padding: clamp(92px, 8vw, 126px) var(--home-gutter) clamp(54px, 6vw, 82px);
}

.hero-media {
  opacity: 0.86;
  filter: saturate(0.92) brightness(0.82) contrast(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 0, 0, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-content {
  width: min(100%, var(--home-wide));
  max-width: var(--home-wide);
  display: grid;
  justify-items: center;
  text-align: center;
  padding-bottom: 0;
}

.hero-logo-play {
  width: min(640px, 62vw);
  margin: 0 auto clamp(22px, 3vw, 38px);
  transform-origin: center;
}

.hero-logo {
  max-height: 290px;
  object-position: center;
  opacity: 0.94;
  filter: invert(1) drop-shadow(0 18px 40px rgba(0, 0, 0, 0.62));
}

.hero-actions {
  justify-content: center;
  gap: 12px;
}

.hero-actions .primary-action,
.hero-actions .secondary-action {
  width: clamp(150px, 12vw, 190px);
  min-height: 48px;
  justify-content: center;
  padding-inline: 16px;
  border: 1px solid rgba(246, 242, 234, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.28);
  color: rgba(246, 242, 234, 0.96);
  font-size: 0.86rem;
  letter-spacing: 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-actions .primary-action:hover,
.hero-actions .secondary-action:hover {
  border-color: rgba(246, 242, 234, 0.78);
  background:
    linear-gradient(135deg, rgba(229, 27, 63, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(0, 0, 0, 0.42);
  transform: translateY(-1px);
}

main > .section {
  padding-inline: var(--home-gutter);
}

#about .about-body,
#media .section-heading,
#media .mixset-grid,
#portfolio .section-heading,
#portfolio .release-preview-card,
#contact .section-heading,
#contact .contact-direct {
  width: min(100%, var(--home-reading));
  margin-inline: auto;
}

#about.split {
  display: block;
}

#about .about-body {
  display: grid;
  gap: clamp(18px, 2.6vw, 34px);
  justify-items: center;
  text-align: center;
}

#about .eyebrow,
#about .about-copy {
  width: min(100%, 1180px);
  margin-inline: auto;
}

#about .about-copy p:not(.eyebrow) {
  max-width: 1180px;
  margin-inline: auto;
}

#artist .section-heading,
#media .section-heading,
#portfolio .section-heading,
#contact .section-heading {
  display: grid;
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

#artist .section-heading > div,
#media .section-heading > div,
#portfolio .section-heading > div,
#contact .section-heading > div {
  display: grid;
  justify-items: center;
  gap: 10px;
}

#artist .section-heading .eyebrow,
#media .section-heading .eyebrow,
#portfolio .section-heading .eyebrow,
#contact .section-heading .eyebrow {
  margin: 0;
  margin-inline: auto;
}

#artist .section-heading h2,
#media .section-heading h2,
#portfolio .section-heading h2,
#contact .section-heading h2 {
  margin: 0;
  text-align: center;
}

#artist .artist-label-row {
  margin-top: 0;
}

#media .mixset-grid {
  gap: clamp(18px, 2vw, 28px);
}

#portfolio .release-preview-card {
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(28px, 4.4vw, 72px);
  padding: clamp(24px, 3vw, 42px);
}

#portfolio .release-preview-card h3 {
  font-size: clamp(2rem, 4vw, 4rem);
}

#portfolio .release-preview-card p {
  max-width: 760px;
}

#contact .section-heading h2 {
  max-width: 100%;
}

@media (max-width: 820px) {
  .hero {
    min-height: clamp(560px, 78vh, 720px);
  }

  .hero-logo-play {
    width: min(500px, 84vw);
  }

  #portfolio .release-preview-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    width: min(100%, 320px);
  }

  .hero-actions a {
    flex: 1 1 140px;
    justify-content: center;
  }
}
