/* ---------- Design tokens ---------- */
:root {
  --ink: #070609;
  --ink-soft: #0e0b13;
  --panel: #141018;
  --paper: #f3efe7;
  --white: #fffaf2;
  --muted: #aaa2ad;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff9f0a;
  --gold: #ffd166;
  --violet: #7b35ff;
  --violet-soft: #a67cff;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --header-height: 6rem;
  --section-space: clamp(6rem, 12vw, 11rem);
  --radius-sm: 0.9rem;
  --radius-md: 1.6rem;
  --radius-lg: clamp(2rem, 4vw, 4rem);
  --radius-pill: 999px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 20rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(123, 53, 255, 0.08), transparent 30rem),
    radial-gradient(circle at 88% 36%, rgba(255, 159, 10, 0.045), transparent 34rem),
    var(--ink);
  color: var(--white);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

h2 em,
h1 em {
  color: var(--orange);
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

/* ---------- Global ambient motion ---------- */
.motion-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
}

.ambient-light {
  position: fixed;
  top: -20rem;
  left: -20rem;
  z-index: 0;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 53, 255, 0.16), transparent 66%);
  pointer-events: none;
  transform: translate3d(calc(var(--mouse-x, 50vw) * 0.09), calc(var(--mouse-y, 50vh) * 0.09), 0);
  transition: transform 1.4s var(--ease-out);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.045;
  pointer-events: none;
  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='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 2px;
  transform-origin: left;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--orange), var(--gold));
  box-shadow: 0 0 12px rgba(255, 159, 10, 0.8);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  box-shadow: 0 0 14px var(--orange);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: height 0.45s var(--ease-out), background 0.45s ease, border-color 0.45s ease;
}

.site-header.is-scrolled,
.legal-page .site-header {
  height: 4.8rem;
  background: rgba(7, 6, 9, 0.82);
  border-color: var(--line);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  width: clamp(7.5rem, 10vw, 10rem);
}

.brand img,
.footer__logo img {
  width: 100%;
  filter: drop-shadow(0 0 12px rgba(255, 159, 10, 0.28));
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: clamp(1rem, 3vw, 3.4rem);
  justify-self: start;
}

.header-socials a {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #c9c3cc;
  place-items: center;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.header-socials a:hover,
.header-socials a:focus-visible {
  border-color: rgba(255, 159, 10, 0.5);
  background: rgba(255, 159, 10, 0.14);
  color: var(--orange);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.6vw, 3rem);
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.site-nav a {
  position: relative;
  color: #d6d1d8;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.7rem 0.35rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.35rem 0;
  background: currentColor;
  transition: transform 0.3s var(--ease-out);
}

/* ---------- Reusable components ---------- */
.section {
  width: min(100%, 100rem);
  margin: 0 auto;
  padding: var(--section-space) var(--page-pad);
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-marker::after {
  content: "";
  width: min(11vw, 8rem);
  height: 1px;
  background: var(--line);
}

.section-marker span:first-child {
  color: var(--orange);
}

.section-marker--light {
  color: rgba(7, 6, 9, 0.55);
}

.section-marker--light span:first-child {
  color: var(--violet);
}

.section-marker--light::after {
  background: rgba(7, 6, 9, 0.24);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #c6beca;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--orange);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.6rem;
  min-width: 12rem;
  padding: 1.05rem 1.15rem 1.05rem 1.35rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.4s var(--ease-out);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-102%);
  transition: transform 0.45s var(--ease-out);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button--primary {
  background: var(--orange);
  color: var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
  color: var(--ink);
}

.button--primary:hover::before,
.button--primary:focus-visible::before {
  transform: none;
}

.button--light {
  background: var(--ink);
  color: var(--white);
}

.button--light::before {
  background: var(--violet);
}

.button--light:hover::before,
.button--light:focus-visible::before {
  transform: none;
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: #e1dce3;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 5rem);
  min-height: 100svh;
  padding: calc(var(--header-height) + 3rem) var(--page-pad) 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.08), transparent);
}

.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 62rem;
}

.hero__eyebrow {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  opacity: 0;
  animation: hero-enter 0.9s 0.15s var(--ease-out) forwards;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(5rem, 10.3vw, 11rem);
  line-height: 0.78;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(1em) rotate(2deg);
  animation: hero-type 1.1s 0.3s var(--ease-out) forwards;
}

.hero-line:nth-child(2) {
  color: var(--orange);
  font-weight: 750;
  letter-spacing: -0.075em;
  animation-delay: 0.44s;
}

.hero-line--outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 250, 242, 0.72);
}

.hero__intro {
  max-width: 31rem;
  margin-top: clamp(2.2rem, 4vw, 3.5rem);
  color: #bcb5c0;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.7;
  opacity: 0;
  animation: hero-enter 0.9s 0.75s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-top: 2.2rem;
  opacity: 0;
  animation: hero-enter 0.9s 0.9s var(--ease-out) forwards;
}

.hero__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.4rem;
  opacity: 0;
  animation: hero-enter 0.9s 1.02s var(--ease-out) forwards;
}

.hero__socials a {
  color: #85808a;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.hero__socials a span {
  color: var(--orange);
}

.hero__socials a:hover,
.hero__socials a:focus-visible {
  color: var(--white);
}

.hero__visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: min(77vh, 55rem);
  opacity: 0;
  transform: translateX(4rem);
  animation: hero-visual 1.3s 0.25s var(--ease-out) forwards;
  will-change: transform;
}

.hero__image-wrap {
  position: absolute;
  top: 5%;
  right: 0;
  width: min(90%, 37rem);
  height: 88%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(7, 6, 9, 0.7)), linear-gradient(90deg, rgba(123, 53, 255, 0.18), transparent 45%);
  mix-blend-mode: color;
  border-radius: inherit;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  filter: contrast(1.12) saturate(0.82);
  transform: scale(1.04);
  animation: hero-image-breathe 11s ease-in-out infinite alternate;
}

.hero__halo {
  position: absolute;
  top: 13%;
  right: -10%;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 10, 0.36), rgba(123, 53, 255, 0.14) 42%, transparent 68%);
  filter: blur(12px);
  animation: halo-pulse 5s ease-in-out infinite;
}

.hero__logo {
  position: absolute;
  right: 4%;
  bottom: 1.5%;
  z-index: 3;
  width: min(110%, 45rem);
  transform: rotate(-4deg);
  filter: drop-shadow(0 0 24px rgba(255, 159, 10, 0.34));
}

.hero__stamp {
  position: absolute;
  top: 9%;
  left: -1.5rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: var(--radius-sm);
  background: rgba(7, 6, 9, 0.48);
  backdrop-filter: blur(9px);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__stamp span:first-child {
  color: var(--orange);
}

.equalizer {
  position: absolute;
  top: 5%;
  right: -1rem;
  z-index: 5;
  display: flex;
  align-items: end;
  gap: 4px;
  width: 7rem;
  height: 2.6rem;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
}

.equalizer i {
  display: block;
  flex: 1;
  height: 25%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 159, 10, 0.65);
  animation: equalize 1.15s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2n) { animation-delay: -0.8s; }
.equalizer i:nth-child(3n) { animation-delay: -0.35s; }
.equalizer i:nth-child(5n) { animation-delay: -1.05s; }

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #77717c;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 4rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  animation: scroll-line 2s var(--ease-smooth) infinite;
}

.hero__index {
  position: absolute;
  right: var(--page-pad);
  bottom: 1.5rem;
  color: #77717c;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hero__index span {
  padding: 0 0.6rem;
  color: var(--orange);
}

/* ---------- Sound signature ---------- */
.signal-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 9rem;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin: 1.5rem var(--page-pad) 0;
  padding: 1rem 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 88% 50%, rgba(123, 53, 255, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 1.5rem 4rem rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.signal-strip__intro {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip__pulse {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 159, 10, 0.75);
}

.signal-strip__pulse::after {
  content: "";
  position: absolute;
  inset: -0.4rem;
  border: 1px solid rgba(255, 159, 10, 0.42);
  border-radius: 50%;
  animation: signal-ring 2.4s ease-out infinite;
}

.signal-strip__genres {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.signal-strip__genres > span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.35s var(--ease-out);
}

.signal-strip__genres > span:hover {
  border-color: rgba(255, 159, 10, 0.35);
  background: rgba(255, 159, 10, 0.08);
  transform: translateY(-2px);
}

.signal-strip__genres small {
  color: var(--orange);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.signal-strip__wave {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  height: 2.3rem;
}

.signal-strip__wave i {
  display: block;
  width: 3px;
  height: 28%;
  border-radius: var(--radius-pill);
  background: linear-gradient(to top, var(--violet), var(--orange));
  animation: signal-wave 1.15s ease-in-out infinite alternate;
}

.signal-strip__wave i:nth-child(2n) { animation-delay: -0.7s; }
.signal-strip__wave i:nth-child(3n) { animation-delay: -0.35s; }
.signal-strip__wave i:nth-child(5n) { animation-delay: -0.95s; }

/* ---------- Story ---------- */
.story__headline {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.55fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(4rem, 9vw, 8rem);
}

.story__headline h2,
.music__heading h2,
.gallery__heading h2 {
  font-size: clamp(4.2rem, 9vw, 9rem);
}

.story__headline p,
.music__heading p {
  max-width: 26rem;
  padding-bottom: 0.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
}

.story__visual-column {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44rem;
  padding: 4rem 0 5rem 12%;
  isolation: isolate;
}

.story-orbit {
  position: absolute;
  top: 50%;
  left: -20%;
  z-index: -1;
  width: min(88%, 34rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 159, 10, 0.12), rgba(123, 53, 255, 0.045) 44%, transparent 70%);
  filter: drop-shadow(0 0 3rem rgba(123, 53, 255, 0.08));
  transform: translateY(-50%);
}

.story-orbit__ring,
.story-orbit__core,
.story-orbit__satellite {
  position: absolute;
  border-radius: 50%;
}

.story-orbit__ring {
  animation: story-orbit-spin 18s linear infinite;
}

.story-orbit__ring--outer {
  inset: 0;
  border: 1px dashed rgba(255, 159, 10, 0.42);
  box-shadow: inset 0 0 2rem rgba(255, 159, 10, 0.025);
}

.story-orbit__ring--middle {
  inset: 16%;
  border: 1px solid rgba(166, 124, 255, 0.28);
  animation-direction: reverse;
  animation-duration: 13s;
}

.story-orbit__ring--middle::after {
  content: "";
  position: absolute;
  top: -0.3rem;
  left: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--violet-soft);
  box-shadow: 0 0 14px rgba(166, 124, 255, 0.9);
}

.story-orbit__ring--inner {
  inset: 33%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  animation-duration: 9s;
}

.story-orbit__core {
  inset: 44%;
  border: 1px solid rgba(255, 159, 10, 0.5);
  background: var(--ink);
  box-shadow: 0 0 1.5rem rgba(255, 159, 10, 0.28), inset 0 0 0 0.35rem rgba(255, 159, 10, 0.08);
}

.story-orbit__satellite {
  top: calc(50% - 1px);
  left: 50%;
  width: 46%;
  height: 2px;
  border-radius: var(--radius-pill);
  transform-origin: left center;
  animation: story-satellite 7s linear infinite;
}

.story-orbit__satellite::after {
  content: "";
  position: absolute;
  top: -0.3rem;
  right: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 1rem rgba(255, 159, 10, 0.9);
}

.story-orbit__meter {
  position: absolute;
  bottom: 12%;
  left: 18%;
  display: flex;
  align-items: end;
  gap: 3px;
  width: 5rem;
  height: 2.5rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(7, 6, 9, 0.78);
  backdrop-filter: blur(8px);
}

.story-orbit__meter i {
  display: block;
  flex: 1;
  height: 30%;
  border-radius: var(--radius-pill);
  background: linear-gradient(to top, var(--violet), var(--orange));
  animation: story-orbit-meter 0.95s ease-in-out infinite alternate;
}

.story-orbit__meter i:nth-child(2n) { animation-delay: -0.3s; }
.story-orbit__meter i:nth-child(3n) { animation-delay: -0.65s; }

.story-orbit__label {
  position: absolute;
  top: 11%;
  left: 24%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(7, 6, 9, 0.78);
  backdrop-filter: blur(8px);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-orbit__label span {
  color: var(--orange);
}

.story-orbit__label strong {
  color: var(--muted);
  font-size: 0.58rem;
}

.story__portrait {
  position: relative;
  z-index: 2;
  width: min(88%, 39rem);
  margin-left: auto;
  overflow: visible;
}

.story__portrait::before {
  content: "";
  position: absolute;
  inset: -1.2rem 1.2rem 1.2rem -1.2rem;
  z-index: -1;
  border: 1px solid rgba(255, 159, 10, 0.4);
  border-radius: var(--radius-lg);
}

.story__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.75) contrast(1.08);
  border-radius: var(--radius-lg);
}

.story__portrait figcaption {
  position: absolute;
  right: -2.5rem;
  bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.story__content {
  padding-block: 2rem;
}

.story__content .lead {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.35;
}

.story-flow-card {
  position: relative;
  min-height: 13rem;
  margin-bottom: 2rem;
  padding: 1.1rem 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(123, 53, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  isolation: isolate;
}

.story-flow-card__top,
.story-flow-card__bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #8b8490;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-flow-card__top i {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(255, 159, 10, 0.9);
  animation: flow-pulse 1.8s ease-in-out infinite;
}

.story-flow-card__stage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 8rem;
  overflow: hidden;
}

.story-flow-card__glow {
  position: absolute;
  width: 10rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.62;
  animation: flow-float 6s var(--ease-smooth) infinite alternate;
}

.story-flow-card__glow--orange {
  top: -55%;
  left: 4%;
  background: rgba(255, 159, 10, 0.48);
}

.story-flow-card__glow--violet {
  right: 2%;
  bottom: -70%;
  background: rgba(123, 53, 255, 0.62);
  animation-delay: -3s;
  animation-direction: alternate-reverse;
}

.story-flow-card__type {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
  animation: flow-type 4.5s var(--ease-smooth) infinite alternate;
}

.story-flow-card__type span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 250, 242, 0.65);
}

.story-flow-card__type strong {
  color: var(--orange);
  font: inherit;
}

.story-flow-card__line {
  position: absolute;
  right: -15%;
  bottom: 22%;
  left: -15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--violet-soft), transparent);
  box-shadow: 0 0 12px rgba(255, 159, 10, 0.45);
  animation: flow-line 3.8s ease-in-out infinite;
}

.story-flow-card__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
}

.story-flow-card__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 1.3rem;
}

.story-flow-card__wave i {
  display: block;
  width: 3px;
  height: 25%;
  border-radius: var(--radius-pill);
  background: linear-gradient(to top, var(--violet), var(--orange));
  animation: flow-wave 0.95s ease-in-out infinite alternate;
}

.story-flow-card__wave i:nth-child(2n) { animation-delay: -0.25s; }
.story-flow-card__wave i:nth-child(3n) { animation-delay: -0.65s; }
.story-flow-card__wave i:nth-child(5n) { animation-delay: -0.85s; }

.story__content > p:not(.lead) {
  color: var(--muted);
  line-height: 1.8;
}

.facts {
  margin-top: 3.2rem;
  border-top: 1px solid var(--line);
}

.facts > div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: background 0.3s ease, padding 0.35s var(--ease-out);
}

.facts > div:hover {
  padding-inline: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.facts dt {
  color: #77717c;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.facts dd {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Music ---------- */
.music {
  padding-top: calc(var(--section-space) * 0.55);
}

.music__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.release-list {
  display: grid;
  gap: 1.1rem;
}

.release-card {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(10rem, 18rem) 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
  min-height: 17rem;
  padding: 2rem 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  isolation: isolate;
}

.release-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(123, 53, 255, 0.15), rgba(255, 159, 10, 0.07));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.55s var(--ease-out);
}

.release-card:hover::before,
.release-card:focus-visible::before {
  transform: scaleY(1);
}

.release-card__number {
  align-self: start;
  padding-top: 0.35rem;
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.release-card__art {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 0.3rem);
  background: var(--panel);
}

.release-card__art--single {
  aspect-ratio: 1;
}

.release-card__art--live {
  aspect-ratio: 16 / 10;
}

.release-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.release-card:hover .release-card__art img,
.release-card:focus-visible .release-card__art img {
  filter: saturate(1.1);
  transform: scale(1.07);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(7, 6, 9, 0.38);
  backdrop-filter: blur(7px);
  place-items: center;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease, transform 0.4s var(--ease-out);
}

.play-icon svg {
  width: 1.4rem;
  fill: currentColor;
}

.release-card:hover .play-icon {
  background: var(--orange);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.12);
}

.release-card__copy p,
.release-card__copy > span {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.release-card__copy h3 {
  margin: 1.1rem 0 1.3rem;
  font-size: clamp(2.5rem, 5vw, 5.7rem);
  transition: color 0.3s ease;
}

.release-card:hover .release-card__copy h3 {
  color: var(--orange);
}

.release-card__arrow {
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1.2rem;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.45s var(--ease-out);
}

.release-card:hover .release-card__arrow {
  background: var(--orange);
  color: var(--ink);
  transform: rotate(45deg);
}

/* ---------- Journey ---------- */
.journey {
  position: relative;
  margin: 4rem var(--page-pad) 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
}

.journey__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.journey__word {
  position: absolute;
  top: 1rem;
  right: -4vw;
  color: transparent;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(8rem, 25vw, 27rem);
  letter-spacing: -0.05em;
  line-height: 0.8;
  opacity: 0.15;
  -webkit-text-stroke: 1px var(--ink);
  transform: rotate(-7deg);
}

.journey__orbit {
  position: absolute;
  top: 20%;
  right: 4%;
  width: min(34vw, 34rem);
  aspect-ratio: 1;
  border: 1px solid rgba(7, 6, 9, 0.2);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.journey__orbit::before,
.journey__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.journey__orbit::before {
  top: -0.45rem;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--violet);
  box-shadow: 0 0 20px rgba(123, 53, 255, 0.65);
}

.journey__orbit::after {
  inset: 21%;
  border: 1px solid rgba(123, 53, 255, 0.22);
}

.journey__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(22rem, 0.8fr);
  column-gap: clamp(3rem, 10vw, 12rem);
}

.journey__content .section-marker {
  grid-column: 1 / -1;
}

.journey h2 {
  font-size: clamp(4rem, 8vw, 8.5rem);
}

.journey h2 em {
  color: var(--violet);
}

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

.timeline li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.4rem;
  padding: 1.7rem 0;
  border-top: 1px solid rgba(7, 6, 9, 0.2);
}

.timeline li:last-child {
  border-bottom: 1px solid rgba(7, 6, 9, 0.2);
}

.timeline__year {
  color: var(--violet);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 0.8rem;
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.timeline p {
  color: rgba(7, 6, 9, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---------- Gallery ---------- */
.gallery__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.gallery__heading p {
  padding-bottom: 0.5rem;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}

.gallery-card {
  position: relative;
  align-self: start;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--panel);
  transform-style: preserve-3d;
  will-change: transform;
}

.gallery-card--wide {
  grid-column: 1 / 9;
}

.gallery-card--portrait {
  grid-column: 9 / 13;
  margin-top: 18%;
}

.gallery-card--portrait:nth-of-type(3) {
  grid-column: 2 / 6;
}

.gallery-card--portrait:nth-of-type(4) {
  grid-column: 7 / 12;
  margin-top: 5rem;
}

.gallery-card img {
  width: 100%;
  height: auto;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 1s var(--ease-out), filter 0.5s ease;
}

.gallery-card--portrait img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.gallery-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 1.1rem;
  background: linear-gradient(transparent, rgba(7, 6, 9, 0.8));
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateZ(2rem);
}

.gallery-card figcaption span:last-child {
  color: var(--orange);
}

/* ---------- Booking ---------- */
.booking {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr;
  align-items: end;
  gap: 4rem;
  min-height: min(78rem, 85svh);
  margin: var(--page-pad);
  padding: var(--section-space) var(--page-pad);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--orange);
  color: var(--ink);
}

.booking::before {
  content: "ESKEY";
  position: absolute;
  top: 50%;
  left: 50%;
  color: transparent;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(12rem, 35vw, 38rem);
  letter-spacing: -0.06em;
  line-height: 0.7;
  opacity: 0.13;
  -webkit-text-stroke: 2px var(--ink);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.booking__beam {
  position: absolute;
  top: -45%;
  left: 68%;
  width: 6rem;
  height: 190%;
  background: rgba(255, 250, 242, 0.34);
  filter: blur(24px);
  transform: rotate(22deg);
  animation: booking-beam 7s ease-in-out infinite alternate;
}

.booking__content,
.booking__contact {
  position: relative;
  z-index: 2;
}

.booking .eyebrow {
  margin-bottom: 2rem;
  color: rgba(7, 6, 9, 0.7);
}

.booking .eyebrow span {
  color: var(--violet);
}

.booking h2 {
  margin-bottom: 3rem;
  font-size: clamp(5rem, 13vw, 14rem);
}

.booking h2 em {
  color: var(--white);
}

.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(7, 6, 9, 0.35);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking__contact a {
  margin: 0.4rem 0 1.2rem;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  letter-spacing: 0.03em;
  text-transform: none;
  overflow-wrap: anywhere;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(4rem, 8vw, 7rem) var(--page-pad) 2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #050406;
}

.footer__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer__logo {
  width: min(29rem, 45vw);
}

.footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.4rem;
}

.footer__socials a,
.footer__bottom,
.footer__legal strong {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__socials a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer__socials a:hover,
.footer__socials a:focus-visible,
.footer__legal a:hover,
.footer__bottom a:hover {
  color: var(--orange);
}

.footer__legal {
  display: grid;
  grid-template-columns: 0.55fr 0.8fr 1.5fr;
  gap: clamp(2rem, 6vw, 7rem);
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer__legal strong {
  display: block;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer__legal-label {
  display: block;
  margin: -0.6rem 0 0.9rem;
  color: #706a74;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__legal p {
  font-size: 0.78rem;
  line-height: 1.75;
}

.footer__copyright {
  max-width: 46rem;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #706a74;
}

.footer__bottom a {
  transition: color 0.25s ease;
}

/* ---------- Legal page ---------- */
.legal-page {
  background: var(--ink);
}

.legal-page .site-header {
  grid-template-columns: auto 1fr auto auto;
}

.legal-page .site-nav {
  justify-self: end;
  padding-right: 0;
}

.legal-main {
  position: relative;
  z-index: 1;
  width: min(100% - (2 * var(--page-pad)), 66rem);
  margin: 0 auto;
  padding: calc(var(--header-height) + 6rem) 0 var(--section-space);
}

.legal-hero {
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}

.legal-hero .eyebrow {
  margin-bottom: 2.2rem;
}

.legal-hero h1 {
  max-width: 13ch;
  font-size: clamp(4rem, 10vw, 9rem);
}

.legal-hero h1 em {
  display: block;
}

.legal-hero > p:last-child {
  margin-top: 2.3rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-content {
  counter-reset: legal-section;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: legal-section;
}

.legal-section h2 {
  position: relative;
  padding-left: 2.3rem;
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-transform: none;
}

.legal-section h2::before {
  content: counter(legal-section, decimal-leading-zero);
  position: absolute;
  top: 0.2rem;
  left: 0;
  color: var(--orange);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.legal-section__body {
  color: var(--muted);
}

.legal-section__body p + p,
.legal-section__body ul + p,
.legal-section__body p + ul {
  margin-top: 1rem;
}

.legal-section__body p,
.legal-section__body li {
  font-size: 0.94rem;
  line-height: 1.8;
}

.legal-section__body ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.legal-section__body li + li {
  margin-top: 0.5rem;
}

.legal-section__body a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 159, 10, 0.55);
  text-underline-offset: 0.25em;
}

.legal-section__body a:hover {
  color: var(--orange);
}

.legal-contact {
  padding: 1.4rem;
  border-left: 2px solid var(--orange);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem var(--page-pad);
  border-top: 1px solid var(--line);
  background: #050406;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-footer img {
  width: 8rem;
}

.legal-footer__links {
  display: flex;
  gap: 1.5rem;
}

.legal-footer a:hover {
  color: var(--orange);
}

/* ---------- JS states ---------- */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .image-reveal {
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out), clip-path 1.2s var(--ease-out);
}

.motion-ready .image-reveal.is-visible {
  clip-path: inset(-2rem -3rem -3rem -3rem);
}

.motion-paused .hero__image-wrap img,
.motion-paused .hero__halo,
.motion-paused .equalizer i,
.motion-paused .signal-strip__pulse::after,
.motion-paused .signal-strip__wave i,
.motion-paused .story-flow-card__top i,
.motion-paused .story-flow-card__glow,
.motion-paused .story-flow-card__type,
.motion-paused .story-flow-card__line,
.motion-paused .story-flow-card__wave i,
.motion-paused .story-orbit__ring,
.motion-paused .story-orbit__satellite,
.motion-paused .story-orbit__meter i,
.motion-paused .scroll-cue i::after,
.motion-paused .journey__orbit,
.motion-paused .booking__beam {
  animation-play-state: paused !important;
}

/* ---------- Keyframes ---------- */
@keyframes hero-enter {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-type {
  from { opacity: 0; transform: translateY(1em) rotate(2deg); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-visual {
  from { opacity: 0; transform: translateX(4rem) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-image-breathe {
  to { transform: scale(1.11) translateY(-1.5%); }
}

@keyframes halo-pulse {
  50% { opacity: 0.65; transform: scale(1.12); }
}

@keyframes equalize {
  0% { height: 18%; }
  100% { height: 100%; }
}

@keyframes signal-ring {
  0% { opacity: 0.8; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes signal-wave {
  0% { height: 18%; opacity: 0.55; }
  100% { height: 100%; opacity: 1; }
}

@keyframes flow-pulse {
  50% { opacity: 0.45; transform: scale(0.72); }
}

@keyframes flow-float {
  to { transform: translate3d(3rem, 1rem, 0) scale(1.25); }
}

@keyframes flow-type {
  from { transform: translateX(0); }
  to { transform: translateX(clamp(0.6rem, 3vw, 2rem)); }
}

@keyframes flow-line {
  0%, 100% { opacity: 0.35; transform: scaleX(0.55); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes flow-wave {
  from { height: 18%; opacity: 0.5; }
  to { height: 100%; opacity: 1; }
}

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

@keyframes story-satellite {
  to { transform: rotate(360deg); }
}

@keyframes story-orbit-meter {
  from { height: 18%; opacity: 0.5; }
  to { height: 100%; opacity: 1; }
}

@keyframes scroll-line {
  0% { transform: translateX(-101%); }
  50%, 100% { transform: translateX(101%); }
}

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

@keyframes booking-beam {
  to { left: 24%; transform: rotate(28deg); }
}

/* ---------- Responsive ---------- */
@media (max-width: 70rem) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.75fr);
  }

  .hero h1 {
    font-size: clamp(5rem, 11vw, 8rem);
  }

  .hero__logo {
    right: -10%;
    width: 120%;
  }

  .story__headline {
    gap: 2rem;
  }

  .release-card {
    grid-template-columns: 2rem minmax(10rem, 15rem) 1fr auto;
    gap: 2rem;
  }
}

@media (max-width: 54rem) {
  :root {
    --header-height: 5rem;
  }

  .site-header,
  .legal-page .site-header {
    grid-template-columns: auto 1fr auto;
    height: var(--header-height);
  }

  .brand {
    width: 8rem;
  }

  .header-socials {
    gap: 0.35rem;
    margin-left: 0.9rem;
  }

  .header-socials a {
    width: 2.2rem;
    height: 2.2rem;
  }

  .header-socials svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.2rem;
    padding: 7rem var(--page-pad) 4rem;
    background: rgba(7, 6, 9, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2rem);
    transition: opacity 0.35s ease, transform 0.45s var(--ease-out);
  }

  .site-nav::before {
    content: "MENU / ESKEY";
    position: absolute;
    top: 7rem;
    left: var(--page-pad);
    color: var(--orange);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.16em;
  }

  .site-nav a {
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(3.2rem, 12vw, 6rem);
    letter-spacing: -0.04em;
    line-height: 0.92;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(0.35rem) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-0.35rem) rotate(-45deg);
  }

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

  .signal-strip__genres {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .signal-strip__wave {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: auto;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero h1 {
    font-size: clamp(4.7rem, 20vw, 9rem);
  }

  .hero__copy {
    z-index: 5;
  }

  .hero__visual {
    min-height: 39rem;
    margin-top: -2rem;
  }

  .hero__image-wrap {
    right: -6%;
    width: 88%;
  }

  .hero__logo {
    right: -5%;
    width: min(110%, 42rem);
  }

  .scroll-cue,
  .hero__index {
    display: none;
  }

  .story__headline,
  .story__grid,
  .music__heading,
  .journey__content,
  .booking {
    grid-template-columns: 1fr;
  }

  .story__headline,
  .music__heading {
    align-items: start;
    gap: 2rem;
  }

  .story__portrait {
    width: min(88%, 35rem);
  }

  .story__visual-column {
    min-height: auto;
    padding: 4rem 0 5rem 8%;
  }

  .story-orbit {
    left: -14%;
    width: min(78%, 28rem);
  }

  .story__content {
    width: min(100%, 38rem);
    margin-left: auto;
  }

  .release-card {
    grid-template-columns: 2rem minmax(9rem, 14rem) 1fr;
  }

  .release-card__arrow {
    display: none;
  }

  .journey__content {
    gap: 4rem;
  }

  .journey__orbit {
    opacity: 0.35;
  }

  .booking {
    min-height: 50rem;
  }

  .booking__contact {
    max-width: 28rem;
  }

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

  .footer__copyright {
    grid-column: 1 / -1;
  }

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

  .legal-page .site-nav {
    justify-self: auto;
    padding: 7rem var(--page-pad) 4rem;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }
}

@media (max-width: 38rem) {
  :root {
    --page-pad: 1.15rem;
    --section-space: 6.5rem;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 17vw, 7rem);
  }

  .hero__intro {
    max-width: 90%;
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual {
    min-height: 31rem;
    margin-top: 0;
  }

  .hero__image-wrap {
    width: 94%;
    height: 86%;
  }

  .hero__logo {
    bottom: 3%;
  }

  .hero__stamp {
    left: 0;
  }

  .equalizer {
    right: 0;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.75rem;
    padding: 1rem;
  }

  .signal-strip__intro {
    justify-content: center;
  }

  .signal-strip__genres {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-strip__genres > span {
    justify-content: center;
    min-width: 0;
  }

  .signal-strip__wave {
    grid-column: auto;
    grid-row: auto;
    justify-content: center;
    height: 1.5rem;
  }

  .story__headline h2,
  .music__heading h2,
  .gallery__heading h2,
  .journey h2 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }

  .story__portrait figcaption {
    display: none;
  }

  .story-flow-card {
    min-height: 11rem;
    padding: 0.9rem;
    border-radius: var(--radius-sm);
  }

  .story-flow-card__top {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }

  .story-flow-card__stage {
    min-height: 6.8rem;
  }

  .story-flow-card__type {
    gap: 0.4rem;
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .story-flow-card__bottom {
    grid-template-columns: auto 1fr;
    font-size: 0.47rem;
    letter-spacing: 0.08em;
  }

  .story-flow-card__bottom > span:last-child {
    display: none;
  }

  .story__visual-column {
    padding: 3rem 0 4rem 6%;
  }

  .story-orbit {
    left: -24%;
    width: 96%;
  }

  .story-orbit__label {
    top: 8%;
    left: 30%;
  }

  .story-orbit__meter {
    bottom: 8%;
    left: 28%;
  }

  .facts > div {
    grid-template-columns: 6.4rem 1fr;
  }

  .release-card {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.6rem 0;
  }

  .release-card__number {
    position: absolute;
    top: 2.2rem;
    left: 0.8rem;
    z-index: 2;
    padding: 0.4rem;
    background: var(--ink);
  }

  .release-card__art {
    width: 100%;
  }

  .release-card__copy h3 {
    font-size: 2.8rem;
  }

  .timeline li {
    grid-template-columns: 3.5rem 1fr;
  }

  .gallery__heading {
    align-items: start;
    flex-direction: column;
  }

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

  .gallery-card--wide {
    grid-column: 1 / -1;
  }

  .gallery-card--portrait,
  .gallery-card--portrait:nth-of-type(3),
  .gallery-card--portrait:nth-of-type(4) {
    grid-column: auto;
    margin-top: 0;
  }

  .gallery-card--portrait:nth-of-type(4) {
    margin-top: 3rem;
  }

  .booking {
    min-height: 42rem;
    gap: 4rem;
  }

  .booking h2 {
    font-size: clamp(4.5rem, 22vw, 8rem);
  }

  .footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__logo {
    width: min(22rem, 90vw);
  }

  .footer__socials {
    justify-content: flex-start;
  }

  .footer__legal,
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-top: calc(var(--header-height) + 4rem);
  }

  .legal-hero h1 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }

  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (pointer: fine) {
  .cursor-dot {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-canvas,
  .cursor-dot {
    display: none;
  }

  .hero__eyebrow,
  .hero-line,
  .hero__intro,
  .hero__actions,
  .hero__socials,
  .hero__visual {
    opacity: 1 !important;
    transform: none !important;
  }

  .motion-ready .reveal,
  .motion-ready .image-reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
  }
}
