:root {
  --bg: #0f0d12;
  --panel: #191521;
  --panel-light: #241d30;
  --text: #f8f0e8;
  --muted: #cbbcc9;
  --accent: #f2a65a;
  --accent-2: #ffdfba;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --page-pad: clamp(1rem, 5vw, 6rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(242,166,90,.24), transparent 36rem),
    radial-gradient(circle at bottom right, rgba(156,98,255,.18), transparent 32rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, iframe, audio { max-width: 100%; }
img { display: block; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .9rem clamp(1rem, 4vw, 4rem);
  background: rgba(15,13,18,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}

.site-nav { display: flex; gap: 1.25rem; align-items: center; }
.site-nav a { color: var(--muted); font-weight: 700; font-size: .95rem; }
.site-nav a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: .55rem .85rem;
  font: inherit;
  font-weight: 800;
}

.section { padding: clamp(3.25rem, 8vw, 8rem) var(--page-pad); }
.hero {
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  margin: 0 0 1rem;
}

h1, h2, h3 { line-height: 1.05; margin: 0; }
h1, h2 { font-family: "Playfair Display", serif; }
h1 { font-size: clamp(3rem, 9vw, 8.5rem); max-width: 9ch; }
h2 { font-size: clamp(2.25rem, 5vw, 4.75rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.35rem; }

.hero-text, .section p { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.08rem); max-width: 42rem; }
.button-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease;
}
.primary { background: var(--accent); color: #170e09; }
.secondary { border: 1px solid var(--line); color: var(--text); }
.button:hover, .social-grid a:hover, .listen-strip a:hover { transform: translateY(-2px); }

.cover-card {
  width: min(100%, 520px);
  justify-self: center;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: clamp(.7rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
}
.cover-placeholder {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(242,166,90,.34), rgba(85,64,122,.32)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
  border: 1px dashed rgba(255,255,255,.4);
}
.cover-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listen-strip {
  margin: 0 var(--page-pad);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255,255,255,.06);
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  justify-content: center;
}
.listen-strip span { color: var(--muted); font-weight: 700; margin-right: .5rem; }
.listen-strip a, .social-grid a {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem .9rem;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease;
}

.two-column, .about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.track-card, .about-panel, .quote-panel, .contact-section {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}
.track-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}
.track-card p { margin: .35rem 0 0; }
.audio-player audio { width: 100%; }

.video-section { text-align: center; }
.video-section p { margin-left: auto; margin-right: auto; }
.video-container {
  position: relative;
  width: min(100%, 960px);
  aspect-ratio: 16 / 9;
  margin: 2rem auto 1rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.quote-panel blockquote {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.contact-section { text-align: center; }
.contact-section p { margin-left: auto; margin-right: auto; }
.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer a { color: var(--text); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + .6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    background: rgba(25,21,33,.98);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
  }
  .site-nav a {
    padding: .85rem 1rem;
    border-radius: .75rem;
    text-align: center;
  }
  .site-nav a:hover { background: rgba(255,255,255,.06); }
  .site-nav.open { display: flex; }
  .hero, .two-column, .about-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 3.75rem; }
  .hero-copy { text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  h1 { max-width: none; }
  .button-row { justify-content: center; }
}

@media (max-width: 560px) {
  :root { --page-pad: 1rem; }
  .site-header { padding: .75rem 1rem; }
  .section { padding-top: 3rem; padding-bottom: 3rem; }
  .hero { gap: 1.5rem; }
  h1 { font-size: clamp(2.65rem, 16vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .button-row { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .listen-strip {
    align-items: stretch;
    justify-content: stretch;
    gap: .55rem;
  }
  .listen-strip span {
    width: 100%;
    text-align: center;
    margin: 0 0 .25rem;
  }
  .listen-strip a, .social-grid a {
    flex: 1 1 calc(50% - .55rem);
    text-align: center;
    padding: .72rem .6rem;
  }
  .track-card, .about-panel, .quote-panel, .contact-section { border-radius: 1.15rem; }
  .cover-card { border-radius: 1.25rem; }
  .cover-placeholder { border-radius: .9rem; }
  .video-container { border-radius: 1rem; }
  .site-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
  .listen-strip a, .social-grid a { flex-basis: 100%; }
}
