:root {
  --ink: #20242a;
  --paper: #eee9df;
  --paper-light: #f8f5ed;
  --night: #171c22;
  --mist: #aeb9c0;
  --gold: #d5ad6d;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #f7f2e8;
  background:
    radial-gradient(circle at 72% 45%, rgba(213, 173, 109, .26), transparent 28%),
    linear-gradient(135deg, rgba(10, 14, 18, .35), rgba(10, 14, 18, .9)),
    url("images/hero-photo-hd.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--night));
  pointer-events: none;
}

nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 80px);
}

.artist, .album-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
}

.album-link {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.secondary-button {
  background: rgba(10,14,18,.2);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 40px));
  margin: 20vh 0 0 clamp(20px, 8vw, 130px);
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 600;
}

h1, h2, blockquote {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 11vw, 150px);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.07em;
  white-space: nowrap;
}

.intro {
  max-width: 560px;
  margin: 36px 0 30px;
  color: #dce0df;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
}

.primary-button {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  color: white;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s, background .2s;
}

.primary-button:hover { transform: translateY(-2px); background: rgba(255,255,255,.18); }
.play-icon { color: var(--gold); }

.question {
  position: absolute;
  z-index: 1;
  right: clamp(14px, 3vw, 52px);
  bottom: 4vh;
  display: flex;
  flex-direction: column;
  color: rgba(255,255,255,.055);
  font: 600 clamp(90px, 17vw, 250px)/.62 "Cormorant Garamond", serif;
  letter-spacing: -.1em;
}

main { background: var(--paper); }

.opening {
  padding: clamp(80px, 14vw, 190px) max(20px, 8vw);
  text-align: center;
}

.section-number { font-size: 11px; letter-spacing: .2em; color: #737a7d; }

.quote-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

blockquote {
  max-width: 930px;
  margin: 30px auto;
  font-size: clamp(36px, 6vw, 78px);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -.035em;
  transition: opacity .35s ease, transform .35s ease;
}

.opening.quote-changing blockquote {
  opacity: 0;
  transform: translateY(8px);
}

.quote-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 0 22px;
}

.quote-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(32, 36, 42, .2);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}

.quote-controls button:hover {
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-2px);
}

.opening > p:last-child { color: #6a7072; font-size: 13px; }

.tracks {
  padding: 80px max(16px, 5vw) 110px;
  background: var(--night);
  color: white;
}

.section-heading { margin: 0 auto 40px; max-width: 1500px; }
.section-heading h2 { margin: 0; font-size: clamp(48px, 7vw, 90px); font-weight: 500; }

.track-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1500px;
  margin: 0 auto;
}

.track {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 0;
  color: white;
  background: #2b3137;
  text-align: left;
  cursor: pointer;
}

.track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,12,16,.88));
  transition: background .3s;
}

.track:hover::after { background: linear-gradient(180deg, rgba(8,12,16,.05), rgba(8,12,16,.72)); }
.track:hover .track-art { transform: scale(1.025); }

.track-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.abstract-art {
  background:
    radial-gradient(circle at 70% 25%, rgba(213,173,109,.72), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(117,145,155,.45), transparent 30%),
    linear-gradient(145deg, #35424a, #10151a 70%);
}

.track-info {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.track-number { color: var(--gold); font-size: 11px; letter-spacing: .18em; }
.track h3 { margin: 5px 0 0; font: 500 clamp(32px, 4vw, 58px)/1 "Cormorant Garamond", serif; }
.open-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }

dialog {
  width: min(1180px, calc(100% - 24px));
  max-height: calc(100svh - 24px);
  padding: 0;
  border: 0;
  color: var(--ink);
  background: var(--paper-light);
}

dialog::backdrop { background: rgba(7,10,13,.82); backdrop-filter: blur(8px); }
.close-button { position: fixed; z-index: 2; top: 22px; right: 25px; border: 0; color: white; background: transparent; font-size: 36px; cursor: pointer; }

.dialog-art { min-height: 330px; background: #29343a center / cover; }
.dialog-copy { max-width: 710px; margin: 0 auto; padding: clamp(42px, 8vw, 90px) 24px; }
.dialog-copy h2 { margin: 0 0 35px; font-size: clamp(60px, 10vw, 118px); font-weight: 500; line-height: .8; letter-spacing: -.06em; }
.soundcloud-player {
  display: block;
  width: 100%;
  height: 166px;
  margin: 0 0 44px;
  border: 0;
  border-radius: 8px;
  background: #e6e1d7;
}
.lyrics { margin-bottom: 42px; font: 500 clamp(22px, 3vw, 30px)/1.6 "Cormorant Garamond", serif; }
.lyrics p { margin: 0 0 24px; }
.dialog-copy .primary-button { color: var(--ink); border-color: rgba(0,0,0,.2); background: transparent; }

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px max(20px, 5vw);
  color: #9ca3a6;
  background: #0f1317;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .hero { min-height: 92svh; }
  .hero-copy { margin-top: 18vh; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  h1 { font-size: clamp(54px, 16vw, 86px); line-height: .9; }
  .question {
    right: 18px;
    bottom: 5vh;
    font-size: clamp(76px, 20vw, 112px);
    line-height: .66;
  }
  .track-grid { grid-template-columns: 1fr; }
  .track { min-height: 390px; }
  .open-label { display: none; }
  footer { display: block; line-height: 1.8; }
}
