@font-face {
  font-family: "Local Serif";
  src: local("Minion Pro"), local("Times New Roman");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  --page-tint: #7eb2ad;
  --page: color-mix(in srgb, var(--page-tint) 31%, #070909);
  --ink: #f5f1ea;
  --muted: #b8b0a6;
  --line: #2a3030;
  --header: color-mix(in srgb, var(--page) 86%, rgba(9, 11, 12, 0.88));
  --card: #121617;
  --soft: #1d2324;
  --modal-backdrop: rgba(0, 0, 0, 0.86);
  --accent: #7eb2ad;
  --amber: #d8a55b;
  --album-a: #b96a3d;
  --album-b: #7eb2ad;
  --record-art: url("assets/studio-hero.jpg");
  --panel-bg: rgba(9, 11, 12, 0.52);
  --panel-border: color-mix(in srgb, var(--album-b) 30%, rgba(245, 241, 234, 0.12));
  background: var(--page);
  color: var(--ink);
  font-family: "Local Serif", Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  transition: background 700ms ease;
}

body:not(.is-info-view):not(.is-modal-open) {
  overflow: hidden;
}

body:not(.is-info-view):not(.is-modal-open) .site-main {
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 0;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: var(--header);
  backdrop-filter: blur(12px);
}

.name-button,
.info-button {
  position: relative;
  z-index: 1;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1;
}

.hover-glow,
.name-button,
.info-button {
  transition:
    opacity 220ms ease,
    text-shadow 220ms ease,
    transform 220ms ease;
}

.hover-glow:hover,
.name-button:hover,
.info-button:hover {
  text-shadow: 0 0 15px rgba(126, 178, 173, 0.5);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.entry-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--page);
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}

.entry-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  inset: 4rem 1rem 1rem;
  border: 1px solid var(--line);
  opacity: 0.8;
}

.entry-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 24%, rgba(0, 0, 0, 0.12) 50%, transparent 76%),
    radial-gradient(circle, transparent 0 58%, rgba(0, 0, 0, 0.34) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.entry-screen.is-complete {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.entry-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.6rem;
  width: min(82rem, calc(100% - 2rem));
  text-shadow: 0 0 28px rgba(216, 165, 91, 0.16);
}

.entry-copy p,
.entry-copy span {
  color: var(--muted);
  font-size: clamp(0.92rem, 2vw, 1.18rem);
  opacity: 0;
  animation: entryText 1600ms ease forwards;
}

.entry-copy h1 {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(4.6rem, 15vw, 14rem);
  font-weight: 500;
  line-height: 0.85;
  opacity: 0;
  transform: translateY(0.5rem);
  animation: entryTitle 1600ms 180ms ease forwards;
}

.entry-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  width: min(30rem, 100%);
  margin-top: 1rem;
}

.entry-index span {
  height: 0.35rem;
  background: var(--line);
  overflow: hidden;
  position: relative;
}

.entry-index span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-100%);
  animation: entryBar 1300ms ease forwards;
}

.entry-index span:nth-child(2)::after {
  animation-delay: 180ms;
}

.entry-index span:nth-child(3)::after {
  animation-delay: 360ms;
}

.entry-index span:nth-child(4)::after {
  animation-delay: 540ms;
}

.site-main {
  min-height: 100vh;
  padding-top: 3.8rem;
}

body.is-info-view .site-main {
  padding-top: 0;
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.gravity-stage {
  position: relative;
  min-height: 100vh;
  margin-top: -3.8rem;
  overflow: hidden;
  padding: 0;
  background: var(--page);
  transition: background 700ms ease;
}

.gravity-stage::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
  transition: background 700ms ease;
}

body.is-info-view .gravity-stage::before,
body.is-info-view .stage-focus,
body.is-info-view .cover-field {
  display: none;
}

.cover-field {
  position: fixed;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.cover-token {
  position: absolute;
  display: block;
  width: clamp(4.9rem, 8.8vw, 8.25rem);
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(245, 241, 234, 0.16);
  background: #111;
  box-shadow:
    0 1.4rem 3rem rgba(0, 0, 0, 0.38),
    0 0 0 0 rgba(126, 178, 173, 0);
  cursor: grab;
  touch-action: none;
  user-select: none;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    opacity 200ms ease,
    filter 200ms ease;
  will-change: transform;
}

.cover-token::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.cover-token:active {
  cursor: grabbing;
}

.cover-token.is-drag-source {
  opacity: 0;
}

.cover-token.drag-proxy {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  pointer-events: none;
}

.cover-token img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.cover-token span {
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.42rem;
  z-index: 1;
  display: grid;
  gap: 0.02rem;
  color: rgba(245, 241, 234, 0.82);
  font-size: clamp(0.54rem, 0.72vw, 0.68rem);
  line-height: 1.05;
  opacity: 0.78;
  text-align: left;
  text-shadow: 0 0.08rem 0.34rem rgba(0, 0, 0, 0.85);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cover-token span strong,
.cover-token span small {
  display: block;
  overflow-wrap: anywhere;
}

.cover-token span strong {
  font-weight: 500;
}

.cover-token span small {
  color: rgba(245, 241, 234, 0.62);
  font-size: 0.62rem;
}

.cover-token:hover span,
.cover-token.is-focused span {
  opacity: 1;
  transform: translateY(-0.08rem);
}

.cover-token.is-focused {
  border-color: color-mix(in srgb, var(--album-b) 78%, white 12%);
  filter: saturate(1.08) brightness(1.06);
  box-shadow:
    0 1.4rem 3.5rem rgba(0, 0, 0, 0.48),
    0 0 3.4rem color-mix(in srgb, var(--album-b) 52%, transparent);
}

.cover-token.is-intro-focused {
  box-shadow:
    0 1.8rem 4rem rgba(0, 0, 0, 0.52),
    0 0 4.2rem color-mix(in srgb, var(--album-a) 46%, transparent);
}

.stage-target {
  position: relative;
  z-index: 1;
  width: 8rem;
  flex: 0 0 8rem;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--album-b) 42%, rgba(245, 241, 234, 0.14));
  border-radius: 0.22rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 44%),
    var(--record-art) center / cover;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 -2rem 3rem rgba(0, 0, 0, 0.12),
    0 1rem 2.2rem rgba(0, 0, 0, 0.34),
    0 0 3.2rem color-mix(in srgb, var(--album-a) 30%, transparent);
  transition:
    border-color 700ms ease,
    background 500ms ease,
    box-shadow 700ms ease;
}

.stage-target::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 241, 234, 0.08);
  pointer-events: none;
}

.stage-target::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.stage-focus {
  position: fixed;
  top: clamp(5.4rem, 14vh, 9rem);
  right: 1rem;
  bottom: auto;
  z-index: 6;
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  align-items: center;
  gap: 0.78rem;
  min-width: min(31rem, calc(100vw - 2rem));
  max-width: min(31rem, calc(100vw - 2rem));
  width: min(31rem, calc(100vw - 2rem));
  min-height: 11.25rem;
  max-height: 11.25rem;
  height: 11.25rem;
  padding: 0.72rem;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--album-a) 16%, transparent), transparent 62%),
    var(--panel-bg);
  backdrop-filter: blur(14px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
  text-shadow: 0 0 1.7rem color-mix(in srgb, var(--album-a) 26%, transparent);
}

.stage-focus .stage-target {
  width: 8rem;
  height: auto;
  flex-basis: auto;
}

.focus-copy {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-content: center;
  gap: 0.44rem;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.stage-focus p:first-child {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.stage-focus h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.65rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.12;
  display: block;
  max-height: none;
  overflow: visible;
  overflow-wrap: anywhere;
}

.stage-focus span,
#focus-role {
  color: var(--muted);
  font-size: 0.92rem;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.focus-tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-content: start;
  min-height: 0;
  overflow: auto;
  margin-top: 0.2rem;
  padding-right: 0.2rem;
}

.focus-tracks a,
.focus-tracks span {
  padding: 0.2rem 0.45rem;
  background: color-mix(in srgb, var(--album-a) 32%, var(--soft));
  font-size: 0.86rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.focus-platforms {
  gap: 0.35rem;
  margin-top: 0.1rem;
}

.stage-focus p:first-child,
#focus-role,
.focus-tracks,
.focus-platforms,
.platform-links.focus-platforms {
  display: none;
}

.focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-self: start;
  align-self: end;
  margin-top: 0;
}

#focus-open,
.motion-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.15rem;
  min-height: 2rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid color-mix(in srgb, var(--album-b) 32%, rgba(245, 241, 234, 0.12));
  background: color-mix(in srgb, var(--album-b) 12%, rgba(9, 11, 12, 0.42));
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

#focus-open:hover,
.motion-button:hover {
  background: color-mix(in srgb, var(--album-b) 22%, rgba(9, 11, 12, 0.5));
  box-shadow: 0 0 1.4rem color-mix(in srgb, var(--album-b) 24%, transparent);
  transform: translateY(-0.08rem);
}

.motion-button {
  display: none;
}

body.motion-enabled .motion-button {
  display: none;
}

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

  .entry-screen {
    display: none;
  }

  .cover-token {
    will-change: auto;
  }
}

body.is-lite-mode .cover-token {
  box-shadow: 0 0.7rem 1.45rem rgba(0, 0, 0, 0.32);
  transition-duration: 120ms;
  will-change: auto;
}

body.is-lite-mode .cover-token.is-focused {
  filter: none;
  box-shadow:
    0 0.85rem 1.8rem rgba(0, 0, 0, 0.36),
    0 0 1.7rem color-mix(in srgb, var(--album-b) 30%, transparent);
}

body.is-lite-mode .cover-token.is-intro-focused {
  box-shadow:
    0 0.9rem 1.9rem rgba(0, 0, 0, 0.38),
    0 0 1.8rem color-mix(in srgb, var(--album-a) 26%, transparent);
}

body.is-lite-mode .stage-target,
body.is-lite-mode .stage-focus,
body.is-lite-mode .info-shell,
body.is-lite-mode .modal-card {
  box-shadow: 0 0.75rem 1.65rem rgba(0, 0, 0, 0.32);
}

body.is-lite-mode .stage-focus,
body.is-lite-mode .info-shell,
body.is-lite-mode .modal-backdrop {
  backdrop-filter: none;
}

#focus-open svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.modal-copy em {
  font-style: italic;
}
.info-view {
  max-width: 82rem;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.2rem) 1rem 3rem;
  background: var(--page);
}

.info-shell {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(125deg, color-mix(in srgb, var(--album-a) 26%, transparent), transparent 54%),
    linear-gradient(310deg, color-mix(in srgb, var(--album-b) 20%, transparent), transparent 48%),
    color-mix(in srgb, var(--panel-bg) 94%, #000);
  backdrop-filter: blur(14px);
  box-shadow:
    0 2rem 5rem rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px color-mix(in srgb, var(--album-a) 18%, transparent);
}

.info-portrait {
  position: relative;
  min-height: 25rem;
  isolation: isolate;
}

.info-portrait::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid color-mix(in srgb, var(--album-b) 35%, rgba(245, 241, 234, 0.08));
  pointer-events: none;
}

.info-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.info-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.04) contrast(1.04);
}

.info-portrait figcaption {
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  bottom: 1.8rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  color: var(--ink);
  font-size: 0.85rem;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.75);
}

.info-copy {
  display: grid;
  align-content: center;
  gap: 0.82rem;
  padding: clamp(1.25rem, 3.5vw, 2.65rem);
  color: var(--muted);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.52;
}

.info-kicker {
  color: color-mix(in srgb, var(--album-b) 68%, var(--ink));
  font-size: 0.78rem;
  line-height: 1;
}

.info-copy h1 {
  color: var(--ink);
  font-size: clamp(3rem, 6.4vw, 5.5rem);
  font-weight: 500;
  line-height: 0.86;
}

.info-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 42rem;
}

.info-ribbon span {
  border: 1px solid color-mix(in srgb, var(--album-b) 35%, var(--panel-border));
  padding: 0.28rem 0.55rem 0.32rem;
  background: color-mix(in srgb, var(--album-a) 13%, rgba(0, 0, 0, 0.18));
  color: color-mix(in srgb, var(--ink) 88%, var(--album-b));
  font-size: 0.82rem;
  line-height: 1;
}

.info-copy > p:not(.info-kicker) {
  max-width: 43rem;
}

.info-notes {
  display: grid;
  gap: 0;
  margin-top: 0.25rem;
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
}

.info-notes div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.6rem 0;
}

.info-notes div + div {
  border-top: 1px solid var(--panel-border);
}

.info-notes span {
  color: var(--ink);
  font-size: 0.78rem;
}

.info-notes p {
  color: var(--muted);
}

.contact-block {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.3rem;
}

.contact-block h2,
.modal-copy h2 {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 500;
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--panel-border);
  border: 1px solid var(--panel-border);
}

.listen-grid a {
  display: grid;
  align-content: space-between;
  min-height: 4.45rem;
  padding: 0.62rem;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--album-a) 12%, transparent), transparent),
    color-mix(in srgb, var(--panel-bg) 86%, #000);
}

.listen-grid span {
  color: color-mix(in srgb, var(--album-b) 72%, var(--muted));
  font-size: 0.72rem;
}

.listen-grid strong {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
}

.info-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--page) 38%, var(--modal-backdrop));
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: min(calc(100% - 2rem), 70rem);
  height: min(43rem, calc(100dvh - 2rem));
  overflow: hidden;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--album-a) 26%, transparent), transparent 54%),
    linear-gradient(210deg, color-mix(in srgb, var(--album-b) 15%, transparent), transparent 48%),
    color-mix(in srgb, var(--panel-bg) 88%, #000);
  touch-action: pan-y;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.42),
    0 0 7rem color-mix(in srgb, var(--album-a) 28%, transparent);
}

.modal-art-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 18rem;
  padding: clamp(1rem, 4vw, 3rem);
}

.modal-art-shell img {
  position: relative;
  z-index: 1;
  width: min(74%, 21rem);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid color-mix(in srgb, var(--album-b) 34%, rgba(245, 241, 234, 0.1));
  box-shadow:
    0 1.5rem 4rem rgba(0, 0, 0, 0.48),
    0 0 2.5rem color-mix(in srgb, var(--album-a) 28%, transparent);
}

.modal-copy {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  gap: 1.2rem;
  align-content: center;
  min-height: 0;
  overflow: hidden;
  padding: 1rem;
}

.modal-copy h1 {
  font-size: clamp(2.3rem, 5.4vw, 5.2rem);
  font-weight: 600;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.modal-copy > div {
  min-height: 0;
}

.modal-year {
  margin-top: -1rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.track-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-content: start;
  max-height: 100%;
  overflow: auto;
  padding-right: 0.2rem;
}

.track-list span,
.track-list a {
  padding: 0.28rem 0.5rem;
  border: 1px solid var(--panel-border);
  background: color-mix(in srgb, var(--album-a) 34%, var(--soft));
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.track-list a:hover {
  text-shadow: 0 0 12px rgba(126, 178, 173, 0.5);
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.info-platforms {
  margin-top: 0.35rem;
}

.instagram-handle {
  align-self: center;
  margin-right: 0.35rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.platform-icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  aspect-ratio: 1;
  border: 1px solid var(--panel-border);
  background: color-mix(in srgb, var(--album-a) 26%, rgba(245, 241, 234, 0.04));
  color: var(--ink);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.platform-icon:hover {
  background: color-mix(in srgb, var(--album-b) 30%, rgba(245, 241, 234, 0.08));
  box-shadow: 0 0 1.6rem color-mix(in srgb, var(--album-b) 34%, transparent);
  transform: translateY(-0.1rem);
}

.platform-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.platform-icon.spotify svg circle,
.platform-icon.spotify svg path:first-of-type,
.platform-icon.spotify svg path:nth-of-type(2),
.platform-icon.spotify svg path:nth-of-type(3) {
  fill: none;
}

.close-button {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.3rem;
  line-height: 1;
}

.modal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--panel-border);
  font-size: 0.9rem;
}

.modal-back,
.transport-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--album-b) 36%, var(--panel-border));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--album-b) 20%, transparent), transparent),
    rgba(245, 241, 234, 0.035);
  color: var(--ink);
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.modal-back {
  gap: 0.35rem;
  min-height: 2.5rem;
  padding: 0.55rem 0.8rem 0.58rem 0.62rem;
}

.modal-transport {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.28rem;
  border: 1px solid color-mix(in srgb, var(--album-a) 26%, var(--panel-border));
  background: color-mix(in srgb, var(--page) 70%, rgba(0, 0, 0, 0.42));
  box-shadow:
    inset 0 0 0 1px rgba(245, 241, 234, 0.035),
    0 0 2rem color-mix(in srgb, var(--album-b) 12%, transparent);
}

.transport-button {
  gap: 0.3rem;
  min-width: 5.25rem;
  min-height: 2.25rem;
  padding: 0.45rem 0.72rem;
  text-transform: lowercase;
}

.modal-back svg,
.transport-button svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.modal-back:hover,
.transport-button:hover {
  border-color: color-mix(in srgb, var(--album-b) 70%, var(--ink));
  background: color-mix(in srgb, var(--album-b) 22%, rgba(245, 241, 234, 0.06));
  box-shadow: 0 0 1.4rem color-mix(in srgb, var(--album-b) 26%, transparent);
  transform: translateY(-0.06rem);
}

.modal-nav button:disabled {
  opacity: 0.36;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@keyframes entryTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes entryText {
  to {
    opacity: 1;
  }
}

@keyframes entryBar {
  to {
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .site-header {
    padding: 1rem 1.25rem;
    background: transparent;
    backdrop-filter: none;
  }

  .site-main {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }

  body.is-info-view .site-main {
    padding-top: 0;
    padding-bottom: 0;
  }

  .gravity-stage {
    min-height: 100vh;
    margin-top: -4rem;
    padding: 0;
  }

  .info-view {
    max-width: min(82rem, calc(100vw - 2rem));
    min-height: 100dvh;
    display: grid;
    align-items: center;
    padding: 4.2rem 1rem 0.9rem;
  }

  .info-shell {
    grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
    max-height: calc(100dvh - 5.4rem);
  }

  .info-portrait {
    min-height: 0;
    height: min(34.5rem, calc(100dvh - 5.4rem));
  }

  .info-copy {
    align-content: center;
    gap: clamp(0.48rem, 1.1vh, 0.74rem);
    padding: clamp(1.05rem, 2.25vw, 1.85rem);
    font-size: clamp(0.88rem, 1.15vw, 1rem);
    line-height: 1.42;
  }

  .info-copy h1 {
    font-size: clamp(2.8rem, 5.6vw, 4.7rem);
  }

  .info-ribbon {
    gap: 0.35rem;
  }

  .info-ribbon span {
    padding: 0.24rem 0.46rem 0.28rem;
    font-size: 0.76rem;
  }

  .info-notes {
    margin-top: 0.05rem;
  }

  .info-notes div {
    grid-template-columns: minmax(7.5rem, 0.31fr) minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.45rem 0;
  }

  .contact-block {
    gap: 0.48rem;
    margin-top: 0.05rem;
  }

  .listen-grid a {
    min-height: 3.55rem;
    padding: 0.5rem;
  }

  .info-footer {
    margin-top: 0.35rem;
  }

  .modal-card {
    grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
    height: min(43rem, calc(100dvh - 4rem));
  }

  .modal-art-shell {
    min-height: 0;
  }

  .modal-copy {
    padding: 2.5rem 3rem 2.5rem 0;
  }
}

@media (max-width: 560px) {
  html,
  body:not(.is-info-view):not(.is-modal-open) {
    height: 100%;
    overflow: hidden;
  }

  body {
    --page: #090b0c;
    --header: rgba(9, 11, 12, 0.9);
  }

  body:not(.is-info-view):not(.is-modal-open) .site-main {
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
    padding-top: 0;
  }

  .gravity-stage {
    height: 100dvh;
    min-height: 100dvh;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    background: #090b0c;
  }

  .stage-target {
    left: auto;
    right: auto;
    top: auto;
    width: 2.9rem;
    flex-basis: 2.9rem;
  }

  .stage-focus .stage-target {
    width: 2.9rem;
    height: auto;
    flex-basis: 2.9rem;
  }

  .stage-focus {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    min-height: 5.55rem;
    max-height: 5.55rem;
    height: 5.55rem;
    grid-template-columns: 2.9rem minmax(0, 1fr);
    gap: 0.62rem;
    padding: 0.48rem 0.72rem calc(0.48rem + env(safe-area-inset-bottom));
    border-width: 1px 0 0;
    background: rgba(9, 11, 12, 0.86);
  }

  .stage-focus h2 {
    font-size: clamp(0.95rem, 5vw, 1.28rem);
    line-height: 1.08;
  }

  .stage-focus p:first-child,
  #focus-role,
  .focus-platforms {
    display: none;
  }

  .focus-copy {
    display: grid;
    grid-template-rows: auto auto;
    align-content: center;
    gap: 0.18rem;
  }

  .stage-focus h2 {
    max-height: none;
  }

  .focus-tracks {
    display: none;
  }

  .focus-actions {
    display: none;
  }

  .motion-button {
    display: inline-flex;
  }

  .info-view {
    padding-top: 5.1rem;
  }

  body.is-info-view .site-main {
    padding-top: 0;
    padding-bottom: 0;
  }

  .info-portrait {
    min-height: 22rem;
  }

  .info-portrait::before {
    inset: 0.7rem;
  }

  .info-portrait figcaption {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    display: grid;
    justify-content: start;
    font-size: 0.78rem;
  }

  .info-copy {
    gap: 0.9rem;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.52;
  }

  .info-copy h1 {
    font-size: clamp(2.7rem, 17vw, 4.1rem);
  }

  .info-ribbon {
    gap: 0.35rem;
  }

  .info-ribbon span {
    font-size: 0.74rem;
  }

  .info-notes div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.62rem 0;
  }

  .listen-grid {
    grid-template-columns: 1fr;
  }

  .listen-grid a {
    min-height: 4rem;
  }

  .cover-token {
    width: clamp(4rem, 18vw, 5.4rem);
  }

  .cover-token::after,
  .cover-token span,
  .cover-token:hover span,
  .cover-token.is-focused span {
    display: none;
  }

  .modal {
    align-items: center;
    padding: 0.55rem;
  }

  .modal-card {
    width: 100%;
    height: calc(100dvh - 1.1rem);
    overflow: auto;
  }

  .modal-art-shell {
    min-height: 0;
    padding: 1rem 1rem 0.35rem;
  }

  .modal-art-shell img {
    width: min(68%, 13.75rem);
  }

  .modal-copy {
    gap: 0.85rem;
    align-content: start;
    min-height: 0;
    overflow: visible;
    padding: 0.4rem 1rem 1rem;
  }

  .modal-copy h1 {
    font-size: clamp(1.85rem, 9vw, 2.85rem);
    line-height: 0.94;
  }

  .modal-year {
    margin-top: -0.55rem;
    font-size: 0.98rem;
  }

  .track-list {
    max-height: none;
    overflow: auto;
    padding-right: 0.2rem;
  }

  .track-list span,
  .track-list a {
    padding: 0.34rem 0.48rem;
    font-size: 0.92rem;
    line-height: 1.05;
  }

  .platform-links {
    gap: 0.4rem;
  }

  .platform-icon {
    width: 2.05rem;
  }

  .modal-nav {
    display: none;
  }
}


