:root {
  --black: #0a0909;
  --ink: #171414;
  --paper: #f8edf1;
  --white: #fffdf9;
  --muted: #aaa1a5;
  --line: rgba(255, 253, 249, 0.18);
  --dark-line: rgba(23, 20, 20, 0.18);
  --spotify: #1ed760;
  --apple-music: #fc3c44;
  --youtube: #ff0000;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
  cursor: url("flower-cursor.svg") 12 12, auto;
}
body.menu-open,
body.lyrics-modal-open { overflow: hidden; }
body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.9'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
a,
button,
input,
summary { cursor: url("flower-cursor.svg") 12 12, auto; }
img { display: block; max-width: 100%; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 9, 9, 0.9);
  backdrop-filter: blur(16px);
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 9, 9, 0.82);
  color: var(--white);
  font-size: 18px;
  transition: transform 180ms ease, background 180ms ease;
}
.back-to-top:hover { transform: translateY(-3px); background: rgba(10, 9, 9, 0.96); }
.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand img { width: 72px; height: auto; }
.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.menu-button span:not(.sr-only) { width: 18px; height: 1px; display: block; background: currentColor; }
.primary-nav { display: flex; justify-content: center; gap: 26px; }
.primary-nav a,
.footer-nav a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.primary-nav a[aria-current="page"] { color: #edb9c7; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.socials img { width: 14px; height: 14px; object-fit: contain; }
.page-hero { padding: clamp(80px, 12vw, 150px) 0 90px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 8vw;
  align-items: end;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: 0; }
h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: 88px;
  font-weight: 500;
  line-height: 0.92;
  text-transform: uppercase;
}
h1 em, h2 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  text-transform: none;
}
h2 {
  margin-bottom: 26px;
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
h3 { font-size: 18px; line-height: 1.2; }
.lede { max-width: 700px; color: #d6cfd2; font-size: 24px; }
.hero-aside {
  padding: 24px 0 4px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.content-band { padding: 100px 0; background: var(--paper); color: var(--ink); }
.content-band.dark { background: var(--black); color: var(--white); }
.editorial-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 8vw; align-items: start; }
.portrait { aspect-ratio: 4 / 5; overflow: hidden; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.copy { max-width: 680px; }
.copy p:not(.eyebrow) { font-family: "Cormorant Garamond", Georgia, serif; font-size: 30px; line-height: 1.25; }
.copy section + section { margin-top: 60px; padding-top: 45px; border-top: 1px solid var(--dark-line); }
.text-links, .platform-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.solid { border-color: var(--ink); background: var(--ink); color: var(--white); }
.button img { width: 15px; height: 15px; object-fit: contain; }
.button.spotify { border-color: var(--spotify); color: var(--spotify); }
.button.apple-music { border-color: var(--apple-music); color: var(--apple-music); }
.button.youtube { border-color: var(--youtube); color: var(--youtube); }
.button.spotify img { filter: brightness(0) saturate(100%) invert(76%) sepia(49%) saturate(699%) hue-rotate(91deg) brightness(89%) contrast(88%); }
.button.apple-music img { filter: brightness(0) saturate(100%) invert(39%) sepia(66%) saturate(1559%) hue-rotate(315deg) brightness(102%) contrast(98%); }
.button.youtube img { filter: brightness(0) saturate(100%) invert(15%) sepia(99%) saturate(5681%) hue-rotate(0deg) brightness(101%) contrast(118%); }
.catalog-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 54px; }
.catalog-head p { max-width: 420px; color: rgba(23, 20, 20, 0.65); }
.release-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px 24px; }
.release-tile { min-width: 0; }
.release-art { aspect-ratio: 1; overflow: hidden; background: #ddd2d6; }
.release-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.release-tile:hover .release-art img { transform: scale(1.025); }
.release-copy { padding-top: 15px; border-top: 1px solid var(--dark-line); }
.release-copy span { color: rgba(23, 20, 20, 0.58); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.release-copy h2, .release-copy h3 { margin: 7px 0 5px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; font-weight: 600; text-transform: none; }
.release-copy p { margin-bottom: 14px; color: rgba(23, 20, 20, 0.68); font-size: 13px; }
.release-links { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; font-weight: 700; }
.release-links a { border-bottom: 1px solid currentColor; }
.detail-hero { padding: 86px 0 110px; }
.detail-grid { display: grid; grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr); gap: 8vw; align-items: center; }
.detail-cover { aspect-ratio: 1; overflow: hidden; }
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.detail-copy h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 88px; text-transform: none; }
.detail-copy .lede { max-width: 620px; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 42px 0 0; border-block: 1px solid var(--line); }
.facts div { padding: 17px 0; }
.facts dt { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.facts dd { margin: 2px 0 0; }
.related { padding: 90px 0; background: var(--paper); color: var(--ink); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.related-item { padding-top: 18px; border-top: 1px solid var(--dark-line); }
.related-item span { color: rgba(23, 20, 20, 0.58); font-size: 10px; text-transform: uppercase; }
.related-item h3 { margin: 8px 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 24px; }
.video-item { margin: 0; }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; display: block; overflow: hidden; background: #111; }
.video-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-play { position: absolute; inset: 50% auto auto 50%; display: grid; width: 58px; height: 58px; place-items: center; color: #090909; background: #f8eaf0; border-radius: 50%; transform: translate(-50%, -50%); transition: transform .2s ease, background .2s ease; }
.video-frame:hover .video-play, .video-frame:focus-visible .video-play { background: #fff; transform: translate(-50%, -50%) scale(1.08); }
.video-item h2 { margin: 16px 0 6px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; text-transform: none; }
.video-item p { color: rgba(23, 20, 20, 0.62); font-size: 13px; }
.lyrics-note { max-width: 680px; margin-bottom: 52px; }
.lyrics-note p:last-child { margin-bottom: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; line-height: 1.25; }
.lyrics-search { max-width: 520px; margin-top: 34px; }
.lyrics-search label { display: block; margin-bottom: 8px; color: rgba(23, 20, 20, 0.58); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.lyrics-search input { width: 100%; min-height: 44px; padding: 14px 16px; border: 1px solid var(--dark-line); border-radius: 999px; background: transparent; color: var(--ink); font: inherit; font-size: 16px; line-height: 1.5; outline: none; }
.lyrics-search input:focus { border-color: var(--ink); }
.lyrics-count { margin: 10px 0 0; color: rgba(23, 20, 20, 0.58); font-size: 12px; }
.lyrics-group + .lyrics-group { margin-top: 100px; }
.lyrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 24px; }
.lyric-tile { min-width: 0; background: rgba(23, 20, 20, 0.06); }
.lyric-art-link { display: block; }
.lyric-art { aspect-ratio: 1; overflow: hidden; background: #ddd2d6; }
.lyric-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.lyric-art-link:hover .lyric-art img, .lyric-art-link:focus-visible .lyric-art img { transform: scale(1.025); }
.lyric-copy { padding: 16px 16px 20px; }
.lyric-copy span { color: rgba(23, 20, 20, 0.58); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.lyric-copy h2 { margin: 8px 0 12px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; text-transform: none; }
.lyric-open { display: flex; align-items: center; width: 100%; min-height: 44px; padding: 10px 0; gap: 4px; border: 0; background: transparent; color: rgba(23, 20, 20, 0.68); font: inherit; font-size: 12px; font-weight: 700; line-height: 1.6; text-align: left; }
.lyric-open:hover, .lyric-open:focus-visible { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.lyrics-status { margin: 12px 0 0; color: rgba(23, 20, 20, 0.58); font-size: 12px; }
.lyric-release-link { display: flex; align-items: center; width: 100%; min-height: 44px; margin-top: 16px; padding: 10px 0; gap: 4px; color: rgba(23, 20, 20, 0.68); font-size: 12px; font-weight: 700; line-height: 1.6; text-decoration: underline; text-underline-offset: 3px; }
.lyrics-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 9, 9, 0.74);
}
.lyrics-modal[hidden] { display: none; }
.lyrics-modal-panel {
  width: min(900px, 100%);
  max-height: min(82svh, 860px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0b0b;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}
.lyrics-modal-head { position: relative; padding: 32px 76px 24px 32px; border-bottom: 1px solid var(--line); }
.lyrics-modal-meta { margin: 0 0 8px; color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.lyrics-modal-title { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(38px, 6vw, 58px); line-height: 0.98; text-transform: none; }
.lyrics-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
}
.lyrics-modal-content { min-height: 0; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 320px); grid-template-areas: "lyrics player"; align-items: start; gap: 32px; overflow-y: auto; padding: 36px 32px 48px; }
.lyrics-modal-text { grid-area: lyrics; min-width: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(20px, 2.5vw, 26px); line-height: 1.55; white-space: pre-wrap; }
.lyrics-modal-player { position: sticky; top: 0; grid-area: player; min-width: 0; }
.lyrics-modal-embed { display: block; width: 100%; height: 152px; border: 0; border-radius: 8px; background: #171414; }
.lyrics-modal-spotify-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 8px; color: var(--muted); font-size: 12px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.lyrics-modal-spotify-link:hover, .lyrics-modal-spotify-link:focus-visible { color: var(--white); }
.lyrics-modal-player-empty { margin: 0; padding: 16px; border: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.5; }
.site-footer { padding: 38px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 32px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-legal { flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 18px; font-size: 11px; }
.footer-legal a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer-mark { width: 68px; }
.footer-note { flex-basis: 100%; margin: -12px 0 0; color: var(--muted); font-size: 10px; }
.legal-copy { max-width: 760px; }
.legal-copy section + section { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--dark-line); }
.legal-copy h2 { margin-bottom: 12px; font-size: 34px; }
.legal-copy a { text-decoration: underline; text-underline-offset: 3px; }
.catalog-jump { display: flex; gap: 12px; margin-bottom: 48px; }
.catalog-group { scroll-margin-top: 150px; }
.catalog-group + .catalog-group { margin-top: 90px; }
.track-section { padding-top: 0; }
.tracklist-head { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.tracklist { width: 100%; border-collapse: collapse; text-align: left; table-layout: fixed; }
.tracklist th, .tracklist td { padding: 18px 12px; border-bottom: 1px solid var(--line); }
.tracklist thead { color: var(--muted); font-size: 12px; }
.tracklist th:first-child, .tracklist td:first-child { width: 58px; color: var(--muted); font-variant-numeric: tabular-nums; }
.tracklist th:last-child, .tracklist td:last-child { width: 76px; text-align: right; font-variant-numeric: tabular-nums; }
.tracklist tbody th { font-weight: 500; overflow-wrap: anywhere; }
.tracklist a:hover { color: #edb9c7; text-decoration: underline; }
.tracklist small { display: block; color: var(--muted); font-size: 12px; font-weight: 400; }
.release-player { display: block; width: 100%; height: 352px; margin-top: 40px; border: 0; border-radius: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }

@media (max-width: 980px) {
  h1, .detail-copy h1 { font-size: 72px; }
  h2 { font-size: 50px; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .site-header.menu-open { backdrop-filter: none; }
  .brand,
  .menu-button { position: relative; z-index: 2; }
  .menu-button { grid-column: 3; display: inline-grid; justify-self: end; }
  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: none;
    place-content: center;
    justify-items: center;
    gap: 0;
    background: rgba(10, 9, 9, 0.98);
  }
  .primary-nav.open { display: grid; }
  .primary-nav a {
    position: relative;
    display: flex;
    width: min(64vw, 250px);
    min-height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  .primary-nav a:not(:last-child)::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    content: "";
  }
  .socials { display: none; }
  .page-hero-grid, .editorial-grid, .detail-grid { grid-template-columns: 1fr; }
  .hero-aside { max-width: 580px; }
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .lyrics-modal-content { grid-template-columns: 1fr; grid-template-areas: "player" "lyrics"; gap: 24px; }
  .lyrics-modal-player { position: static; }
}

@media (max-width: 620px) {
  h1, .detail-copy h1 { font-size: 54px; }
  h2 { font-size: 40px; }
  .lede { font-size: 20px; }
  .copy p:not(.eyebrow) { font-size: 24px; }
  .shell { width: min(100% - 32px, 1180px); }
  .page-hero, .content-band, .related { padding-block: 72px; }
  .catalog-head { display: block; }
  .release-grid, .video-grid, .related-grid { grid-template-columns: 1fr; }
  .lyrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
  .facts { grid-template-columns: 1fr; }
  .tracklist-head { display: block; margin-bottom: 28px; }
  .tracklist th, .tracklist td { padding: 16px 6px; }
  .tracklist th:first-child, .tracklist td:first-child { width: 36px; }
  .tracklist th:last-child, .tracklist td:last-child { width: 55px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-note { margin-top: -18px; }
  .back-to-top { right: 14px; bottom: 14px; }
  .lyrics-modal { padding: 16px; }
  .lyrics-modal-head { padding: 26px 70px 20px 22px; }
  .lyrics-modal-close { top: 16px; right: 16px; }
  .lyrics-modal-content { padding: 28px 22px 36px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
