@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Inter:wght@500;600;700&display=swap');

* { box-sizing: border-box; }

:root {
  --paper: #f3eee4;
  --paper-2: #e3e0db;
  --ink: #24231e;
  --muted: #727665;
  --sage: #7c8866;
  --sage-dark: #657054;
  --line: rgba(36,35,30,.18);
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(circle at 25% 20%, rgba(0,0,0,.13) 0 1px, transparent 1.2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.75) 0 1px, transparent 1.2px),
    linear-gradient(115deg, transparent 0 48%, rgba(0,0,0,.035) 50%, transparent 52%);
  background-size: 5px 5px, 8px 8px, 260px 260px;
  mix-blend-mode: multiply;
}

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

.topbar {
  height: 78px;
  background: rgba(246, 242, 234, .94);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14vw;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.nav, .socials {
  display: flex;
  align-items: center;
}

.nav { gap: 48px; }
.socials { gap: 27px; }

.nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.socials svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a:nth-child(2) svg circle,
.streaming a:first-child svg circle { fill: currentColor; stroke: none; }

.socials a:nth-child(2) svg path,
.streaming a:first-child svg path { stroke: var(--paper); }

.socials a:nth-child(3) svg rect,
.streaming a:last-child svg rect { fill: currentColor; stroke: none; }

.socials a:nth-child(3) svg path,
.streaming a:last-child svg path { fill: var(--paper); stroke: none; }

.hero {
  min-height: 595px;
  display: grid;
  grid-template-columns: 46% 54%;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: 6vw;
  align-self: center;
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--sage-dark);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.hero h1, .distance-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .87;
}

.hero h1 { font-size: clamp(78px, 9vw, 128px); }

.scribble {
  width: min(450px, 80vw);
  height: 46px;
  margin: 17px 0 31px;
}

.scribble path {
  fill: none;
  stroke: rgba(87, 97, 73, .75);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.release {
  margin: 43px 0 24px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 170px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.filled {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}

.hero-photo {
  min-height: 595px;
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: saturate(.96) contrast(.98) brightness(1.01);
}

.album-section {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(320px, 520px);
  gap: 90px;
  justify-content: center;
  padding: 62px 6vw 70px;
  background: linear-gradient(180deg, var(--paper) 0%, #f5f0e7 100%);
}

.album-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  box-shadow: 0 15px 32px rgba(0,0,0,.14);
}

.quote-block {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: start;
  gap: 8px;
  margin-top: 28px;
}

.quote-mark {
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 700;
  line-height: .84;
}

.quote-block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.signature {
  align-self: end;
  color: var(--sage-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-style: italic;
  letter-spacing: .07em;
  transform: rotate(-8deg);
  margin-right: 10px;
}

.tracklist { padding-top: 28px; }

.tracklist ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tracks;
}

.tracklist li {
  counter-increment: tracks;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 18px;
  padding: 14px 0;
  align-items: baseline;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
}

.tracklist li::before {
  content: counter(tracks, decimal-leading-zero);
  color: var(--sage-dark);
  font-family: Inter, sans-serif;
  font-size: 15px;
}

.tracklist time {
  font-family: Inter, sans-serif;
  font-size: 15px;
}

.total {
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.distance-band {
  background:
    radial-gradient(circle at 21% 38%, rgba(255,255,255,.13), transparent 34%),
    linear-gradient(110deg, #7e8969 0%, #6f7a5e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.distance-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background:
    radial-gradient(circle at 25% 24%, rgba(255,255,255,.6) 0 1px, transparent 1.4px),
    radial-gradient(circle at 70% 65%, rgba(0,0,0,.22) 0 1px, transparent 1.4px),
    linear-gradient(20deg, transparent 0 48%, rgba(255,255,255,.22) 49%, transparent 50%),
    linear-gradient(112deg, transparent 0 49%, rgba(0,0,0,.16) 50%, transparent 51%);
  background-size: 6px 6px, 9px 9px, 210px 210px, 300px 300px;
  mix-blend-mode: overlay;
}

.distance-band::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='260' viewBox='0 0 1200 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23f7f2e9' stroke-width='2' stroke-linecap='round' opacity='.55'%3E%3Cpath d='M25 190 C110 120 175 240 260 155 S405 120 490 170'/%3E%3Cpath d='M820 205 C910 150 950 230 1025 178 S1120 140 1180 185'/%3E%3C/g%3E%3Cg fill='none' stroke='%231d1d19' stroke-width='1.5' opacity='.22'%3E%3Cpath d='M820 54 c55 12 100 5 150 25'/%3E%3Cpath d='M875 98 c62 -20 130 -3 196 -21'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.distance-inner {
  min-height: 225px;
  padding: 36px 8vw;
  display: grid;
  grid-template-columns: 170px minmax(280px, 1fr) auto;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.distance-cover {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: 18% 100%;
}

.distance-copy .eyebrow { margin-bottom: 12px; }

.light { color: #fff; }

.distance-copy h2 {
  font-size: clamp(48px, 6vw, 72px);
  margin-bottom: 24px;
}

.outline {
  color: #fff;
  min-width: 190px;
}

.streaming {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: clamp(21px, 2.15vw, 30px);
  font-weight: 800;
  white-space: nowrap;
}

.streaming a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.streaming svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.divider {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,.55);
}

.footer {
  display: grid;
  grid-template-columns: auto auto minmax(300px, 390px) auto;
  align-items: center;
  gap: 32px;
  padding: 34px 5.5vw;
  font-size: 14px;
  background: var(--paper);
}

.footer-logo {
  width: 68px;
  height: 68px;
  background: var(--sage);
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .9;
}

.footer-logo small { font-size: 13px; }

.signup label {
  display: block;
  margin-bottom: 12px;
}

.signup div { display: flex; }

.signup input {
  width: 260px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 14px 16px;
}

.signup button {
  border: 0;
  background: var(--sage);
  color: white;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal {
  display: flex;
  gap: 28px;
}

/* Responsive */
@media (max-width: 980px) {
  .topbar { gap: 5vw; }
  .nav { gap: 26px; }
  .album-section { gap: 54px; }
  .distance-inner { grid-template-columns: 140px 1fr; }
  .streaming { grid-column: 1 / -1; justify-content: center; }
  .footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar {
    height: auto;
    flex-direction: column;
    gap: 18px;
    padding: 20px 18px;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .socials { gap: 24px; }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero::after {
    background: none;
  }

  .hero-copy {
    width: 100%;
    padding: 45px 24px 28px;
    order: 1;
  }

  .hero h1 { font-size: clamp(64px, 17vw, 92px); }

  .hero-photo {
    order: 2;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 0 0 34px;
    z-index: 1;
    background: var(--paper-2);
  }

  .hero-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: saturate(.96) contrast(.98) brightness(1.01);
}

  .album-section {
    grid-template-columns: 1fr;
    padding: 45px 24px 56px;
    gap: 40px;
  }

  .quote-block {
    grid-template-columns: 36px 1fr auto;
  }

  .signature {
    font-size: 30px;
  }

  .tracklist li {
    grid-template-columns: 40px 1fr auto;
    font-size: 20px;
  }

  .distance-inner {
    grid-template-columns: 96px 1fr;
    gap: 20px;
    padding: 42px 24px;
  }

  .distance-cover {
    width: 96px;
    height: 96px;
  }

  .streaming {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    white-space: normal;
  }

  .divider { display: none; }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 24px;
  }

  .signup, .signup div { width: 100%; }
  .signup input { width: 100%; min-width: 0; }
  .legal { flex-wrap: wrap; gap: 18px; }
}
