:root {
  --bg: #030303;
  --fg: #ece8e1;
  --muted: #6e6a63;
  --accent: #c8ff00;
  --gold: #c9a962;
  --gold-soft: rgba(201, 169, 98, 0.35);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font: "Clash Display", system-ui, sans-serif;
  --vw: 1vw;
  --vh: 1vh;
  --scroll-progress: 0;
  --mouse-x: 0;
  --mouse-y: 0;
  --content-reveal: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 500;
  overflow-x: hidden;
}

body.luxury-mode {
  background: radial-gradient(ellipse 120% 80% at 50% -20%, #12100c 0%, var(--bg) 55%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

body.lenis-stopped {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

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

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

/* Opening */
.opening {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease;
}

.opening--done {
  opacity: 0;
  pointer-events: none;
}

.opening__loading[data-active="true"] {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 6;
}

.opening__text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin: 0;
}

/* Center platter — jackets canvas sits above this */
.opening::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: min(16rem, 38vw);
  height: min(16rem, 38vw);
  margin: auto;
  inset: 0;
  border-radius: 50%;
  background: #000;
  pointer-events: none;
}

.opening__button {
  position: absolute;
  z-index: 5;
  width: min(26.25rem, 70vw);
  height: min(26.25rem, 70vw);
  margin: auto;
  inset: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--fg);
  font-family: var(--font);
  cursor: pointer;
  overflow: visible;
}

.opening__button-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1.125rem);
  letter-spacing: 0.08em;
}

.opening__button-inner::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 3px solid #fff;
  border-radius: 50%;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  animation: spin 4s linear infinite;
}

.opening__button:hover:not(:disabled) .opening__button-inner {
  color: #fff;
}

.opening__button:disabled {
  opacity: 0.5;
  cursor: default;
}

.opening__canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.opening__canvas-wrap canvas {
  width: 100%;
  height: 100%;
}

/* WebGL vinyl disc */
.webgl {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* PREV/NEXT vinyl transition — no CSS fades (they caused multi-flash) */
body.disc-transitioning::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.85);
  pointer-events: none;
}

body.disc-transitioning .main,
body.disc-transitioning .nav,
body.disc-transitioning .jackets {
  opacity: 1;
}

body.disc-transitioning .webgl {
  z-index: 2000;
  opacity: 1;
}

/* Hold black between pages after disc nav */
html.disc-nav-pending body {
  background: #000;
}

html.disc-nav-pending body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #000;
  pointer-events: none;
}

/* Bottom nav (like original) */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 2.5rem 2.5rem 3.875rem;
  pointer-events: none;
}

.nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18.75rem;
  background: linear-gradient(
    0deg,
    #000 0%,
    rgba(0, 0, 0, 0.74) 19%,
    rgba(0, 0, 0, 0.54) 34%,
    transparent 100%
  );
  pointer-events: none;
}

.nav[data-visible="false"] {
  opacity: 0;
  pointer-events: none;
}

.nav a,
.nav button {
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.nav__logo {
  margin: 0;
}

.nav__logo img {
  width: clamp(52px, 5vw, 80px);
  filter: brightness(1.05);
}

.nav__logo a {
  text-decoration: none;
}

.nav__paging {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5.25rem;
  display: grid;
  grid-template-columns: 5rem 5rem;
  gap: 1.25rem;
  pointer-events: auto;
}

.nav__paging[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 2.5rem;
  text-decoration: none;
  transition: opacity 0.2s linear;
}

.nav__link:hover {
  opacity: 0.6;
}

.nav__link-body {
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  border-radius: 0.625rem;
  mask-image: linear-gradient(180deg, #000 3%, transparent 90%);
}

.nav__link-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  pointer-events: none;
}

.nav__link--active {
  opacity: 0.55;
}

.nav__menu-btn {
  width: clamp(64px, 8vw, 130px);
  height: clamp(64px, 8vw, 130px);
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.nav__menu-frame {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #fff;
  mask-image: linear-gradient(180deg, #000 0%, transparent 40%);
  animation: spin 12s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.nav__menu-icon::before,
.nav__menu-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--fg);
  transform: translate(-50%, -50%);
}

.nav__menu-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Menu overlay */
.menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.menu--open {
  opacity: 1;
  visibility: visible;
}

.menu__title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.menu__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
}

.menu__list li {
  margin-bottom: 1.5rem;
}

.menu__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--fg);
}

.menu__name {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: lowercase;
}

.menu__track {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: auto;
}

.menu__sns {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__sns a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.knob {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, #333, #111);
  border: 2px solid #444;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

/* Bottom block: vinyl behind journey + connect */
.content-bottom {
  position: relative;
  isolation: isolate;
  margin-top: clamp(1rem, 3vh, 2rem);
  padding-bottom: 6rem;
}

.ambient-vinyl {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(500px, 88vw);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, calc(-50% + var(--vinyl-y, 0px)), 0);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.ambient-vinyl.is-visible {
  opacity: 1;
  visibility: visible;
}

.ambient-vinyl__spin {
  width: 100%;
  height: 100%;
  animation: ambient-vinyl-spin 42s linear infinite;
  animation-play-state: paused;
}

.ambient-vinyl.is-visible .ambient-vinyl__spin {
  animation-play-state: running;
}

.ambient-vinyl__canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

body.disc-transitioning .ambient-vinyl {
  opacity: 0 !important;
}

body.disc-transitioning .ambient-vinyl__spin {
  animation-play-state: paused;
}

@keyframes ambient-vinyl-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Main */
.main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.main--profile {
  overflow-x: hidden;
}

/* —— Hero parallax (discoveryhi-c style) —— */
.hero-scroll {
  position: relative;
  overflow: visible;
}

.hero-scroll__sticky {
  position: sticky;
  top: 0;
  z-index: 8;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0 clamp(1.5rem, 4vh, 2.5rem);
  overflow: visible;
  pointer-events: none;
}

.hero-scroll__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-scroll__bg[data-visible="true"] {
  opacity: 1;
}

.hero-scroll__glow {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 50% 42% at 20% 70%, rgba(120, 50, 160, 0.28), transparent 68%),
    radial-gradient(ellipse 45% 38% at 85% 25%, rgba(201, 169, 98, 0.12), transparent 62%),
    radial-gradient(ellipse 40% 35% at 55% 45%, rgba(200, 255, 0, 0.06), transparent 60%),
    radial-gradient(ellipse 90% 65% at 50% 100%, rgba(0, 0, 0, 0.92), transparent 52%);
  pointer-events: none;
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.marquee {
  overflow: hidden;
  padding: 1rem 0;
  border-bottom: 1px solid #222;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

.marquee[data-visible="true"] {
  opacity: 1;
  transform: none;
}

.marquee--hero {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  opacity: 1;
  transform: none;
  will-change: transform;
}

.marquee--hero .marquee__inner {
  font-size: clamp(4.5rem, 16vw, 13rem);
  -webkit-text-stroke: 1px rgba(201, 169, 98, 0.15);
  color: transparent;
  animation-duration: 55s;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 700;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px var(--muted);
}

.marquee__inner span {
  padding-right: 2rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.hero-scroll__center {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: none;
  height: 100%;
  padding-top: 1.5rem;
  opacity: 0;
  transform: translateY(48px) scale(1.33);
  transform-origin: bottom center;
  transition: opacity 1.1s 0.15s ease, transform 1.1s 0.15s ease;
  will-change: transform, opacity;
  isolation: isolate;
}

.hero-scroll__center[data-visible="true"] {
  opacity: 1;
  transform: translateY(2vh) scale(1.33);
  transform-origin: bottom center;
}

.hero-scroll__photo {
  display: block;
  width: auto;
  height: min(113.5dvh, 1355px);
  max-height: calc(100dvh - 3rem);
  max-width: min(116vw, 1210px);
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
  filter: brightness(1.06) contrast(1.22) saturate(1.1)
    drop-shadow(0 32px 80px rgba(0, 0, 0, 0.8));
}

.hero-scroll__spacer {
  height: 28vh;
  pointer-events: none;
}

/* Copy block — below hero photo (not beside it) */
.hero-copy {
  position: relative;
  z-index: 11;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(3rem, 8vh, 5rem);
  text-align: left;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s 0.25s ease, transform 0.9s 0.25s ease;
}

.hero-copy[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy__name {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy__aka {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy__intro p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  font-family: system-ui, -apple-system, "Hiragino Sans", sans-serif;
  font-weight: 400;
}

.content--parallax {
  position: relative;
  z-index: 12;
  margin-top: 0;
  padding-top: clamp(1rem, 4vh, 2rem);
  padding-bottom: 2rem;
  background: transparent;
  overflow: visible;
}

.content--parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  max-width: none;
  height: min(42vh, 22rem);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

.content-bottom > .highlights.section-lux,
.content-bottom > .sns.section-lux {
  position: relative;
  z-index: 1;
  background: transparent;
}

.content-bottom > .highlights.section-lux h2,
.content-bottom > .highlights.section-lux .highlights__list li,
.content-bottom > .sns.section-lux h2,
.content-bottom > .sns.section-lux .sns__list a {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.92);
}

.content-bottom > .highlights.section-lux {
  padding-top: clamp(3rem, 8vh, 5rem);
  padding-bottom: clamp(2rem, 6vh, 4rem);
}

.content-bottom > .sns.section-lux {
  padding-bottom: clamp(2rem, 5vh, 3rem);
}

.content.content--parallax[data-visible="true"] {
  opacity: 1;
  transform: none;
}

.main--profile.parallax-active [data-parallax-speed="marquee"],
.main--profile.parallax-active .jacket {
  transition: none !important;
}

.jackets {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.jackets--back {
  z-index: 3;
}

/* Floating jackets — discoveryhi-c style (200×200 + transform parallax) */
.jacket {
  position: absolute;
  width: clamp(120px, 14vw, 200px);
  height: clamp(120px, 14vw, 200px);
  will-change: transform;
  transform-origin: center center;
}

.jacket__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.jacket__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jacket[data-index="0"] {
  top: 52%;
  left: 6%;
}
.jacket[data-index="1"] {
  top: 10%;
  right: 10%;
}
.jacket[data-index="2"] {
  top: 62%;
  right: 8%;
}
.jacket[data-index="3"] {
  top: 22%;
  left: 4%;
}
.jacket[data-index="4"] {
  bottom: 18%;
  left: 14%;
}
.jacket[data-index="5"] {
  top: 38%;
  right: 2%;
}

.content {
  max-width: 52rem;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 4vw, 2.5rem) 10rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s 0.4s, transform 1s 0.4s;
}

/* Luxury sections + scroll reveal */
.section-lux {
  position: relative;
  padding-top: clamp(3rem, 8vh, 5rem);
  margin-bottom: 1rem;
  border-top: 1px solid var(--glass-border);
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-lux.is-revealed,
.section-lux[data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-lux__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.section-lux__lead {
  margin: -0.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-weight: 400;
  max-width: 28rem;
}

.section-lux h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Videos */
.videos__grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.video-card {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--card-i, 0) * 0.1s);
}

.video-card.is-revealed {
  opacity: 1;
  transform: translate3d(0, calc(var(--card-shift, 0) * 1px), 0);
}

.video-card__frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.video-card__player {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.video-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0.8;
}

.video-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0 0;
}

.video-card__index {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  padding-top: 0.2rem;
}

.video-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.video-card__sub {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-weight: 400;
}

.videos__empty {
  padding: 2rem;
  border: 1px dashed var(--glass-border);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.85rem;
  font-family: system-ui, sans-serif;
}

.videos__empty code {
  color: var(--gold);
  font-size: 0.8em;
}

.content[data-visible="true"] {
  opacity: 1;
  transform: none;
}

.profile__bio p {
  line-height: 1.8;
  color: #aaa;
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.highlights {
  margin-top: 5rem;
}

.highlights__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights__item {
  display: flex;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  transition: padding-left 0.35s ease, border-color 0.35s ease;
}

.highlights__list li:hover .highlights__item {
  padding-left: 0.35rem;
  border-color: var(--gold-soft);
}

.highlights__item dt {
  font-weight: 700;
  min-width: 3rem;
  color: var(--muted);
  font-family: var(--font);
}

.highlights__item dd {
  margin: 0;
  color: #bbb;
}

.sns {
  margin-top: 5rem;
}

.sns__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sns__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.sns__list li:hover {
  background: var(--glass);
}

.sns__list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-decoration: none;
}

.sns__list h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: capitalize;
}

.sns__handle {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav__logo a {
  text-decoration: none;
}

.page-music__header p {
  color: var(--muted);
  line-height: 1.6;
}

.page-music__header a {
  color: #fff;
}

.page-music__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.page-music__title {
  font-weight: 700;
}

.page-music__sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.page-works,
.page-contact {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 6rem 2rem 12rem;
  max-width: 40rem;
  margin: 0 auto;
}

.page-works h1,
.page-contact h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: lowercase;
  margin: 0 0 1rem;
}

.page-works__lead,
.contact__lead {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.works__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.works__item {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.works__item h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}

.works__item p {
  color: #aaa;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.contact__text {
  color: #aaa;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.contact__email {
  margin: 2rem 0;
  font-size: 1.1rem;
}

.contact__email--placeholder {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact__email code {
  font-size: 0.85em;
  color: #ccc;
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.contact__list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-decoration: none;
  border-top: 1px solid #1a1a1a;
  color: #fff;
}

.contact__handle {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

/* Subpages */
.page-sub,
.page-music {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 6rem 2rem 12rem;
}

.page-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-sub h1,
.page-music__header h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: lowercase;
  margin: 0 0 1rem;
}

.page-sub p {
  color: var(--muted);
  max-width: 32rem;
}

.page-music__header {
  max-width: 40rem;
  margin: 0 auto 3rem;
  padding-left: 5rem;
}

.page-music__list {
  list-style: none;
  padding: 0;
  max-width: 40rem;
  margin: 0 auto;
}

.page-music__list li {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.page-music__list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 1rem 5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.2s;
}

.page-music__list a:hover {
  opacity: 0.65;
}

.page-music__num {
  font-family: var(--font);
  font-weight: 700;
  width: 2rem;
  color: var(--muted);
}

[data-visible] {
  transition: opacity 0.25s linear;
}

[data-visible="false"] {
  opacity: 0;
}

@media (max-width: 768px) {
  .nav {
    padding: 0 1.5rem 2rem 2rem;
  }

  .nav__paging {
    grid-template-columns: 7.5rem 7.5rem;
    bottom: 5.5rem;
  }

  .nav__link {
    width: 7.5rem;
    height: 3.5rem;
  }

  .nav__link-text {
    font-size: 1.1rem;
  }

  .page-music__header,
  .page-music__list a {
    padding-left: 2rem;
  }
  .hero-scroll__sticky {
    overflow: visible;
    padding-bottom: 2rem;
  }

  .hero-scroll__photo {
    height: min(108dvh, 1090px);
    max-height: calc(100dvh - 2.5rem);
    max-width: 116vw;
  }

  .hero-scroll__center[data-visible="true"] {
    transform: translateY(1.5vh) scale(1.33);
  }

  .hero-scroll__spacer {
    height: 18vh;
  }

  .hero-copy {
    padding-bottom: 2.5rem;
  }

  .marquee--hero .marquee__inner {
    font-size: clamp(3rem, 22vw, 6rem);
  }

  .jacket {
    width: clamp(96px, 22vw, 140px);
    height: clamp(96px, 22vw, 140px);
    opacity: 0.85;
  }

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

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

/* Booking */
.booking {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 10vh, 6rem);
}

.booking__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  margin-top: 0.5rem;
}

.booking__calendar-panel {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
}

.booking__cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.booking__cal-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.booking__cal-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--fg);
  font-family: var(--font);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.booking__cal-btn:hover {
  border-color: var(--gold-soft);
  background: rgba(201, 169, 98, 0.12);
}

.booking__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: system-ui, sans-serif;
}

.booking__legend li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.booking__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.booking__dot--open {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-soft);
}

.booking__dot--booked {
  background: #3a3a3a;
}

.booking__dot--pending {
  background: #6b5a2e;
}

.booking__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.booking__weekday {
  font-size: 0.65rem;
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: system-ui, sans-serif;
}

.booking__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.booking__day {
  aspect-ratio: 1;
  min-height: 2.25rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.booking__day--empty {
  pointer-events: none;
  border: none;
}

.booking__day--open:hover {
  border-color: var(--gold-soft);
  background: rgba(201, 169, 98, 0.1);
}

.booking__day--open {
  color: var(--fg);
}

.booking__day--selected {
  border-color: var(--gold) !important;
  background: rgba(201, 169, 98, 0.22) !important;
  color: #fff;
}

.booking__day--booked,
.booking__day--pending,
.booking__day--past {
  cursor: not-allowed;
  opacity: 0.35;
  color: var(--muted);
}

.booking__day--pending:not(:disabled) {
  opacity: 0.55;
}

.booking__selected {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
}

.booking__selected strong {
  color: var(--gold);
  font-weight: 600;
}

.booking__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
}

.booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.booking__field--full {
  grid-column: 1 / -1;
}

.booking__field span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.booking__field input,
.booking__field select,
.booking__field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--fg);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.booking__field input:focus,
.booking__field select:focus,
.booking__field textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
}

.booking__field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.booking__submit {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.22) 0%,
    rgba(201, 169, 98, 0.06) 100%
  );
  color: var(--fg);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease;
}

.booking__submit:hover {
  background: rgba(201, 169, 98, 0.32);
  border-color: #e0c88a;
}

.booking__submit:active {
  transform: scale(0.99);
}

.booking__note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}
