:root {
  --black: #070707;
  --charcoal: #111417;
  --panel: rgba(18, 20, 23, 0.82);
  --text: #f8f2e8;
  --muted: rgba(248, 242, 232, 0.72);
  --soft: rgba(248, 242, 232, 0.52);
  --blue: #8eb5ca;
  --blue-deep: #213845;
  --amber: #dba667;
  --line: rgba(248, 242, 232, 0.16);
  --shadow: rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(219, 166, 103, 0.14), transparent 28rem),
    radial-gradient(circle at 80% 0%, rgba(142, 181, 202, 0.12), transparent 30rem),
    linear-gradient(180deg, #050506, #111417 52%, #070707);
}

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

audio {
  width: 100%;
  min-width: 0;
  accent-color: var(--amber);
}

.wrap {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 44px, 1120px);
  margin: 0 auto;
  padding: 120px 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  font-size: clamp(2.75rem, 6.7vw, 7.25rem);
  line-height: 0.94;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.68);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  line-height: 1;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(248, 242, 232, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-player {
  max-width: 780px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(219, 166, 103, 0.38);
  border-radius: 24px;
  background: rgba(7, 7, 7, 0.64);
  box-shadow: 0 26px 80px var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-player span {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-player strong {
  display: block;
  font-size: 1.2rem;
}

section {
  padding: clamp(58px, 9vw, 108px) 0;
}

.message-section {
  background:
    linear-gradient(180deg, rgba(17, 20, 23, 0.92), rgba(7, 7, 7, 0.96));
}

.message-section p {
  max-width: 760px;
}

.quote-section {
  padding: clamp(40px, 7vw, 86px) 0;
  background:
    linear-gradient(135deg, rgba(142, 181, 202, 0.1), rgba(219, 166, 103, 0.1)),
    rgba(255, 255, 255, 0.025);
}

blockquote {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

blockquote span {
  display: block;
  height: 40px;
  color: var(--amber);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 6rem;
  line-height: 0.8;
}

blockquote p {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.02;
}

.song-layout,
.future-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.song-card,
.lyrics-card,
.presence-list {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
}

.song-card,
.lyrics-card {
  padding: clamp(22px, 4vw, 38px);
}

.song-card audio {
  margin-top: 18px;
}

.lyrics {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.lyrics p {
  margin: 0;
  color: rgba(248, 242, 232, 0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.lyrics .lyrics-note {
  padding: 14px 16px;
  border-left: 3px solid var(--amber);
  color: var(--soft);
  background: rgba(219, 166, 103, 0.08);
}

.lyrics .lyrics-ending {
  margin-top: 12px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(219, 166, 103, 0.26);
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.25;
}

.future-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 10%, rgba(142, 181, 202, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(17, 20, 23, 0.94), rgba(7, 7, 7, 0.98));
}

.presence-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.presence-list div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.presence-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.08rem;
}

.presence-list span {
  color: var(--muted);
  line-height: 1.55;
}

.love-forms-section {
  padding: clamp(36px, 7vw, 72px) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(219, 166, 103, 0.06), rgba(142, 181, 202, 0.08)),
    #08090a;
}

.love-forms-card {
  display: grid;
  grid-template-columns: minmax(180px, 320px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
}

.love-forms-image {
  overflow: hidden;
  border: 1px solid rgba(219, 166, 103, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 74px rgba(0, 0, 0, 0.34);
}

.love-forms-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.love-forms-card p {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 5.25rem);
  line-height: 1;
  text-wrap: balance;
}

.footer {
  display: grid;
  gap: 8px;
  place-items: center;
  padding: 34px 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: #050506;
}

.footer strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.footer span {
  color: var(--soft);
  line-height: 1.5;
}

@media (max-width: 840px) {
  .hero {
    min-height: 92vh;
  }

  .hero-image img {
    object-position: 58% center;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-bottom: 32px;
  }

  .hero-player,
  .song-layout,
  .future-grid,
  .love-forms-card {
    grid-template-columns: 1fr;
  }

  .hero-player {
    gap: 14px;
    padding: 16px;
  }

  h1 {
    font-size: clamp(2.36rem, 11vw, 4.3rem);
  }

  section {
    padding: 54px 0;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.22)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12) 36%, rgba(0, 0, 0, 0.92));
  }

  .hero-copy,
  p {
    font-size: 1rem;
  }

  .song-card,
  .lyrics-card {
    border-radius: 22px;
    padding: 20px;
  }

  .love-forms-card {
    text-align: center;
  }
}
