:root {
  --bg: 184 198 198;
  --ink: 29 33 32;
  --muted: 77 88 86;
  --accent: 143 63 69;
  --accent-2: 220 171 137;
  --glow: 236 208 173;
  --panel: 204 214 212;
  --line: 29 33 32;
  --section-progress: 0;
  --page-progress: 0;
  --header-height: 72px;
  --gutter: clamp(18px, 3vw, 52px);
  --radius: 0px;
  --shadow: 0 30px 80px rgb(0 0 0 / .22);
  --sans: Figtree, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Figtree, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "Belleza", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: rgb(var(--bg));
}

body {
  margin: 0;
  min-width: 300px;
  color: rgb(var(--ink));
  background: rgb(var(--bg));
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: clip;
  transition: color .3s linear, background-color .3s linear;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: var(--gutter);
  padding: 10px 14px;
  border-radius: 0;
  background: rgb(var(--ink));
  color: rgb(var(--bg));
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

::selection {
  background: rgb(var(--accent));
  color: rgb(var(--ink));
}

:focus-visible {
  outline: 2px solid rgb(var(--accent));
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgb(var(--bg)) 0%, color-mix(in srgb, rgb(var(--bg)) 82%, black) 100%);
}

.ambient__orb {
  position: absolute;
  width: 62vw;
  aspect-ratio: 1;
  border-radius: 0;
  filter: blur(90px);
  opacity: .36;
  will-change: transform, background-color;
  transition: background-color .35s linear;
}

.ambient__orb--one {
  top: -26vw;
  left: -14vw;
  background: rgb(var(--accent));
  transform: translate3d(calc(var(--section-progress) * 6vw), 0, 0);
}

.ambient__orb--two {
  right: -26vw;
  bottom: -30vw;
  background: rgb(var(--accent-2));
  transform: translate3d(calc(var(--section-progress) * -5vw), 0, 0);
}

.ambient__mesh {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgb(var(--line) / .14) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--line) / .14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.ambient__grain {
  position: absolute;
  inset: -50%;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  animation: grain 7s steps(7) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2%, -3%); }
  50% { transform: translate(-4%, 2%); }
  75% { transform: translate(3%, 4%); }
  100% { transform: translate(0, 0); }
}

.topbar {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header-height);
  padding: max(10px, env(safe-area-inset-top)) var(--gutter) 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  color: rgb(var(--ink));
  border-bottom: 1px solid rgb(var(--line) / .17);
  backdrop-filter: blur(24px) saturate(1.25);
  background: rgb(var(--bg) / .56);
  transition: color .3s linear, background-color .3s linear, border-color .3s linear;
}

.topbar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: rgb(var(--accent));
  box-shadow: 0 0 14px rgb(var(--accent) / .58);
  transform: scaleX(var(--page-progress));
  transform-origin: left;
  transition: background-color .3s linear;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgb(var(--line) / .45);
  border-radius: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: -.08em;
}

.brand__name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.album-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 7px;
}

.album-nav__status {
  margin-right: 8px;
  color: rgb(var(--muted));
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.album-nav__button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.album-nav__button::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 0;
  background: rgb(var(--ink) / .34);
  transition: inset .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.album-nav__button:hover::before,
.album-nav__button[aria-current="true"]::before {
  inset: 6px;
  background: rgb(var(--accent));
  box-shadow: 0 0 0 1px rgb(var(--ink) / .45), 0 0 22px rgb(var(--accent) / .55);
}

.atlas-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 6px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

main {
  display: block;
}

.prologue {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 8vh) var(--gutter) 7vh;
  display: grid;
  align-content: center;
  overflow: hidden;
}

.prologue::before {
  content: "";
  position: absolute;
  width: min(56vw, 760px);
  aspect-ratio: 1;
  right: -9vw;
  top: 13vh;
  border: 1px solid rgb(var(--line) / .22);
  border-radius: 0;
  box-shadow:
    0 0 0 6vw rgb(var(--accent) / .055),
    0 0 0 12vw rgb(var(--accent-2) / .04);
}

.prologue__eyebrow,
.album__eyebrow,
.track-dialog__index,
.track-dialog__album,
.footer,
.album__count,
.album__catalogue {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.prologue__eyebrow {
  margin-bottom: clamp(20px, 4vh, 48px);
  font-size: 11px;
}

.prologue h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 10vw, 168px);
  font-weight: 300;
  line-height: .78;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.prologue__dek {
  max-width: 38ch;
  margin: clamp(28px, 5vh, 60px) 0 0;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.5;
  color: rgb(var(--muted));
}

.prologue__cue {
  width: max-content;
  margin-top: clamp(38px, 7vh, 86px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.prologue__line {
  width: 88px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: breathe 2.5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scaleX(.35); opacity: .5; }
  50% { transform: scaleX(1); opacity: 1; }
}

.album {
  --local-accent: var(--accent);
  --local-accent-2: var(--accent-2);
  position: relative;
  min-height: 112svh;
  padding: calc(var(--header-height) + 6vh) var(--gutter) 10vh;
  container-type: inline-size;
  isolation: isolate;
}

.album::before {
  content: attr(data-roman);
  position: absolute;
  z-index: -1;
  right: 1vw;
  top: 10vh;
  font-family: var(--serif);
  font-size: min(38vw, 560px);
  font-weight: 300;
  line-height: .7;
  color: rgb(var(--ink) / .055);
  pointer-events: none;
}

.album__shell {
  width: min(1500px, 100%);
  min-height: calc(100svh - var(--header-height) - 16vh);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(330px, 1.08fr);
  gap: clamp(36px, 7vw, 120px);
  align-items: center;
}

.album__visual {
  position: relative;
  min-width: 0;
}

.album__cover-wrap {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  width: min(100%, 700px);
  margin-inline: auto;
  perspective: 1200px;
}

.album__cover {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0;
  background: rgb(var(--panel));
  box-shadow: var(--shadow);
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}

.album__cover::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(130deg, rgb(255 255 255 / .18), transparent 24%, transparent 74%, rgb(0 0 0 / .22)),
    radial-gradient(circle at 25% 10%, rgb(var(--glow) / .17), transparent 30%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.album__cover::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgb(255 255 255 / .24);
  border-radius: 0;
  pointer-events: none;
}

.album__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.018);
}

.album__cover-reflection {
  position: absolute;
  z-index: -1;
  inset: 12% -8% -10% 8%;
  border-radius: 0;
  background: rgb(var(--local-accent) / .35);
  filter: blur(58px);
  transform: translateZ(-100px);
}

.album__palette {
  position: absolute;
  z-index: 4;
  left: clamp(12px, 3vw, 32px);
  bottom: clamp(12px, 3vw, 32px);
  display: flex;
  padding: 7px;
  gap: 5px;
  border: 1px solid rgb(255 255 255 / .25);
  border-radius: 0;
  background: rgb(0 0 0 / .22);
  backdrop-filter: blur(12px);
}

.palette-chip {
  width: 23px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgb(255 255 255 / .3);
  border-radius: 0;
  background: var(--chip);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.palette-chip:hover,
.palette-chip:focus-visible {
  transform: scale(1.22);
  box-shadow: 0 0 0 4px rgb(255 255 255 / .16);
}

.palette-chip[aria-pressed="true"] {
  transform: scale(1.18);
  box-shadow:
    0 0 0 2px rgb(255 255 255 / .9),
    0 0 0 5px rgb(var(--ink) / .45),
    0 0 20px rgb(var(--accent) / .65);
}

.album__caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  color: rgb(var(--muted));
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.album__copy {
  min-width: 0;
  align-self: center;
}

.album__meta-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: clamp(20px, 3vw, 42px);
}

.album__eyebrow,
.album__count,
.album__catalogue {
  font-size: 10px;
}

.album__meta-line {
  flex: 1;
  height: 1px;
  background: rgb(var(--line) / .25);
}

.album__title {
  margin: 0;
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 116px);
  font-weight: 300;
  line-height: .82;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.album__subtitle {
  margin: clamp(18px, 3vw, 32px) 0 0;
  max-width: 44ch;
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.55;
  color: rgb(var(--muted));
}

.track-grid {
  margin-top: clamp(36px, 5vw, 72px);
  border-top: 1px solid rgb(var(--line) / .3);
}

.track {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgb(var(--line) / .18);
  background: transparent;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.track::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(var(--accent) / .12);
  transform: translateX(-102%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}

.track:hover::before,
.track:focus-visible::before {
  transform: translateX(0);
}

.track__number,
.track__open {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.track__number {
  color: rgb(var(--muted));
}

.track__title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 500;
}

.track__open {
  opacity: .5;
  transition: opacity .2s ease, transform .2s ease;
}

.track:hover .track__open,
.track:focus-visible .track__open {
  opacity: 1;
  transform: translate(3px, -3px);
}

.album[data-layout="neon"] .album__cover {
  border-radius: 0;
  transform: rotate(-1.8deg) rotateX(var(--rx)) rotateY(var(--ry));
}

.album[data-layout="desert"] .album__cover-wrap {
  width: min(92%, 620px);
}

.album[data-layout="desert"] .album__cover {
  border-radius: 0;
}

.album[data-layout="celestial"] .album__cover,
.album[data-layout="moon"] .album__cover {
  border-radius: 0;
}

.album[data-layout="celestial"] .album__cover-wrap,
.album[data-layout="moon"] .album__cover-wrap {
  width: min(100%, 700px);
}

.album[data-layout="moon"] .album__cover-wrap::after {
  content: none;
}

.album[data-layout="moon"] .album__title {
  max-width: 10ch;
}

.footer {
  min-height: 100px;
  padding: 28px var(--gutter) max(28px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: end;
  border-top: 1px solid rgb(var(--line) / .22);
  font-size: 9px;
  color: rgb(var(--muted));
}

.footer span:nth-child(2) {
  text-align: center;
}

.footer span:last-child {
  text-align: right;
}

.track-dialog,
.atlas-dialog {
  color: rgb(var(--ink));
  background: rgb(var(--panel));
  border: 1px solid rgb(var(--line) / .3);
  box-shadow: 0 40px 120px rgb(0 0 0 / .5);
}

.track-dialog::backdrop,
.atlas-dialog::backdrop {
  background: rgb(0 0 0 / .58);
  backdrop-filter: blur(10px);
}

.track-dialog {
  width: min(720px, calc(100vw - 28px));
  max-height: min(760px, calc(100svh - 28px));
  padding: clamp(28px, 5vw, 68px);
  border-radius: 0;
  overflow: auto;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgb(var(--line) / .3);
  border-radius: 0;
  background: transparent;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.track-dialog__index,
.track-dialog__album {
  font-size: 10px;
  color: rgb(var(--muted));
}

.track-dialog__album {
  margin: 22px 0 8px;
}

.track-dialog h2 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(48px, 9vw, 94px);
  font-weight: 300;
  line-height: .85;
  letter-spacing: -.05em;
}

.track-dialog__feat {
  margin: 20px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  color: rgb(var(--muted));
}

.track-dialog blockquote {
  margin: clamp(34px, 7vw, 68px) 0 0;
  padding-left: 24px;
  border-left: 3px solid rgb(var(--accent));
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 38px);
  line-height: 1.18;
}

.track-dialog__palette {
  display: flex;
  gap: 7px;
  margin-top: 48px;
}

.track-dialog__palette span {
  flex: 1;
  height: 8px;
  border-radius: 0;
}

.atlas-dialog {
  width: min(1500px, calc(100vw - 24px));
  height: min(900px, calc(100svh - 24px));
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}

.atlas-dialog__bar {
  height: 62px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgb(var(--line) / .22);
  font-family: var(--mono);
  background: rgb(var(--panel));
}

.atlas-dialog__bar > div {
  display: flex;
  align-items: baseline;
  gap: 13px;
  min-width: 0;
}

.atlas-dialog__bar strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.atlas-dialog__bar span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgb(var(--muted));
  font-size: 10px;
}

.dialog-close--atlas {
  position: static;
  flex: 0 0 auto;
}

.atlas-dialog iframe {
  display: block;
  width: 100%;
  height: calc(100% - 62px);
  border: 0;
  background: #f4f1e8;
}

.noscript {
  position: fixed;
  z-index: 100;
  inset: auto 12px 12px;
  padding: 14px;
  border-radius: 0;
  background: #111;
  color: #fff;
  font: 12px var(--mono);
}

@container (max-width: 900px) {
  .album__shell {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .album__visual {
    width: min(82vw, 650px);
    margin-inline: auto;
  }

  .album__copy {
    width: min(780px, 100%);
    margin-inline: auto;
  }

  .album__title {
    max-width: 13ch;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 62px;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .brand__name,
  .album-nav {
    display: none;
  }

  .prologue {
    padding-top: calc(var(--header-height) + 9vh);
  }

  .prologue h1 {
    max-width: 9ch;
    font-size: clamp(60px, 18vw, 104px);
    line-height: .82;
  }

  .prologue::before {
    width: 96vw;
    right: -43vw;
    top: 14vh;
  }

  .album {
    min-height: auto;
    padding-top: calc(var(--header-height) + 36px);
  }

  .album__visual {
    width: 100%;
  }

  .album__cover-wrap {
    width: min(88vw, 600px);
  }

  .album__title {
    font-size: clamp(50px, 15vw, 82px);
  }

  .album__subtitle {
    font-size: 14px;
  }

  .track-grid {
    margin-top: 38px;
  }

  .track {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    padding: 13px 0;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 520px) {
  :root {
    --gutter: 16px;
  }

  .brand__mark {
    width: 31px;
  }

  .atlas-trigger span:first-child {
    display: none;
  }

  .prologue__dek {
    max-width: 28ch;
  }

  .album__shell {
    gap: 38px;
  }

  .album__cover-wrap {
    width: 100%;
  }

  .album__caption {
    font-size: 8px;
  }

  .album__meta-row {
    gap: 9px;
  }

  .album__catalogue {
    display: none;
  }

  .track-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100svh - 12px);
    border-radius: 0;
  }

  .atlas-dialog {
    width: calc(100vw - 8px);
    height: calc(100svh - 8px);
    border-radius: 0;
  }
}

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

  .album__cover {
    transform: none !important;
  }
}


/* --- patch: prologue portrait, Malam palette position, lyric formatting --- */
.prologue {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 44vw);
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
}

.prologue__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.prologue__stage {
  position: relative;
  z-index: 1;
  min-height: min(70vh, 760px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.prologue__halo {
  position: absolute;
  inset: auto 6% 6% 10%;
  height: 58%;
  border-radius: 0;
  background: radial-gradient(circle at 50% 50%, rgb(var(--accent) / .28), transparent 70%);
  filter: blur(18px);
}

.prologue__portrait {
  position: relative;
  width: min(100%, 720px);
  margin: 0;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 28px 46px rgb(0 0 0 / .22));
}

.prologue__portrait img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
}

/* Malam albums (celestial, moon) previously pinned the palette top-left / top-right;
   removed so they inherit the shared bottom-centre placement, matching the Giornis. */

.album[data-layout="celestial"] .album__title,
.album[data-layout="moon"] .album__title {
  max-width: 15ch;
  font-size: clamp(48px, 6.4vw, 94px);
  line-height: .88;
}

.track-dialog blockquote {
  white-space: normal;
}

.lyric-line {
  display: block;
}

.lyric-line + .lyric-line {
  margin-top: .22em;
}

@media (max-width: 820px) {
  .prologue {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .prologue__stage {
    min-height: clamp(320px, 56vh, 520px);
    width: min(100%, 480px);
    justify-self: center;
  }

  .prologue__portrait img {
    width: min(100%, 440px);
  }
}

@media (max-width: 520px) {
  .prologue__stage {
    min-height: 300px;
    margin-top: 8px;
  }
}


/* --- patch v4: hero carousel, Harbour Bay Sounds branding, section effects --- */
.prologue {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 46vw);
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
}

.prologue__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.prologue__stage {
  position: relative;
  z-index: 1;
  min-height: min(72vh, 760px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.prologue__halo {
  position: absolute;
  inset: auto 6% 6% 10%;
  height: 58%;
  border-radius: 0;
  background: radial-gradient(circle at 50% 50%, rgb(var(--accent) / .28), transparent 70%);
  filter: blur(18px);
}

.hero-carousel {
  position: relative;
  width: min(100%, 760px);
  height: min(72vh, 760px);
}

.hero-carousel__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(.96);
  transition: opacity .65s ease, transform .65s ease;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-carousel__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgb(0 0 0 / .22));
}

.hero-carousel__nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgb(var(--line) / .18);
  border-radius: 0;
  backdrop-filter: blur(16px);
  background: rgb(var(--bg) / .32);
}

.hero-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgb(var(--ink) / .22);
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.hero-carousel__dot.is-active {
  transform: scale(1.25);
  background: rgb(var(--accent));
  box-shadow: 0 0 0 1px rgb(var(--line) / .24), 0 0 18px rgb(var(--accent) / .5);
}

.album {
  overflow: hidden;
}

.album__shell {
  position: relative;
  z-index: 2;
}

.album__artist {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgb(var(--muted));
}

.album__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.album__fx span,
.album__fx i,
.album__fx b {
  position: absolute;
  display: block;
}

.album__fx--room .fx-light {
  width: var(--size);
  height: var(--size);
  left: var(--x);
  top: var(--y);
  border-radius: 0;
  background: radial-gradient(circle, rgb(255 223 167 / .58), rgb(255 223 167 / 0));
  filter: blur(14px);
  animation: roomGlow 5.5s ease-in-out infinite;
  animation-delay: var(--delay);
}

.album__fx--room .fx-chime {
  top: calc(-3vh + var(--i) * 1.1vh);
  right: calc(12% + var(--i) * 3.6%);
  width: 2px;
  height: calc(90px + var(--i) * 12px);
  background: linear-gradient(to bottom, rgb(var(--line) / .1), rgb(var(--line) / .52));
  transform-origin: top center;
  animation: chimeSwing 4.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.album__fx--room .fx-chime::after {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -2px;
  width: 18px;
  height: 18px;
  border-radius: 0;
  background: radial-gradient(circle, rgb(252 226 182 / .85), rgb(252 226 182 / .12));
  filter: blur(1px);
}

.album__fx--neon .fx-bokeh {
  width: var(--size);
  height: var(--size);
  left: var(--x);
  top: var(--y);
  border-radius: 0;
  background: radial-gradient(circle, var(--tone), transparent 70%);
  filter: blur(24px);
  opacity: .5;
  animation: neonFloat 7s ease-in-out infinite;
  animation-delay: var(--delay);
}

.album__fx--neon .fx-blink {
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: 3px;
  border-radius: 0;
  background: var(--tone);
  box-shadow: 0 0 10px var(--tone), 0 0 28px var(--tone);
  animation: neonBlink 1.8s steps(2, end) infinite;
  animation-delay: var(--delay);
}

.album__fx--desert .fx-flare {
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgb(255 248 205 / .65), transparent 18%),
    radial-gradient(circle at 24% 22%, rgb(255 232 155 / .18), transparent 22%),
    linear-gradient(125deg, rgb(255 244 193 / .08), transparent 42%);
  mix-blend-mode: screen;
}

.album__fx--desert .fx-wind {
  left: -12%;
  top: var(--y);
  width: var(--w);
  height: 1px;
  border-top: 1px solid rgb(255 247 217 / .34);
  opacity: .7;
  transform: rotate(var(--r));
  animation: desertWind 6.5s linear infinite;
  animation-delay: var(--delay);
}

.album__fx--celestial .fx-star {
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 0;
  background: rgb(243 247 222 / .88);
  box-shadow: 0 0 12px rgb(243 247 222 / .5);
  animation: starTwinkle 3.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.album__fx--celestial .fx-wave {
  left: 50%;
  bottom: var(--y);
  width: var(--w);
  height: 44px;
  border: 1px solid rgb(202 241 235 / .22);
  border-radius: 0;
  transform: translateX(-50%);
  animation: waveDrift 6.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.album__fx--celestial .fx-breeze {
  left: -10%;
  top: var(--y);
  width: var(--w);
  height: 32px;
  border-top: 1px solid rgb(228 246 238 / .24);
  border-radius: 0;
  opacity: .55;
  filter: blur(.2px);
  animation: breezeDrift 8s linear infinite;
  animation-delay: var(--delay);
}

.album__fx--moon .fx-streak {
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: 2px;
  background: linear-gradient(90deg, rgb(255 140 96 / 0), rgb(255 140 96 / .5), rgb(119 182 237 / 0));
  filter: blur(1px);
  transform: rotate(var(--r));
  animation: monsoonStreak 2.4s ease-in-out infinite;
  animation-delay: var(--delay);
}

.album__fx--moon::before,
.album__fx--moon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 0%, rgb(255 97 139 / .05) 36%, transparent 52%, rgb(82 172 255 / .07) 80%, transparent 100%);
  mix-blend-mode: screen;
}

.album__fx--moon::after {
  transform: translateX(8px);
  filter: blur(12px);
}

.album[data-layout="moon"] .album__cover {
  animation: monsoonBlur 6s ease-in-out infinite;
}

.album[data-layout="moon"] .album__cover img {
  filter: contrast(1.04) saturate(1.08);
}

@keyframes roomGlow {
  0%, 100% { transform: scale(.88); opacity: .28; }
  50% { transform: scale(1.12); opacity: .6; }
}

@keyframes chimeSwing {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(5deg); }
}

@keyframes neonFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.92); opacity: .3; }
  50% { transform: translate3d(0, -18px, 0) scale(1.04); opacity: .56; }
}

@keyframes neonBlink {
  0%, 100% { opacity: .35; }
  45% { opacity: 1; }
  60% { opacity: .16; }
}

@keyframes desertWind {
  0% { transform: translateX(-8%) rotate(var(--r)); opacity: 0; }
  12% { opacity: .55; }
  100% { transform: translateX(115%) rotate(var(--r)); opacity: 0; }
}

@keyframes starTwinkle {
  0%, 100% { opacity: .25; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes waveDrift {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .24; }
  50% { transform: translateX(-50%) translateY(-10px); opacity: .44; }
}

@keyframes breezeDrift {
  0% { transform: translateX(-6%); opacity: 0; }
  15% { opacity: .4; }
  100% { transform: translateX(106%); opacity: 0; }
}

@keyframes monsoonStreak {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--r)); opacity: 0; }
  35% { opacity: .7; }
  100% { transform: translate3d(52px, 18px, 0) rotate(var(--r)); opacity: 0; }
}

@keyframes monsoonBlur {
  0%, 100% { transform: translate3d(0,0,0); box-shadow: var(--shadow); }
  18% { transform: translate3d(-2px, 0, 0); }
  21% { transform: translate3d(2px, 0, 0); }
  24% { transform: translate3d(0,0,0); }
  58% { box-shadow: 8px 0 80px rgb(255 80 121 / .08), -8px 0 80px rgb(82 172 255 / .08), var(--shadow); }
}

@media (max-width: 820px) {
  .prologue {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .prologue__stage {
    min-height: clamp(360px, 56vh, 560px);
    width: min(100%, 480px);
    justify-self: center;
  }

  .hero-carousel {
    height: min(56vh, 560px);
  }
}

@media (max-width: 520px) {
  .prologue__stage {
    min-height: 320px;
    margin-top: 8px;
  }

  .hero-carousel {
    height: 320px;
  }

  .hero-carousel__nav {
    bottom: -4px;
  }
}


/* --- patch v6: solo hero portrait, no forced title break --- */
.prologue h1 {
  max-width: none;
  line-height: .88;
  text-wrap: initial;
}

.prologue__stage {
  align-items: flex-end;
  justify-content: flex-end;
}

.prologue__portrait--solo {
  position: relative;
  width: min(100%, 980px);
  height: min(80vh, 980px);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.prologue__portrait--solo img {
  display: block;
  width: min(100%, 920px);
  max-height: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 46px rgb(0 0 0 / .24));
}

.hero-carousel,
.hero-carousel__nav {
  display: none !important;
}

@media (max-width: 820px) {
  .prologue h1 {
    max-width: none;
    font-size: clamp(48px, 11vw, 88px);
    line-height: .92;
  }

  .prologue__stage {
    min-height: clamp(420px, 62vh, 680px);
    width: min(100%, 680px);
    justify-self: center;
  }

  .prologue__portrait--solo {
    width: 100%;
    height: min(62vh, 680px);
  }

  .prologue__portrait--solo img {
    width: min(100%, 620px);
  }
}

@media (max-width: 520px) {
  .prologue__stage {
    min-height: 380px;
  }

  .prologue__portrait--solo {
    height: 380px;
  }

  .prologue__portrait--solo img {
    width: min(100%, 430px);
  }
}


/* --- refinement: progress, responsive navigation, and intentional title wrapping --- */
.prologue h1 > span {
  display: block;
}

.prologue h1 > span + span {
  margin-top: .04em;
}

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .album-nav {
    position: absolute;
    left: 50%;
    display: flex;
    transform: translateX(-50%);
  }

  .album-nav__button {
    display: none;
  }

  .album-nav__status {
    margin-right: 0;
  }

  .atlas-trigger {
    position: absolute;
    right: var(--gutter);
    min-width: 34px;
    justify-content: flex-end;
  }

  .prologue h1 {
    max-width: 100%;
    text-wrap: balance;
  }

  .prologue h1 > span:first-child {
    max-width: 12ch;
  }
}

@media (max-width: 520px) {
  .album-nav__status {
    font-size: 8px;
    letter-spacing: .05em;
  }

  .atlas-trigger {
    width: auto;
    border-bottom: 0;
    font-size: 8px;
    letter-spacing: .08em;
  }

  .atlas-trigger span:first-child {
    display: inline !important;
  }

  .atlas-trigger__icon {
    display: none !important;
  }

  .prologue h1 {
    font-size: clamp(46px, 13.2vw, 58px);
    line-height: .88;
    letter-spacing: -.07em;
  }
}

@media (min-width: 821px) {
  .prologue {
    grid-template-columns: minmax(440px, .72fr) minmax(0, 1.28fr);
    gap: 0;
  }

  .prologue__stage {
    min-height: min(78vh, 860px);
    margin-right: calc(var(--gutter) * -1);
    overflow: visible;
  }

  .prologue__halo {
    inset: 8% -8% 2% 2%;
    height: 78%;
  }

  .prologue__portrait--solo {
    width: min(74vw, 1180px);
    height: min(92svh, 1040px);
    overflow: visible;
  }

  .prologue__portrait--solo img {
    width: auto;
    max-width: none;
    height: 100%;
    max-height: none;
    transform: translateX(4vw) scale(1.2);
    transform-origin: 100% 100%;
  }
}

/* --- photographic prelude and post-Monsoon coda --- */
.photo-prelude,
.monsoon-coda {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: var(--header-height);
}

.photo-prelude {
  background: #346d30;
}

.photo-prelude::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgb(0 0 0 / .2), transparent 24%, transparent 74%, rgb(0 0 0 / .18)),
    radial-gradient(circle at 50% 46%, transparent 52%, rgb(0 0 0 / .16));
}

.photo-prelude > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-prelude__label,
.monsoon-coda__label {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  bottom: max(28px, env(safe-area-inset-bottom));
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / .3);
  border-radius: 0;
  background: rgb(0 0 0 / .28);
  color: #fff8e8;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.monsoon-coda {
  display: grid;
  place-items: end center;
  background:
    radial-gradient(circle at 50% 38%, rgb(164 76 67 / .28), transparent 34%),
    radial-gradient(circle at 52% 58%, rgb(125 147 67 / .22), transparent 48%),
    linear-gradient(145deg, #1f2517, #4b502a 58%, #252b18);
}

.monsoon-coda::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(78vw, 980px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  border: 1px solid rgb(244 231 212 / .18);
  border-radius: 0;
  box-shadow:
    0 0 0 8vw rgb(164 76 67 / .035),
    0 0 0 16vw rgb(125 147 67 / .025);
  transform: translate(-50%, -50%);
}

.monsoon-coda__halo {
  position: absolute;
  z-index: 0;
  width: min(74vw, 920px);
  aspect-ratio: 1;
  left: 50%;
  bottom: -24%;
  border-radius: 0;
  background: radial-gradient(circle, rgb(211 153 104 / .32), transparent 68%);
  filter: blur(24px);
  transform: translateX(-50%);
}

.monsoon-coda__portrait {
  position: relative;
  z-index: 2;
  height: min(104svh, 1180px);
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  filter: drop-shadow(0 34px 70px rgb(0 0 0 / .45));
}

.monsoon-coda__portrait img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 820px) {
  .photo-prelude > img {
    object-position: 50% 50%;
  }

  .monsoon-coda__portrait {
    height: min(86svh, 760px);
  }
}

@media (max-width: 520px) {
  .photo-prelude__label,
  .monsoon-coda__label {
    bottom: 18px;
    font-size: 8px;
  }

  .monsoon-coda__portrait {
    height: 78svh;
  }

  .monsoon-coda__portrait img {
    transform: translateX(-14%);
  }

  .monsoon-coda::before {
    width: 120vw;
  }
}

/* --- artist profile and uncropped contact sheet --- */
.prologue::before,
.monsoon-coda::before {
  content: none;
}

.prologue__portrait--solo,
.monsoon-coda__portrait {
  z-index: 2;
}

.artist-profile {
  position: relative;
  min-height: clamp(680px, 86svh, 980px);
  padding: clamp(110px, 14vw, 210px) var(--gutter) clamp(90px, 12vw, 180px);
  display: grid;
  grid-template-columns: minmax(120px, .34fr) minmax(0, 1.66fr);
  gap: clamp(36px, 8vw, 140px);
  align-items: start;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: var(--header-height);
  background:
    linear-gradient(90deg, rgb(var(--ink) / .055) 1px, transparent 1px) 0 0 / clamp(72px, 9vw, 152px) 100%,
    linear-gradient(135deg, rgb(var(--bg)) 0%, color-mix(in srgb, rgb(var(--bg)) 82%, #efa3ad) 100%);
}

.artist-profile__rail {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgb(var(--muted));
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.artist-profile__rail::before {
  content: "";
  width: 72px;
  height: 1px;
  margin-bottom: 12px;
  background: #d87987;
}

.artist-profile__copy {
  width: min(100%, 1060px);
}

.artist-profile__eyebrow {
  margin: 0 0 clamp(30px, 5vw, 72px);
  color: #8f3f45;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.artist-profile h2 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 142px);
  font-weight: 300;
  line-height: .84;
  letter-spacing: -.06em;
}

.artist-profile blockquote {
  max-width: 760px;
  margin: clamp(48px, 8vw, 110px) 0 0;
  padding-left: clamp(22px, 3vw, 46px);
  border-left: 1px solid #d87987;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 40px);
  font-style: italic;
  line-height: 1.25;
}

.artist-profile blockquote p,
.artist-profile__description {
  margin: 0;
}

.artist-profile__description {
  max-width: 78ch;
  margin-top: clamp(38px, 6vw, 84px);
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.72;
  color: rgb(var(--muted));
}

.photo-prelude {
  min-height: 0;
  aspect-ratio: 1;
}

.photo-prelude > img {
  object-fit: contain;
}

@media (max-width: 820px) {
  .artist-profile {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .artist-profile__rail {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .artist-profile__rail::before {
    margin: 0 6px 0 0;
  }
}

@media (max-width: 520px) {
  .artist-profile {
    min-height: 0;
    padding-top: 112px;
    padding-bottom: 92px;
  }

  .artist-profile h2 {
    font-size: clamp(54px, 18vw, 74px);
  }

  .artist-profile blockquote {
    font-size: clamp(21px, 6.4vw, 28px);
  }
}

/* --- Scalpel typography: compact profile row and complete lyric reader --- */
.artist-profile {
  position: relative;
  min-height: 0;
  padding: 0;
  display: block;
  overflow: visible;
  color: #f4f1e8;
  background: #416f43;
  border-top: 1px solid rgb(244 241 232 / .28);
  border-bottom: 1px solid rgb(26 24 20 / .22);
  font-family: var(--mono);
  scroll-margin-top: var(--header-height);
}

.artist-profile summary {
  min-height: 64px;
  padding: 10px var(--gutter);
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 52px);
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.artist-profile summary::-webkit-details-marker {
  display: none;
}

.artist-profile__kicker,
.artist-profile__toggle {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.artist-profile summary strong {
  font-family: Figtree, var(--sans);
  font-size: clamp(17px, 1.65vw, 25px);
  font-weight: 600;
  letter-spacing: .02em;
}

.artist-profile__toggle {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.artist-profile[open] .artist-profile__toggle {
  font-size: 0;
}

.artist-profile[open] .artist-profile__toggle::after {
  content: "Close profile";
  font-size: 10px;
}

.artist-profile__body {
  padding: 22px var(--gutter) 30px;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 84px);
  border-top: 1px solid rgb(244 241 232 / .22);
}

.artist-profile__quote,
.artist-profile__description {
  max-width: none;
  margin: 0;
  color: inherit;
  font-family: Figtree, var(--sans);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.55;
}

.artist-profile__quote {
  font-weight: 600;
}

.track-dialog,
.track-dialog::backdrop {
  --scalpel-paper: #f4f1e8;
  --scalpel-ink: #1a1814;
  --scalpel-dim: #5f5a4d;
  --scalpel-hair: rgb(69 65 58 / .25);
}

.track-dialog {
  width: min(920px, calc(100vw - 24px));
  max-height: calc(100svh - 24px);
  padding: clamp(22px, 3.2vw, 46px);
  border: 1px solid var(--scalpel-hair);
  border-radius: 0;
  color: var(--scalpel-ink);
  background: var(--scalpel-paper);
  font-family: var(--mono);
  scrollbar-color: var(--scalpel-dim) transparent;
}

.track-dialog .dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  margin: 0 0 -38px auto;
  display: block;
  border-radius: 0;
  color: var(--scalpel-ink);
  background: var(--scalpel-paper);
}

.track-dialog__index,
.track-dialog__album,
.track-dialog__feat,
.track-dialog__lyrics-label {
  font-family: var(--mono);
  color: var(--scalpel-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.track-dialog__album {
  margin: 14px 0 6px;
}

.track-dialog h2 {
  max-width: 16ch;
  font-family: Figtree, var(--sans);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  line-height: .94;
  letter-spacing: .01em;
}

.track-dialog__feat {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.6;
}

.track-dialog__lyrics-block {
  margin-top: clamp(30px, 4vw, 50px);
  padding-top: 12px;
  border-top: 1px solid var(--scalpel-hair);
}

.track-dialog__lyrics-label {
  margin: 0 0 22px;
  font-size: 10px;
}

.track-dialog__lyrics {
  max-width: 42em;
  font-family: Figtree, var(--sans);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 400;
  line-height: 1.56;
}

.track-dialog__lyrics p {
  margin: 0;
}

.track-dialog__lyrics p + p {
  margin-top: 1.35em;
}

.track-dialog__lyrics .lyric-line + .lyric-line {
  margin-top: 0;
}

.track-dialog__palette {
  margin-top: 34px;
  padding-top: 12px;
  border-top: 1px solid var(--scalpel-hair);
}

.track-dialog__palette span {
  height: 5px;
  border-radius: 0;
}

@media (max-width: 620px) {
  .artist-profile summary {
    min-height: 72px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px 18px;
  }

  .artist-profile__kicker {
    grid-column: 1;
  }

  .artist-profile summary strong {
    grid-column: 1;
    font-size: 17px;
  }

  .artist-profile__toggle {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .artist-profile__body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .track-dialog {
    width: calc(100vw - 12px);
    max-height: calc(100svh - 12px);
    padding: 18px;
  }

  .track-dialog h2 {
    padding-right: 38px;
    font-size: clamp(36px, 12vw, 52px);
  }

  .track-dialog__lyrics {
    font-size: 17px;
    line-height: 1.58;
  }
}

/* --- Scalpel system: page-wide typography, geometry, spacing, and rules --- */
:root {
  --header-height: 64px;
  --gutter: clamp(16px, 2vw, 30px);
  --radius: 0px;
  --shadow: 0 18px 52px rgb(0 0 0 / .18);
  --sans: Figtree, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Figtree, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Belleza", "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.45;
}

.skip-link,
.noscript {
  border: 1px solid rgb(var(--line) / .35);
  border-radius: 0;
  box-shadow: none;
  font-family: var(--mono);
}

.ambient__orb {
  opacity: .18;
}

.ambient__mesh {
  opacity: .32;
}

.topbar {
  height: var(--header-height);
  padding: max(8px, env(safe-area-inset-top)) var(--gutter) 8px;
  gap: 16px;
  border-bottom-color: rgb(var(--line) / .28);
  background: rgb(var(--bg) / .82);
  backdrop-filter: blur(18px) saturate(1.08);
}

.topbar::after {
  height: 1px;
  bottom: -1px;
  box-shadow: none;
}

.brand {
  gap: 9px;
}

.brand__mark {
  width: 32px;
  border-color: rgb(var(--line) / .5);
  border-radius: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .02em;
}

.brand__name {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
}

.album-nav {
  gap: 2px;
}

.album-nav__status {
  margin-right: 10px;
  font-size: 9px;
  letter-spacing: .08em;
}

.album-nav__button {
  width: 22px;
  height: 28px;
}

.album-nav__button::before {
  inset: 13px 5px;
  border-radius: 0;
  background: rgb(var(--ink) / .38);
}

.album-nav__button:hover::before,
.album-nav__button[aria-current="true"]::before {
  inset: 11px 3px;
  box-shadow: none;
}

.atlas-trigger {
  gap: 8px;
  padding: 5px 0 4px;
  font-size: 10px;
  letter-spacing: .1em;
}

.prologue {
  padding: calc(var(--header-height) + 28px) var(--gutter) 30px;
}

.prologue__eyebrow {
  margin-bottom: clamp(16px, 2.2vw, 30px);
  font-size: 9px;
  letter-spacing: .12em;
}

.prologue h1 {
  max-width: 10.5ch;
  font-family: var(--sans);
  font-size: clamp(58px, 8.2vw, 126px);
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.055em;
}

.prologue h1 > span + span {
  margin-top: .08em;
}

.prologue__dek {
  max-width: 36ch;
  margin-top: clamp(22px, 3vw, 42px);
  color: rgb(var(--ink) / .76);
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
}

.prologue__cue {
  margin-top: clamp(28px, 4vw, 56px);
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgb(var(--line) / .42);
  font-size: 9px;
  letter-spacing: .11em;
}

.prologue__line {
  width: 62px;
}

.prologue__halo {
  opacity: .62;
}

.photo-prelude__label,
.monsoon-coda__label {
  left: var(--gutter);
  bottom: max(20px, env(safe-area-inset-bottom));
  padding: 7px 9px 6px;
  border-color: rgb(255 255 255 / .44);
  border-radius: 0;
  background: rgb(0 0 0 / .36);
  font-size: 8px;
  letter-spacing: .11em;
  backdrop-filter: blur(10px);
}

.artist-profile summary {
  min-height: 60px;
  padding: 8px var(--gutter);
  gap: clamp(14px, 2.2vw, 34px);
}

.artist-profile__kicker,
.artist-profile__toggle {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.artist-profile summary strong {
  font-family: var(--sans);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 600;
  letter-spacing: -.01em;
}

.artist-profile__body {
  padding: 20px var(--gutter) 26px;
  gap: clamp(24px, 4vw, 68px);
}

.artist-profile__quote,
.artist-profile__description {
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
}

.album {
  min-height: 104svh;
  padding: calc(var(--header-height) + 28px) var(--gutter) 56px;
  border-top: 1px solid rgb(var(--line) / .18);
}

.album::before {
  right: var(--gutter);
  top: calc(var(--header-height) + 18px);
  font-family: var(--mono);
  font-size: min(30vw, 430px);
  font-weight: 300;
  letter-spacing: -.08em;
  color: rgb(var(--ink) / .045);
}

.album__shell {
  width: min(1580px, 100%);
  min-height: calc(100svh - var(--header-height) - 84px);
  grid-template-columns: minmax(300px, .96fr) minmax(330px, 1.04fr);
  gap: clamp(30px, 5vw, 78px);
}

.album__cover-wrap,
.album[data-layout="desert"] .album__cover-wrap,
.album[data-layout="celestial"] .album__cover-wrap,
.album[data-layout="moon"] .album__cover-wrap {
  width: min(100%, 680px);
}

.album__cover,
.album[data-layout="neon"] .album__cover,
.album[data-layout="desert"] .album__cover,
.album[data-layout="celestial"] .album__cover,
.album[data-layout="moon"] .album__cover {
  border-radius: 0;
  box-shadow: var(--shadow);
}

.album__cover::before {
  opacity: .6;
}

.album__cover::after {
  border-color: rgb(255 255 255 / .34);
}

.album__cover-reflection {
  opacity: .62;
}

.album__palette,
.album[data-layout="celestial"] .album__palette,
.album[data-layout="moon"] .album__palette {
  padding: 5px;
  gap: 3px;
  border-color: rgb(255 255 255 / .4);
  border-radius: 0;
  background: rgb(0 0 0 / .34);
  backdrop-filter: blur(10px);
}

.palette-chip {
  width: 19px;
  border-radius: 0;
}

.palette-chip:hover,
.palette-chip:focus-visible,
.palette-chip[aria-pressed="true"] {
  transform: none;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .9), 0 0 0 1px rgb(0 0 0 / .48);
}

.album__caption {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgb(var(--line) / .2);
  font-size: 9px;
  line-height: 1.25;
  letter-spacing: .08em;
}

.album__meta-row {
  gap: 12px;
  margin-bottom: clamp(16px, 2.2vw, 30px);
}

.album__eyebrow,
.album__count,
.album__catalogue {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.album__meta-line {
  background: rgb(var(--line) / .38);
}

.album__title,
.album[data-layout="celestial"] .album__title,
.album[data-layout="moon"] .album__title {
  max-width: 12ch;
  font-family: var(--sans);
  font-size: clamp(52px, 6.5vw, 102px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.045em;
}

.album__subtitle {
  max-width: 43ch;
  margin-top: clamp(16px, 2vw, 26px);
  color: rgb(var(--ink) / .72);
  font-family: var(--sans);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.48;
}

.track-grid {
  margin-top: clamp(28px, 3.4vw, 48px);
  border-top-color: rgb(var(--line) / .42);
}

.track {
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  padding: 12px 0 11px;
  border-bottom-color: rgb(var(--line) / .25);
}

.track::before {
  background: rgb(var(--accent) / .1);
}

.track__number,
.track__open {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.track__title {
  font-family: var(--sans);
  font-size: clamp(15px, 1.06vw, 17px);
  font-weight: 600;
  letter-spacing: -.01em;
}

.track-dialog,
.atlas-dialog {
  border-radius: 0;
  box-shadow: 0 24px 70px rgb(0 0 0 / .38);
}

.dialog-close,
.track-dialog .dialog-close {
  width: 34px;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 22px;
}

.atlas-dialog {
  width: min(1540px, calc(100vw - 16px));
  height: min(940px, calc(100svh - 16px));
  border-radius: 0;
}

.atlas-dialog__bar {
  height: 56px;
  padding: 0 14px;
}

.atlas-dialog iframe {
  height: calc(100% - 56px);
}

.track-dialog {
  border-radius: 0;
}

.track-dialog h2 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -.035em;
}

.footer {
  min-height: 70px;
  padding: 20px var(--gutter) max(20px, env(safe-area-inset-bottom));
  border-top-color: rgb(var(--line) / .35);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

@media (max-width: 820px) {
  :root {
    --header-height: 58px;
    --gutter: 16px;
  }

  .prologue {
    padding-top: calc(var(--header-height) + 22px);
    padding-bottom: 20px;
  }

  .prologue h1 {
    max-width: 11ch;
    font-size: clamp(50px, 12.5vw, 86px);
    line-height: .87;
  }

  .prologue__stage {
    min-height: clamp(400px, 60vh, 650px);
  }

  .album {
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 48px;
  }

  .album__shell {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .album__visual,
  .album__copy {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .album__title,
  .album[data-layout="celestial"] .album__title,
  .album[data-layout="moon"] .album__title {
    font-size: clamp(48px, 13vw, 76px);
  }
}

@media (max-width: 520px) {
  .topbar {
    padding-inline: 12px;
  }

  .brand__mark {
    width: 29px;
  }

  .album-nav__status,
  .atlas-trigger {
    font-size: 7px;
    letter-spacing: .06em;
  }

  .prologue {
    padding-inline: 14px;
  }

  .prologue h1 {
    font-size: clamp(44px, 13.4vw, 60px);
    letter-spacing: -.05em;
  }

  .prologue__dek {
    font-size: 15px;
  }

  .prologue__stage,
  .prologue__portrait--solo {
    min-height: 370px;
    height: 370px;
  }

  .artist-profile summary {
    min-height: 68px;
  }

  .album {
    padding-inline: 14px;
  }

  .album__caption {
    font-size: 8px;
  }

  .album__title,
  .album[data-layout="celestial"] .album__title,
  .album[data-layout="moon"] .album__title {
    font-size: clamp(44px, 14vw, 64px);
  }

  .track {
    grid-template-columns: 30px minmax(0, 1fr) 16px;
    padding-block: 11px 10px;
  }

  .track__title {
    font-size: 15px;
  }

  .track-dialog,
  .atlas-dialog {
    border-radius: 0;
  }
}

/* --- hero correction: one art-directed foreground composition at every width --- */
.prologue {
  min-height: max(780px, 100svh);
  display: block;
  isolation: isolate;
}

.prologue__copy {
  position: relative;
  z-index: 2;
  width: min(52vw, 760px);
  padding-top: clamp(150px, 22svh, 280px);
  pointer-events: none;
}

.prologue__cue {
  pointer-events: auto;
}

.prologue__stage {
  position: absolute;
  z-index: auto;
  inset: var(--header-height) 0 0;
  width: 100%;
  min-height: 0;
  margin: 0;
  overflow: visible;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
}

.prologue__portrait--solo {
  position: relative;
  z-index: 3;
  width: 100%;
  height: calc(100svh - var(--header-height));
  min-height: 720px;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

.prologue__portrait--solo img {
  width: auto;
  max-width: none;
  height: clamp(820px, 108svh, 1320px);
  max-height: none;
  object-fit: contain;
  transform: translate(clamp(18px, 3vw, 56px), -6svh);
  transform-origin: 50% 0;
}

.prologue__halo {
  z-index: 0;
  inset: 8% 8% 0 26%;
  height: 84%;
}

@media (max-width: 820px) {
  .prologue {
    min-height: max(760px, 100svh);
    padding-top: calc(var(--header-height) + 14px);
  }

  .prologue__copy {
    width: min(76vw, 580px);
    padding-top: clamp(205px, 27svh, 310px);
  }

  .prologue h1 {
    max-width: 9ch;
    font-size: clamp(52px, 11.5vw, 82px);
    line-height: .86;
  }

  .prologue__dek {
    width: min(38ch, 68vw);
  }

  .prologue__stage {
    inset: var(--header-height) -18vw 0 -18vw;
    width: auto;
  }

  .prologue__portrait--solo {
    width: 100%;
    height: calc(100svh - var(--header-height));
    min-height: 700px;
  }

  .prologue__portrait--solo img {
    width: auto;
    max-width: none;
    height: clamp(760px, 108svh, 1080px);
    transform: translate(-4vw, -5svh);
  }

}

@media (max-width: 520px) {
  .prologue {
    min-height: max(720px, 100svh);
    padding: calc(var(--header-height) + 10px) 14px 18px;
  }

  .prologue__copy {
    width: 100%;
    padding-top: clamp(190px, 24svh, 250px);
  }

  .prologue__eyebrow {
    margin-bottom: 14px;
  }

  .prologue h1 {
    max-width: 8.2ch;
    font-size: clamp(46px, 13.6vw, 64px);
    line-height: .85;
  }

  .prologue__dek {
    width: min(31ch, 82vw);
    margin-top: 20px;
    font-size: 15px;
  }

  .prologue__cue {
    margin-top: 24px;
  }

  .prologue__stage {
    inset: var(--header-height) -42vw 0 -42vw;
  }

  .prologue__portrait--solo,
  .prologue__stage {
    min-height: 660px;
    height: calc(100svh - var(--header-height));
  }

  .prologue__portrait--solo img {
    height: clamp(700px, 105svh, 920px);
    transform: translate(-12vw, -5svh);
  }

}

/* --- supplied cutout placement and Bay City motion layer --- */
.prologue {
  color: #f5f0e7;
  background: #191b1b;
}

.prologue__background {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  background: #171916;
}

.prologue__background::before,
.prologue__background::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.prologue__background::before {
  background:
    linear-gradient(90deg, rgb(11 14 15 / .78) 0%, rgb(12 14 15 / .57) 32%, rgb(12 14 15 / .14) 68%, rgb(8 10 10 / .3) 100%),
    linear-gradient(180deg, rgb(8 10 11 / .28), transparent 36%, rgb(6 8 8 / .28));
}

.prologue__background::after {
  background: radial-gradient(circle at 65% 38%, transparent 18%, rgb(7 8 8 / .2) 76%);
}

.prologue__background img {
  display: block;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: 50% 54%;
  filter: saturate(.9) contrast(1.03) brightness(.82);
  transform-origin: 58% 48%;
  animation: bay-city-drift 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes bay-city-drift {
  0% { transform: translate3d(-2.5%, -1.5%, 0) scale(1.045); }
  55% { transform: translate3d(-.5%, -2.3%, 0) scale(1.085); }
  100% { transform: translate3d(-3.2%, .2%, 0) scale(1.065); }
}

.prologue h1 {
  color: #f5f0e7;
  text-shadow: 0 2px 24px rgb(0 0 0 / .22);
}

.prologue__eyebrow,
.prologue__cue {
  color: rgb(245 240 231 / .9);
}

.prologue__dek {
  color: rgb(245 240 231 / .76);
  text-shadow: 0 1px 14px rgb(0 0 0 / .32);
}

.prologue__cue {
  border-bottom-color: rgb(245 240 231 / .52);
}

.prologue__portrait--solo img {
  filter: drop-shadow(0 28px 50px rgb(0 0 0 / .42));
}

.pose-reel,
.chapter-interlude {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: var(--header-height);
}

.pose-reel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(440px, 1.28fr);
  align-items: center;
  color: #1d201e;
  background:
    linear-gradient(90deg, rgb(29 32 30 / .06) 1px, transparent 1px) 0 0 / clamp(70px, 9vw, 150px) 100%,
    #d8c3b7;
  border-top: 1px solid rgb(29 32 30 / .28);
  border-bottom: 1px solid rgb(29 32 30 / .28);
}

.pose-reel__copy,
.chapter-interlude__copy {
  position: relative;
  z-index: 3;
  padding: calc(var(--header-height) + 28px) var(--gutter) 48px;
}

.pose-reel__copy p,
.pose-reel__copy span,
.chapter-interlude__copy p,
.chapter-interlude__copy span {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pose-reel__copy h2,
.chapter-interlude__copy h2 {
  margin: clamp(22px, 4vw, 56px) 0 clamp(30px, 5vw, 66px);
  font-family: var(--sans);
  font-size: clamp(58px, 7.6vw, 122px);
  font-weight: 600;
  line-height: .86;
  letter-spacing: -.05em;
}

.pose-reel__stage {
  position: absolute;
  z-index: 2;
  inset: var(--header-height) -2vw 0 36%;
}

.pose-reel__stage img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 52% 100%;
  opacity: 0;
  filter: drop-shadow(0 28px 42px rgb(46 29 22 / .26));
  animation: pose-cycle 12s steps(1, end) infinite;
}

.pose-reel__stage img:nth-child(2) { animation-delay: 3s; }
.pose-reel__stage img:nth-child(3) { animation-delay: 6s; }
.pose-reel__stage img:nth-child(4) { animation-delay: 9s; }

@keyframes pose-cycle {
  0%, 24.999% { opacity: 1; transform: translate3d(0, 0, 0); }
  25%, 100% { opacity: 0; transform: translate3d(0, 0, 0); }
}

.pose-reel__counter {
  position: absolute;
  z-index: 0;
  right: var(--gutter);
  bottom: 18px;
  color: rgb(29 32 30 / .09);
  font-family: var(--mono);
  font-size: clamp(58px, 10vw, 170px);
  font-weight: 300;
  letter-spacing: -.07em;
}

.artist-profile__body {
  position: relative;
  min-height: clamp(460px, 58svh, 650px);
  padding: 0 var(--gutter);
  grid-template-columns: minmax(340px, 1.08fr) minmax(360px, .92fr);
  gap: clamp(22px, 4vw, 72px);
  align-items: stretch;
  overflow: hidden;
}

.artist-profile__text {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 34px 0 40px;
}

.artist-profile__description {
  margin-top: 30px;
}

.artist-profile__portrait {
  position: relative;
  min-height: 460px;
  margin: 0;
  overflow: visible;
}

.artist-profile__portrait img {
  position: absolute;
  right: -8vw;
  bottom: 0;
  display: block;
  width: auto;
  max-width: none;
  height: min(56svh, 560px);
  filter: drop-shadow(0 22px 36px rgb(0 0 0 / .28));
}

.chapter-interlude {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(440px, 1.28fr);
  align-items: center;
  color: #f4ece2;
  background:
    radial-gradient(circle at 73% 36%, rgb(232 132 116 / .3), transparent 34%),
    linear-gradient(135deg, #152c32, #263a38 58%, #182626);
  border-top: 1px solid rgb(244 236 226 / .22);
  border-bottom: 1px solid rgb(244 236 226 / .22);
}

.chapter-interlude__copy {
  align-self: center;
}

.chapter-interlude__portrait {
  position: absolute;
  z-index: 2;
  inset: var(--header-height) 0 0 32%;
  margin: 0;
  display: grid;
  place-items: end center;
}

.chapter-interlude__portrait img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  filter: drop-shadow(0 32px 52px rgb(0 0 0 / .38));
}

.chapter-interlude__rule {
  position: absolute;
  z-index: 1;
  top: 20%;
  right: var(--gutter);
  bottom: 20%;
  width: 1px;
  background: rgb(244 236 226 / .28);
}

.monsoon-coda__portrait {
  width: 100%;
  height: min(92svh, 1040px);
  align-items: flex-end;
}

.monsoon-coda__portrait img {
  width: min(96vw, 1420px);
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: none;
}

@media (max-width: 820px) {
  .prologue__background::before {
    background:
      linear-gradient(180deg, rgb(8 10 11 / .46), rgb(8 10 11 / .2) 38%, rgb(8 10 11 / .58)),
      linear-gradient(90deg, rgb(8 10 11 / .55), transparent 78%);
  }

  .prologue__background img {
    width: 122%;
    height: 108%;
    object-position: 48% 50%;
  }

  .pose-reel,
  .chapter-interlude {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pose-reel__copy,
  .chapter-interlude__copy {
    padding-top: calc(var(--header-height) + 34px);
  }

  .pose-reel__copy h2,
  .chapter-interlude__copy h2 {
    max-width: 8ch;
    font-size: clamp(54px, 13vw, 88px);
  }

  .pose-reel__stage {
    inset: 24% -22vw 0 -4vw;
  }

  .artist-profile__body {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .artist-profile__text {
    padding-bottom: 12px;
  }

  .artist-profile__portrait {
    min-height: min(64svh, 520px);
  }

  .artist-profile__portrait img {
    right: -24vw;
    height: min(56svh, 500px);
  }

  .chapter-interlude__portrait {
    inset: var(--header-height) -18vw 0 -18vw;
  }

  .monsoon-coda__portrait {
    height: min(82svh, 760px);
  }
}

@media (max-width: 520px) {
  .pose-reel,
  .chapter-interlude {
    min-height: 820px;
  }

  .pose-reel__copy,
  .chapter-interlude__copy {
    padding-inline: 14px;
  }

  .pose-reel__copy h2,
  .chapter-interlude__copy h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .pose-reel__stage {
    inset: 28% -36vw 0 -28vw;
  }

  .artist-profile__body {
    padding-inline: 14px;
  }

  .artist-profile__portrait {
    min-height: 390px;
  }

  .artist-profile__portrait img {
    right: -62vw;
    height: 420px;
  }

  .chapter-interlude__portrait {
    inset: var(--header-height) -64vw 0 -64vw;
  }

  .monsoon-coda__portrait {
    width: 160vw;
    height: min(90svh, 760px);
  }

  .monsoon-coda__portrait img {
    width: 230vw;
    max-width: none;
    transform: translateX(-18%);
  }
}
