:root {
  --bg: #071010;
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.24);
  --panel: rgba(8, 16, 15, 0.54);
  --panel-strong: rgba(6, 11, 11, 0.72);
  --shadow: 0 36px 80px rgba(0, 0, 0, 0.38);
  --header-height: 86px;
  --content-width: min(1180px, calc(100vw - 72px));
  --transition: 260ms ease;
  --font-jp: "Shippori Mincho", "Noto Serif JP", serif;
  --font-ui: "Noto Sans JP", sans-serif;
  --font-display: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ol,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  color: var(--text);
  font-family: var(--font-jp);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #020707;
}

.page-dusk-to-dawn .site-shell {
  background:
    linear-gradient(180deg, #243553 0%, #476789 18%, #8fb1c1 38%, #ecd8aa 56%, #2f3950 77%, #0d1320 100%);
}

.page-a-distant-shore .site-shell {
  background:
    linear-gradient(180deg, rgba(5, 10, 14, 0.84) 0%, rgba(8, 14, 19, 0.34) 26%, rgba(10, 16, 22, 0.14) 46%, rgba(4, 8, 12, 0.54) 100%),
    url("../images/a2872033404_10.jpg") center bottom / 100% auto no-repeat,
    #060b10;
}

.page-dusk-to-dawn .site-shell::before,
.page-dusk-to-dawn .site-shell::after,
.page-a-distant-shore .site-shell::before,
.page-a-distant-shore .site-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-dusk-to-dawn .site-shell::before {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 60%, rgba(255, 247, 209, 0.98) 0 5%, rgba(255, 220, 143, 0.72) 8%, rgba(255, 202, 145, 0.28) 16%, transparent 31%),
    radial-gradient(circle at 50% 64%, rgba(255, 188, 121, 0.34) 0, transparent 16%),
    linear-gradient(180deg, rgba(16, 22, 39, 0.5), rgba(0, 0, 0, 0) 24%, rgba(255, 216, 145, 0.08) 56%, rgba(0, 0, 0, 0.16) 78%, rgba(0, 0, 0, 0.44));
}

.page-dusk-to-dawn .site-shell::after {
  z-index: -1;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 201, 155, 0.12), transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(255, 245, 225, 0.1), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%, transparent 54%, rgba(10, 15, 25, 0.22) 72%, rgba(6, 10, 18, 0.44) 100%);
}

.page-a-distant-shore .site-shell::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 10, 14, 0.8) 0%, rgba(6, 10, 14, 0.28) 22%, rgba(6, 10, 14, 0) 42%, rgba(6, 10, 14, 0.44) 100%),
    radial-gradient(circle at 52% 70%, rgba(248, 220, 168, 0.18), transparent 24%);
}

.page-a-distant-shore .site-shell::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 7, 10, 0.24), rgba(3, 7, 10, 0.04) 28%, rgba(3, 7, 10, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 18%, transparent 72%, rgba(4, 7, 10, 0.34) 100%);
}

.video-layer,
.video-layer iframe,
.video-overlay,
.video-grain {
  position: absolute;
  inset: 0;
}

.video-layer {
  z-index: -3;
  overflow: hidden;
  background: #050808;
}

.video-layer iframe {
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.12);
  filter: saturate(0.8) brightness(0.66) contrast(0.94);
  opacity: 0.92;
}

.video-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(2, 7, 7, 0.1), rgba(4, 8, 8, 0.32)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.12) 30%, rgba(0, 0, 0, 0.34));
}

.video-grain {
  z-index: -1;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 0.55px, transparent 0.8px);
  background-size: 4px 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: var(--content-width);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0;
}

.header-menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 0;
}

.brand {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  transition: opacity var(--transition), border-color var(--transition), transform var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.44);
  transform: translateY(-1px);
}

.menu-toggle__line {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle__line:nth-child(1) {
  transform: translateY(-5px);
}

.menu-toggle__line:nth-child(3) {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-child(3) {
  transform: rotate(-45deg);
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "DM Serif Display", serif;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.74;
  transform: translateY(-1px);
}

.utility-links,
.digital-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.utility-links {
  gap: 20px;
}

.circle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #050808;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.circle-link:hover,
.circle-link:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.circle-link i {
  font-size: 0.92rem;
}

.utility-links .circle-link {
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.94);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.utility-links .circle-link:hover,
.utility-links .circle-link:focus-visible {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.utility-links .circle-link i {
  font-size: 1.18rem;
}

.page-main {
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(28px, 6vw, 72px) 0 clamp(20px, 4vw, 32px);
}

.page-yume.page-yume--intro {
  overflow: hidden;
}

.page-yume .page-main,
.page-yume .page-footer {
  transition:
    opacity 900ms ease,
    visibility 900ms ease,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1100ms ease;
}

.page-yume.page-yume--intro .page-main,
.page-yume.page-yume--intro .page-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(14px);
  transform: translate3d(0, 24px, 0);
}

.page-yume.page-yume--content-visible .page-main,
.page-yume.page-yume--content-visible .page-footer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 44px);
  pointer-events: none;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.intro-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.album-stage {
  width: var(--content-width);
  margin: 0 auto;
}

.album-panel {
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
  padding: clamp(28px, 4vw, 38px);
}

@keyframes softEntrance {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.soft-entrance {
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(0, 18px, 0);
  animation: softEntrance 1.18s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, filter, transform;
}

.soft-entrance--delay-1 {
  animation-delay: 0.14s;
}

.soft-entrance--delay-2 {
  animation-delay: 0.28s;
}

.soft-entrance--delay-3 {
  animation-delay: 0.42s;
}

.soft-entrance--delay-4 {
  animation-delay: 0.56s;
}

.soft-entrance--delay-5 {
  animation-delay: 0.7s;
}

.cover-wrap {
  position: relative;
}

.cover-wrap::after {
  content: "";
  position: absolute;
  inset: 16px -18px -16px 18px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.65;
}

.album-cover {
  width: min(100%, 440px);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.album-copy {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.album-heading {
  display: grid;
  gap: 10px;
}

.album-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.04;
}

.album-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  line-height: 1.8;
}

.album-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-catch {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 4px 0 2px;
}

.album-catch--hero {
  padding: 10px 0 18px;
}

.album-catch--transient {
  overflow: hidden;
  max-height: 14rem;
  transition:
    opacity 1100ms ease,
    filter 1100ms ease,
    transform 1100ms ease,
    max-height 1100ms ease,
    padding 1100ms ease,
    margin 1100ms ease;
}

.album-catch--transient.is-dismissed {
  opacity: 0;
  filter: blur(16px);
  transform: translate3d(0, -10px, 0);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  pointer-events: none;
}

.album-catch--staged .album-catch__line {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 14px, 0) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}

.album-catch--staged .album-catch__line.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.album-catch__lead-group {
  display: grid;
  gap: 2px;
  justify-items: center;
}

.album-catch__line {
  position: relative;
  display: block;
  width: fit-content;
  max-width: min(100%, 34em);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-wrap: balance;
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.16),
    0 0 34px rgba(204, 223, 226, 0.12);
}

.album-catch__line::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: rgba(255, 255, 255, 0.52);
  filter: blur(11px);
  opacity: 0.7;
  pointer-events: none;
}

.album-catch__line--lead {
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
}

.album-catch__line--sub {
  font-size: clamp(0.9rem, 1.04vw, 1rem);
  color: rgba(255, 255, 255, 0.82);
}

.album-catch--hero .album-catch__line--lead {
  font-size: clamp(1.32rem, 1.9vw, 1.72rem);
}

.album-catch--hero .album-catch__line--sub {
  font-size: clamp(1rem, 1.16vw, 1.08rem);
}

.album-catch__line--single {
  white-space: nowrap;
  max-width: none;
}

.album-catch__line--after-pause {
  margin-top: 12px;
}

.track-section {
  display: grid;
  gap: 16px;
  padding: 18px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.track-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: track;
}

.track-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.track-list li::before {
  counter-increment: track;
  content: counter(track) ".";
  color: rgba(255, 255, 255, 0.72);
  font-variant-numeric: tabular-nums;
}

.track-video-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.track-video-button::after {
  content: "\f03d";
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Font Awesome 6 Free";
  font-size: 0.82rem;
  font-weight: 900;
  transition: color var(--transition), transform var(--transition);
}

.track-video-button:hover,
.track-video-button:focus-visible {
  opacity: 0.82;
  transform: translateX(4px);
}

.track-video-button:hover::after,
.track-video-button:focus-visible::after {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.06);
}

.album-info {
  display: grid;
  justify-items: start;
  gap: 0;
  margin-top: 10px;
}

.album-info__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.45rem 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.album-info__toggle::-webkit-details-marker {
  display: none;
}

.album-info__toggle::after {
  content: "+";
  font-size: 0.82rem;
  line-height: 1;
  transition: transform var(--transition);
}

.album-info[open] .album-info__toggle::after {
  transform: rotate(45deg);
}

.album-info__toggle:hover,
.album-info__toggle:focus-visible {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-1px);
}

.album-info__panel {
  display: grid;
  grid-template-rows: 0fr;
  width: min(100%, 48rem);
  margin-top: 0;
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transform-origin: top center;
  transition:
    grid-template-rows 620ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.album-info[open] .album-info__panel {
  grid-template-rows: 1fr;
  margin-top: 14px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.album-info__body {
  overflow: hidden;
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, -8px, 0) scale(0.985);
  transition:
    opacity 460ms ease 90ms,
    filter 560ms ease 60ms,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) 40ms;
}

.album-info[open] .album-info__body {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.album-info__body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

body.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.6vw, 28px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.video-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 5, 5, 0.88);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.video-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  width: min(100%, calc(100vw - 40px));
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: rgba(255, 255, 255, 0.94);
  font: inherit;
  font-size: 1.8rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.video-modal__close::before,
.video-modal__close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1.8px;
  background: currentColor;
}

.video-modal__close::before {
  transform: rotate(45deg);
}

.video-modal__close::after {
  transform: rotate(-45deg);
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  opacity: 0.72;
  transform: scale(1.06);
}

.video-modal__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.digital-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
}

.digital-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.digital-label span:last-child {
  font-size: 1.2rem;
  transform: translateY(-1px);
}

.page-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 10px 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  text-align: center;
}

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

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .soft-entrance,
  .soft-entrance--delay-1,
  .soft-entrance--delay-2,
  .soft-entrance--delay-3,
  .soft-entrance--delay-4,
  .soft-entrance--delay-5 {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  body.menu-open .site-nav li,
  body.menu-open .utility-links {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 20px;
  }

  .album-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .cover-wrap {
    justify-self: center;
  }

  .album-copy {
    width: min(100%, 760px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: auto;
    --content-width: calc(100vw - 32px);
  }

  .site-header {
    position: relative;
  }

  body.menu-open .site-header {
    border-bottom-color: transparent;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px 18px;
    padding: 16px 5px 18px;
  }

  .brand {
    font-size: 2.4rem;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 32;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-menu {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 28;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-height: 100svh;
    margin-left: -50vw;
    gap: 34px;
    padding:
      max(110px, calc(env(safe-area-inset-top) + 96px))
      28px
      max(34px, calc(env(safe-area-inset-bottom) + 28px));
    color: rgba(255, 255, 255, 0.96);
    text-align: center;
    background: rgba(6, 6, 7, 0.78);
    backdrop-filter: blur(16px);
  }

  .site-nav {
    display: block;
    flex: 0 0 auto;
    width: min(100%, 320px);
    min-width: auto;
    margin: 0 auto;
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .site-nav li {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  body.menu-open .site-nav li {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 14px, 0);
    animation: menuItemIn 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  body.menu-open .site-nav li:nth-child(1) { animation-delay: 0.08s; }
  body.menu-open .site-nav li:nth-child(2) { animation-delay: 0.13s; }
  body.menu-open .site-nav li:nth-child(3) { animation-delay: 0.18s; }
  body.menu-open .site-nav li:nth-child(4) { animation-delay: 0.23s; }
  body.menu-open .site-nav li:nth-child(5) { animation-delay: 0.28s; }

  .site-nav a {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    padding: 0 12px;
    font-size: 1.12rem;
    letter-spacing: 0.08em;
    text-align: center;
    transition:
      opacity var(--transition),
      transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    opacity: 1;
    transform: translateX(10px);
  }

  .utility-links {
    flex: 0 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 20px;
    width: min(100%);
    margin: 0 auto;
    padding-bottom: 6px;
  }

  body.menu-open .utility-links {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 14px, 0);
    animation: menuItemIn 560ms cubic-bezier(0.22, 1, 0.36, 1) 0.32s forwards;
  }

  .utility-links .circle-link {
    width: auto;
    height: auto;
  }

  .page-a-distant-shore .site-shell {
    background: transparent;
  }

  .page-a-distant-shore .site-shell::before {
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
      url("../images/a2872033404_10.jpg") center bottom / 100% auto no-repeat,
      #060b10;
  }

  .page-a-distant-shore .site-shell::after {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
      linear-gradient(180deg, rgba(6, 10, 14, 0.84) 0%, rgba(6, 10, 14, 0.28) 24%, rgba(6, 10, 14, 0.08) 48%, rgba(6, 10, 14, 0.52) 100%),
      linear-gradient(90deg, rgba(3, 7, 10, 0.24), rgba(3, 7, 10, 0.06) 28%, rgba(3, 7, 10, 0.2) 100%),
      radial-gradient(circle at 52% 70%, rgba(248, 220, 168, 0.16), transparent 24%);
  }

  .page-main {
    min-height: auto;
    padding: 26px 0 18px;
  }

  .album-panel {
    padding: 22px 18px;
    gap: 24px;
  }

  .cover-wrap::after {
    inset: 12px -12px -12px 12px;
  }

  .album-title {
    font-size: clamp(2.1rem, 2vw, 2rem);
  }

  .album-heading {
    justify-items: center;
    text-align: center;
  }

  .album-meta {
    font-size: 0.9rem;
    justify-content: center;
  }

  .album-catch {
    gap: 6px;
    padding-top: 0;
  }

  .album-catch__lead-group {
    gap: 0;
  }

  .album-catch--hero {
    padding-bottom: 12px;
  }

  .album-catch__line--lead {
    font-size: clamp(0.95rem, 4.2vw, 1.08rem);
  }

  .album-catch__line--sub {
    font-size: clamp(0.84rem, 3.7vw, 0.94rem);
    line-height: 1.85;
  }

  .album-catch--hero .album-catch__line--lead {
    font-size: clamp(1.08rem, 4.8vw, 1.26rem);
  }

  .album-catch--hero .album-catch__line--sub {
    font-size: clamp(0.92rem, 3.95vw, 1rem);
  }

  .album-catch--hero .album-catch__line--single {
    font-size: clamp(0.72rem, 2.8vw, 0.88rem);
  }

  .album-catch__line--after-pause {
    margin-top: 8px;
  }

  .track-list li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 6px;
    font-size: 0.96rem;
  }

  .track-video-button {
    gap: 8px;
  }

  .album-info {
    justify-items: center;
    margin-top: 8px;
  }

  .album-info__toggle {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .album-info__panel {
    width: 100%;
  }

  .album-info__body p {
    font-size: 0.88rem;
    line-height: 1.95;
  }

  .digital-row {
    justify-content: center;
    gap: 14px 18px;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal__panel {
    width: min(100vw - 24px, 100%);
  }

  .video-modal__close {
    top: 8px;
    right: 8px;
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }
}
