:root {
  --paper: #e9e0d2;
  --ink: #1f1f1f;
  --navy: #0e1625;
  --gold: #a78b62;
  --soft: rgba(255,255,255,.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, sans-serif;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  z-index: 999;
  background-image: radial-gradient(rgba(0,0,0,.25) 1px, transparent 1px);
  background-size: 3px 3px;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 26px 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  color: var(--soft);
  backdrop-filter: blur(10px);
}

.brand,
.nav a,
.small-label {
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 11px;
}

.nav a {
  color: inherit;
  text-decoration: none;
  margin-left: 28px;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 2.5s ease;
  transform: scale(1.04);
}

.hero-bg.active {
  opacity: .55;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 2.5s ease;
  transform: scale(1.03);
  filter: brightness(.62);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
  linear-gradient(
    rgba(10,15,28,.28),
    rgba(10,15,28,.78)
  );
}

.hero-bg.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--paper);
  padding: 24px;
}

.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 76px;
  margin: 0 0 -36px;
  opacity: .45;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(74px, 12vw, 180px);
  line-height: .78;
  letter-spacing: .06em;
  margin: 0;
}

h1 span {
  display: block;
}

.artist {
  letter-spacing: .42em;
  font-size: 12px;
  margin-top: 34px;
}

.hero-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.12;
  margin: 34px 0;
}

.hero-buttons a {
  display: inline-block;
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  margin: 12px 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(233,224,210,.5);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  color: rgba(233,224,210,.7);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

section {
  padding: 120px 8vw;
}

.song-section,
.signup-section {
  text-align: center;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 7vw, 94px);
  font-weight: 400;
  line-height: .92;
  margin: 18px 0;
}

.section-copy {
  opacity: .68;
}

.player-card {
  max-width: 520px;
  margin: 42px auto 24px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.28);
}

.fake-player {
  height: 2px;
  background: rgba(0,0,0,.18);
  margin-top: 24px;
}

.fake-player span {
  display: block;
  width: 32%;
  height: 2px;
  background: var(--navy);
}

.stream-links a,
footer a {
  color: var(--ink);
  margin: 0 14px;
  text-decoration: none;
  font-size: 13px;
}

.story-section {
  background: var(--navy);
  color: var(--paper);
  display: grid;
  gap: 42px;
}

.quote-card {
  max-width: 720px;
  padding: 46px;
  border: 1px solid rgba(233,224,210,.16);
  margin-left: auto;
}

.quote-card:nth-child(2) {
  margin-left: 0;
  margin-right: auto;
}

.quote-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 76px);
  line-height: .95;
  margin: 0;
}

.quote-card.paper {
  background: rgba(233,224,210,.08);
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-section p {
  font-size: 18px;
  line-height: 1.8;
}

.signup-section {
  background: #ded2bf;
}

form {
  margin-top: 34px;
}

input,
button {
  border: 1px solid rgba(0,0,0,.22);
  padding: 16px 18px;
  background: transparent;
  font-family: Inter, sans-serif;
}

input {
  width: min(320px, 80vw);
}

button {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .18em;
}

footer {
  padding: 60px 8vw;
  text-align: center;
  background: var(--navy);
  color: var(--paper);
}

footer a {
  color: var(--paper);
}

footer small {
  display: block;
  margin-top: 24px;
  opacity: .58;
}

@media (max-width: 760px) {
  .nav {
    padding: 22px;
  }

  .nav nav {
    display: none;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 32px;
  }
}
.player-card {
  max-width: 720px;
  margin: auto;
  padding: 42px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.player-card h3 {
  font-family:
  "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 24px;
}

audio {
  width: 100%;
  margin-top: 18px;
  opacity: .92;
}

.buy-section {
  margin-top: 34px;
}

.buy-section p {
  opacity: .72;
  margin-bottom: 18px;
}

.buy-button {
  display: inline-block;
  padding: 14px 26px;
  background: #d8ccb7;
  color: #111;
  text-decoration: none;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  transition: .25s ease;
}

.buy-button:hover {
  transform: translateY(-2px);
  opacity: .88;
}

.stream-links {
  margin-top: 34px;
}

.stream-links a {
  margin: 0 14px;
}

.disabled-link {
  opacity: .35;
  cursor: default;
}
.support-note {
  margin-top: 18px;
  font-size: 13px;
  opacity: .58;
}

.cover-art {
  width: 100%;
  max-width: 360px;
  display: block;
  margin: 24px auto 30px;
  border-radius: 2px;
  box-shadow:
  0 25px 60px rgba(0,0,0,.35);
}
@media (max-width: 760px)