:root {
  --bg: #19364b;
  --bg-deep: #0c2133;
  --bg-soft: #274b63;
  /* Update this if the hero image changes and you want the page base to match it. */
  --bg-hero-edge: #0a1b2c;
  --panel: rgba(247, 241, 231, 0.08);
  --panel-strong: rgba(247, 241, 231, 0.12);
  --panel-border: rgba(247, 241, 231, 0.16);
  --text: #f7f1e7;
  --muted: rgba(247, 241, 231, 0.78);
  --dim: rgba(247, 241, 231, 0.58);
  --accent: #d7b06e;
  --accent-soft: #e6cfaa;
  --button-text: #112739;
  --shadow: 0 26px 70px rgba(4, 17, 29, 0.3);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --maxw: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg-hero-edge);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top center, rgba(230, 207, 170, 0.13), transparent 22%),
    radial-gradient(circle at 15% 20%, rgba(247, 241, 231, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg-deep) 0%, #10283c 54%, var(--bg-hero-edge) 74%, var(--bg-hero-edge) 100%);
  background-color: var(--bg-hero-edge);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  padding: 0 18px 56px;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(16px);
}

.page::before {
  top: 90px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(230, 207, 170, 0.08);
}

.page::after {
  right: -120px;
  bottom: 120px;
  width: 300px;
  height: 300px;
  background: rgba(247, 241, 231, 0.05);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.nav-shell {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 7px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(11, 28, 43, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(247, 241, 231, 0.07);
  transform: translateY(-1px);
}

.nav-link[aria-current="page"] {
  color: var(--button-text);
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.hero-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.home-hero {
  position: relative;
  margin: 0 calc(50% - 50vw) 0;
  padding-bottom: clamp(340px, 26vw, 420px);
}

.hero-copy,
.card,
.media-card,
.intro-card {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(14, 36, 53, 0.9), rgba(11, 29, 44, 0.82));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy,
.card,
.intro-card {
  padding: 24px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
}

h3 {
  font-size: 1.5rem;
  line-height: 1.08;
}

.lede,
.intro-copy,
.copy,
.meta,
footer {
  color: var(--muted);
}

.lede,
.intro-copy {
  margin: 16px 0 0;
  max-width: 33rem;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
}

.music-page-title {
  font-size: clamp(2.35rem, 5vw, 3.45rem);
  line-height: 1.04;
}

.music-page-title + .intro-copy {
  margin-top: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.button {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: var(--button-text);
}

.button-secondary {
  border: 1px solid var(--panel-border);
  color: var(--text);
  background: rgba(247, 241, 231, 0.04);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.media-card {
  overflow: hidden;
  min-height: 100%;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-cover {
  width: min(100%, 280px);
  margin: 18px 0 16px;
  overflow: hidden;
  border: 1px solid rgba(247, 241, 231, 0.12);
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 42px rgba(4, 17, 29, 0.26);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-title {
  margin: 0 0 10px;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.artist-line {
  margin: -4px 0 12px;
  font-size: 0.98rem;
  color: var(--muted);
}

.track-note {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
}

.released-item + .released-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 241, 231, 0.08);
}

.embed-shell {
  margin: 18px 0 16px;
  overflow: hidden;
  border-radius: 14px;
}

iframe {
  display: block;
  width: 100%;
  border: 0;
}

.hero-backdrop {
  position: relative;
}

.hero-image-full {
  display: block;
  width: 100%;
  height: auto;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 24, 38, 0.03) 0%, rgba(9, 24, 38, 0.08) 34%, rgba(9, 24, 38, 0.32) 72%, rgba(9, 24, 38, 0.7) 92%, var(--bg-hero-edge) 100%);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 52% 28%, rgba(247, 241, 231, 0.06), transparent 16%),
    linear-gradient(180deg, rgba(12, 33, 51, 0) 54%, rgba(12, 33, 51, 0.14) 72%, rgba(12, 33, 51, 0.56) 100%);
}

.hero-overlay-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  padding: 24px 18px 48px;
}

.hero-nav {
  margin-bottom: 0;
}

.hero-copy-inline {
  width: min(100%, 760px);
  margin-top: 73%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-card-stack {
  margin-top: 18px;
}

.hero-footer {
  margin-top: 2.75rem;
}

.cards-2 {
  position: relative;
  z-index: 2;
}

.hero-copy-inline .eyebrow,
.hero-copy-inline h1,
.hero-copy-inline .lede {
  text-shadow: 0 10px 30px rgba(6, 18, 28, 0.6);
}

.hero-copy-inline h1 {
  font-size: clamp(2.35rem, 5vw, 3.45rem);
  line-height: 1.04;
}

.hero-image {
  aspect-ratio: 4 / 5;
}

.wide-image {
  aspect-ratio: 16 / 9;
}

.cards-2,
.cards-3,
.contact-list {
  display: grid;
  gap: 16px;
}

.card p,
.intro-card p {
  margin: 0;
}

.card p + p,
.intro-card p + p {
  margin-top: 14px;
}

.stat-line {
  color: var(--text);
  font-size: 1.05rem;
}

.pill-list,
.list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 14px;
  border: 1px solid rgba(247, 241, 231, 0.13);
  border-radius: 999px;
  background: rgba(247, 241, 231, 0.05);
  color: var(--muted);
  font-size: 0.94rem;
}

.list {
  flex-direction: column;
  gap: 14px;
}

.list-item,
.contact-row {
  padding: 16px 18px;
  border: 1px solid rgba(247, 241, 231, 0.12);
  border-radius: 18px;
  background: rgba(12, 33, 51, 0.22);
}

.list-item strong,
.contact-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
}

.list-item span,
.contact-row span,
.contact-row a {
  color: var(--accent-soft);
}

.contact-row a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

footer {
  text-align: center;
  font-size: 0.9rem;
}

@media (min-width: 780px) {
  .page {
    padding: 0 24px 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 779px) {
  .hero-copy,
  .card,
  .intro-card {
    padding: 20px;
  }

  .actions {
    flex-direction: column;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-backdrop {
    min-height: 560px;
    background-position: center top;
  }

  .hero-overlay-wrap {
    padding: 22px 18px 40px;
  }

  .home-hero {
    padding-bottom: clamp(320px, 54vw, 520px);
  }

  .hero-copy-inline {
    margin-top: 66%;
  }
}

@media (max-width: 560px) {
  .home-hero {
    padding-bottom: clamp(240px, 48vw, 360px);
  }

  .hero-copy-inline {
    margin-top: 63%;
  }
}
