:root {
  color-scheme: light;
  --background: #f7f3eb;
  --surface: #fffdf8;
  --text: #1f1a17;
  --muted: #6b6158;
  --accent: #8a4fff;
  --border: #e7ddd1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--background);
  color: var(--text);
}

.page {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.hero,
.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.8rem;
}

h1,
h2 {
  margin-top: 0;
}

h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.intro,
p,
li {
  line-height: 1.6;
}

.link-list {
  margin: 0;
  padding-left: 1.25rem;
}

.audio-layout {
  display: grid;
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.cover-art {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.track-list {
  padding-left: 1.25rem;
}

.track-list li + li {
  margin-top: 0.5rem;
}

a {
  color: var(--accent);
}

.contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 1rem, 760px);
    padding-top: 1rem;
  }

  .hero,
  .section {
    padding: 1.25rem;
  }

  .audio-layout {
    grid-template-columns: 1fr;
  }
}
