:root {
  --ink: #171815;
  --paper: #f1eee7;
  --paper-deep: #e6e0d5;
  --pink: #fc91a0;
  --line: rgba(23, 24, 21, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
body.modal-open { overflow: hidden; }
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.is-hidden { display: none !important; }

.site-header {
  height: 84px; padding: 0 clamp(24px, 4vw, 70px); display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--line); position: relative; z-index: 20;
}
.wordmark { font-size: 25px; font-weight: 850; letter-spacing: -.12em; }
.wordmark span { color: var(--pink); padding: 0 3px; }
.site-header nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 52px); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.site-header nav > a { position: relative; }
.site-header nav > a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--ink); transition: width .2s; }
.site-header nav > a:hover::after { width: 100%; }
.nav-buy { border: 0; background: var(--ink); color: var(--paper); padding: 14px 17px; cursor: pointer; text-transform: uppercase; font-weight: 750; }
.nav-buy span { color: var(--pink); margin-left: 18px; }

.hero { min-height: calc(100vh - 84px); display: grid; grid-template-columns: 1.03fr .97fr; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-copy { padding: clamp(70px, 8vw, 120px) clamp(24px, 6vw, 100px) 52px; display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow { margin: 0 0 28px; font-family: ui-monospace, monospace; text-transform: uppercase; font-size: 10px; font-weight: 700; letter-spacing: .17em; }
.hero h1 { margin: 0; font-size: clamp(68px, 8.8vw, 142px); line-height: .78; letter-spacing: -.085em; font-weight: 800; }
.hero h1 em { font-family: Georgia, serif; font-weight: 400; letter-spacing: -.08em; margin-left: 7vw; }
.hero-intro { max-width: 510px; margin: clamp(40px, 5vw, 72px) 0 30px; font-family: Georgia, serif; font-size: clamp(18px, 1.55vw, 25px); line-height: 1.46; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.button-primary { min-height: 54px; border: 1px solid var(--ink); background: var(--pink); padding: 0 22px; display: inline-flex; align-items: center; justify-content: space-between; gap: 35px; cursor: pointer; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .07em; box-shadow: 5px 5px 0 var(--ink); transition: transform .18s, box-shadow .18s; }
.button-primary:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.button-primary.dark { background: var(--ink); color: white; box-shadow: 5px 5px 0 var(--pink); }
.button-text { display: inline-flex; align-items: center; gap: 12px; border: 0; border-bottom: 1px solid; padding: 8px 0; background: none; cursor: pointer; text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.play-symbol { display: block; width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid currentColor; margin-left: 2px; }
.track-play.is-playing .play-symbol { width: 10px; height: 12px; border: 0; margin: 0; background: linear-gradient(90deg, currentColor 0 3px, transparent 3px 7px, currentColor 7px 10px); }
.format-line { display: flex; flex-wrap: wrap; gap: 8px 27px; padding-top: 42px; margin-top: auto; font-family: ui-monospace, monospace; text-transform: uppercase; font-size: 9px; letter-spacing: .1em; }
.format-line span::before { content: "+"; color: var(--pink); padding-right: 7px; font-size: 13px; }

.cover-stage { min-height: 670px; background: #24251f; position: relative; display: grid; place-items: center; padding: 8%; overflow: hidden; }
.cover-stage::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(112deg, transparent 0 7px, rgba(255,255,255,.018) 8px 9px); }
.album-cover { position: relative; width: min(83%, 590px); aspect-ratio: 1; object-fit: cover; box-shadow: 0 30px 70px rgba(0,0,0,.42); transform: rotate(-1.8deg); }
.cover-shadow { position: absolute; width: 74%; height: 8%; bottom: 12%; background: rgba(0,0,0,.5); filter: blur(25px); border-radius: 50%; }
.cover-caption { position: absolute; bottom: 23px; left: 9%; right: 9%; color: #c6c1b6; display: flex; justify-content: space-between; font-size: 9px; font-family: ui-monospace, monospace; text-transform: uppercase; letter-spacing: .08em; }
.cover-caption span { color: var(--pink); }

.now-playing { min-height: 74px; background: var(--pink); display: grid; grid-template-columns: .75fr 1fr 1.4fr; align-items: center; gap: 25px; padding: 14px clamp(24px, 4vw, 70px); border-bottom: 1px solid var(--ink); font-size: 11px; }
.np-label { display: flex; gap: 10px; align-items: center; font-family: ui-monospace, monospace; text-transform: uppercase; font-size: 9px; letter-spacing: .1em; }
.sound-dot { width: 8px; height: 8px; background: var(--ink); border-radius: 50%; }
.sound-dot.active { animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.6); opacity: .5; } }
.np-title { font-weight: 750; }
.np-progress { display: grid; grid-template-columns: 36px 1fr 36px; align-items: center; gap: 9px; font-family: ui-monospace, monospace; font-size: 9px; }
.np-progress input { width: 100%; accent-color: var(--ink); cursor: pointer; }

.track-section { padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px); display: grid; grid-template-columns: .66fr 1.34fr; gap: 9vw; }
.section-heading { position: sticky; top: 55px; align-self: start; }
.section-heading h2, .purchase-copy h2 { margin: 0 0 32px; font-size: clamp(45px, 5.2vw, 76px); line-height: .95; letter-spacing: -.065em; }
.section-heading > p:last-child { max-width: 330px; font-family: Georgia, serif; font-size: 17px; line-height: 1.55; }
.track-list { border-top: 1px solid var(--ink); }
.track { min-height: 102px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 45px 33px minmax(160px, 1fr) 150px 38px; gap: 15px; align-items: center; transition: background .2s, padding .2s; }
.track:hover, .track.active { background: var(--paper-deep); padding: 0 12px; }
.track.active { border-bottom-color: var(--pink); }
.track-play { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; }
.track-play:hover, .track.active .track-play { background: var(--ink); color: var(--paper); }
.track-number, .track-length { font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .1em; }
.track-copy h3 { margin: 0 0 7px; font-size: 18px; letter-spacing: -.02em; }
.track-copy p { margin: 0; font-family: Georgia, serif; font-size: 12px; color: #696960; font-style: italic; }
.waveform { height: 28px; display: flex; align-items: center; justify-content: flex-end; gap: 3px; opacity: .32; }
.track.active .waveform { opacity: 1; }
.waveform i { width: 2px; background: var(--ink); }
.track.active .waveform i { background: var(--pink); }

.story { background: var(--ink); color: var(--paper); min-height: 640px; padding: clamp(80px, 10vw, 140px) clamp(24px, 7vw, 110px); display: grid; grid-template-columns: .2fr 1.05fr .75fr; gap: 5vw; align-items: start; }
.story-mark { font-family: Georgia, serif; font-size: clamp(130px, 18vw, 260px); line-height: .7; color: var(--pink); }
.story-copy blockquote { margin: 0 0 45px; max-width: 760px; font-family: Georgia, serif; font-size: clamp(35px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -.045em; }
.story-copy > p:not(.eyebrow) { max-width: 580px; color: #c9c4ba; font-family: Georgia, serif; font-size: 17px; line-height: 1.65; }
.story-copy > span { display: block; margin-top: 30px; color: var(--pink); font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.story-meta { margin: 0; border-top: 1px solid #58594f; }
.story-meta > div { padding: 19px 0; border-bottom: 1px solid #44453e; display: flex; justify-content: space-between; gap: 20px; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.story-meta dt { color: #88897f; }
.story-meta dd { margin: 0; text-align: right; }

.purchase-section { padding: clamp(80px, 9vw, 140px) clamp(24px, 7vw, 110px); display: grid; grid-template-columns: .72fr 1fr .8fr; gap: clamp(35px, 6vw, 90px); align-items: center; background: var(--pink); }
.purchase-art { aspect-ratio: 1; box-shadow: 9px 9px 0 var(--ink); overflow: hidden; }
.purchase-art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.purchase-copy h2 { font-family: Georgia, serif; font-weight: 400; }
.purchase-copy > p:not(.eyebrow) { font-family: Georgia, serif; font-size: 17px; line-height: 1.55; max-width: 520px; }
.purchase-copy ul { list-style: none; padding: 20px 0 0; margin: 0; display: grid; gap: 13px; font-size: 11px; font-weight: 650; }
.price-card { background: var(--paper); padding: clamp(28px, 3.5vw, 50px); box-shadow: 12px 12px 0 var(--ink); }
.price-card > span { text-transform: uppercase; font-family: ui-monospace, monospace; font-size: 9px; letter-spacing: .11em; }
.price-card strong { display: block; font-size: clamp(75px, 8vw, 116px); line-height: .95; letter-spacing: -.08em; margin: 23px 0 14px; }
.price-card strong small { font-size: 17px; vertical-align: top; letter-spacing: 0; }
.price-card > p { color: #6e6b62; font-size: 10px; }
.price-card .button-primary { width: 100%; margin-top: 25px; }
.payment-note { display: flex; justify-content: space-between; padding-top: 24px; font-family: ui-monospace, monospace; font-size: 7px; letter-spacing: .09em; color: #6e6b62; }

footer { background: var(--ink); color: var(--paper); overflow: hidden; padding-top: 55px; }
.footer-word { font-size: clamp(72px, 16.2vw, 260px); line-height: .8; letter-spacing: -.09em; font-weight: 850; white-space: nowrap; transform: translateX(-.8vw); }
.footer-row { margin-top: 60px; min-height: 80px; border-top: 1px solid #41423b; padding: 25px clamp(24px, 5vw, 78px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; font-family: ui-monospace, monospace; text-transform: uppercase; font-size: 8px; letter-spacing: .09em; color: #9a9b91; }
.mobile-buy { display: none; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; background: rgba(16,16,14,.76); backdrop-filter: blur(8px); padding: 20px; display: grid; place-items: center; }
.checkout-modal { position: relative; width: min(100%, 570px); max-height: calc(100vh - 40px); overflow: auto; background: var(--paper); padding: clamp(30px, 5vw, 55px); box-shadow: 12px 12px 0 var(--pink); }
.modal-close { position: absolute; top: 17px; right: 19px; border: 0; background: transparent; font-size: 28px; cursor: pointer; }
.checkout-modal h2 { margin: 0 0 26px; font-family: Georgia, serif; font-size: clamp(34px, 5vw, 52px); line-height: 1; font-weight: 400; letter-spacing: -.04em; }
.checkout-product { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 13px; padding: 14px 0; border-block: 1px solid var(--line); }
.checkout-product img { width: 58px; height: 58px; object-fit: cover; }
.checkout-product strong, .checkout-product small { display: block; }
.checkout-product strong, .checkout-product b { font-size: 12px; }
.checkout-product small { color: #77746b; font-size: 9px; margin-top: 5px; }
.checkout-modal form { display: grid; gap: 16px; margin-top: 24px; }
.checkout-modal label { display: grid; gap: 7px; text-transform: uppercase; font-size: 8px; font-weight: 750; letter-spacing: .09em; }
.checkout-modal input { width: 100%; border: 1px solid #a6a39b; background: #f8f5ee; min-height: 46px; padding: 0 13px; outline: none; font-size: 12px; }
.checkout-modal input:focus { border-color: var(--pink); box-shadow: 0 0 0 1px var(--pink); }
.checkout-submit { width: 100%; margin-top: 6px; }
.checkout-note { margin: 18px 0 0; color: #706d64; text-align: center; font-size: 8px; line-height: 1.5; }
.purchase-error { margin: 14px 0 0; padding: 10px 12px; border-left: 3px solid var(--pink); background: #f3dcd3; color: #762713; font-size: 10px; line-height: 1.45; }
.processing-state, .success-state { min-height: 410px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.spinner { width: 40px; height: 40px; border: 2px solid #c9c4b9; border-top-color: var(--pink); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.processing-state h2 { margin-top: 30px; }
.processing-state p, .success-state > p:not(.eyebrow) { color: #6f6d65; font-family: Georgia, serif; max-width: 380px; line-height: 1.5; }
.success-check { width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: var(--pink); font-size: 28px; margin-bottom: 28px; }
.success-state .eyebrow { margin-bottom: 15px; }
.format-downloads { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.format-download { min-height: 86px; padding: 15px 17px; border: 1px solid var(--ink); display: flex; align-items: center; justify-content: space-between; text-align: left; box-shadow: 4px 4px 0 var(--pink); }
.format-download span, .format-download strong, .format-download small { display: block; }
.format-download small { margin-top: 5px; color: #77746b; font-family: ui-monospace, monospace; font-size: 7px; text-transform: uppercase; letter-spacing: .07em; }
.format-download b { font-size: 20px; }
.success-state > small { margin-top: 17px; color: #77746b; font-family: ui-monospace, monospace; font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 690px; }
  .cover-stage { min-height: 760px; }
  .track-section { grid-template-columns: 1fr; }
  .section-heading { position: static; }
  .story { grid-template-columns: .18fr 1fr; }
  .story-meta { grid-column: 2; }
  .purchase-section { grid-template-columns: .8fr 1.2fr; }
  .price-card { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .site-header { height: 68px; }
  .site-header nav > a, .nav-buy { display: none; }
  .hero { min-height: auto; }
  .hero-copy { min-height: 590px; padding-top: 70px; }
  .hero h1 { font-size: clamp(68px, 24vw, 105px); }
  .hero h1 em { margin-left: 5vw; }
  .cover-stage { min-height: 480px; padding: 9%; }
  .album-cover { width: 94%; }
  .now-playing { grid-template-columns: 1fr 1fr; }
  .np-progress { grid-column: 1 / -1; }
  .track { grid-template-columns: 42px 28px 1fr 35px; min-height: 90px; }
  .waveform, .track-copy p { display: none; }
  .track-copy h3 { margin: 0; font-size: 16px; }
  .story { grid-template-columns: 1fr; }
  .story-mark { height: 80px; }
  .story-meta { grid-column: auto; }
  .purchase-section { grid-template-columns: 1fr; }
  .purchase-art { width: 80%; justify-self: center; }
  .price-card { grid-column: auto; box-shadow: 8px 8px 0 var(--ink); }
  .footer-row { grid-template-columns: 1fr; padding-bottom: 110px; }
  .mobile-buy { position: fixed; z-index: 50; left: 14px; right: 14px; bottom: 14px; height: 58px; border: 0; background: var(--pink); display: flex; align-items: center; justify-content: space-between; padding: 0 20px; box-shadow: 5px 5px 0 var(--ink); text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .07em; }
  .checkout-modal { padding: 38px 24px; }
  .format-downloads { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
