:root {
  --bg: #080806;
  --bg-deep: #050504;
  --surface: #0e0d0b;
  --surface-2: #15130f;
  --ink: #f0ece3;
  --soft: #aaa398;
  --dim: #6e685f;
  --gold: #c9a86a;
  --gold-bright: #e7d4a7;
  --ice: #a7bbc9;
  --red: #a82731;
  --line: rgba(240, 236, 227, 0.14);
  --line-strong: rgba(240, 236, 227, 0.28);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shell: min(1240px, calc(100vw - 80px));
  --header-h: 78px;
}

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

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--bg-deep);
  scrollbar-width: thin;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 15%, rgba(201, 168, 106, 0.05), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: transform 0.25s ease;
}

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

.grain {
  position: fixed;
  z-index: 300;
  inset: -70%;
  width: 240%;
  height: 240%;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  animation: grain-shift 7s steps(7) infinite;
}

.atmosphere {
  position: fixed;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
  mix-blend-mode: screen;
}

@keyframes grain-shift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  20% { transform: translate3d(-2%, 3%, 0); }
  40% { transform: translate3d(3%, -2%, 0); }
  60% { transform: translate3d(-3%, -1%, 0); }
  80% { transform: translate3d(2%, 2%, 0); }
}

.pointer-aura {
  position: fixed;
  z-index: 0;
  left: 0;
  top: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(201, 168, 106, 0.075), transparent 68%);
  transition: opacity 0.5s ease;
  will-change: transform;
}

.pointer-aura.is-visible {
  opacity: 1;
}

.cursor {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  border: 1px solid rgba(231, 212, 167, 0.62);
  border-radius: 50%;
  transition: width 0.28s var(--ease), height 0.28s var(--ease), border-color 0.28s ease, opacity 0.25s ease;
  mix-blend-mode: difference;
}

.cursor span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 3px;
  height: 3px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 58px;
  height: 58px;
  border-color: #fff;
}

.scroll-progress {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  box-shadow: 0 0 18px rgba(201, 168, 106, 0.4);
}

.intro {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-deep);
  transition: transform 1s var(--ease), visibility 1s;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface);
  transform-origin: left;
  transform: scaleX(0);
  animation: intro-wipe 1.35s 0.18s var(--ease) both;
}

.intro::after {
  background: var(--bg-deep);
  transform-origin: right;
  animation-delay: 0.34s;
}

@keyframes intro-wipe {
  0% { transform: scaleX(0); }
  55%, 100% { transform: scaleX(1); }
}

.intro img {
  position: relative;
  z-index: 2;
  width: 150px;
  height: auto;
  opacity: 0;
  animation: intro-logo 0.9s 0.45s var(--ease) forwards;
}

.intro__copy {
  position: absolute;
  z-index: 2;
  top: calc(50% + 56px);
  font-size: 9px;
  letter-spacing: 0.64em;
  color: var(--gold);
  opacity: 0;
  animation: intro-logo 0.9s 0.62s var(--ease) forwards;
}

.intro__line {
  position: absolute;
  z-index: 2;
  left: 50%;
  width: 1px;
  height: 16vh;
  background: linear-gradient(transparent, var(--gold));
  opacity: 0;
  transform: scaleY(0);
  animation: intro-line 0.8s 0.5s var(--ease) forwards;
}

.intro__line--top {
  top: 10vh;
  transform-origin: bottom;
}

.intro__line--bottom {
  bottom: 10vh;
  transform-origin: top;
  background: linear-gradient(var(--gold), transparent);
}

@keyframes intro-logo {
  from { opacity: 0; transform: translateY(10px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

@keyframes intro-line {
  to { opacity: 0.7; transform: scaleY(1); }
}

.intro.is-finished {
  transform: translateY(-102%);
  visibility: hidden;
}

.site-header {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  padding-right: max(clamp(22px, 4vw, 64px), env(safe-area-inset-right));
  padding-left: max(clamp(22px, 4vw, 64px), env(safe-area-inset-left));
  border-bottom: 1px solid transparent;
  transition: height 0.45s var(--ease), background 0.45s ease, border-color 0.45s ease;
}

.site-header.is-scrolled {
  height: 62px;
  border-color: var(--line);
  background: rgba(8, 8, 6, 0.82);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: 70px;
  height: auto;
}

.brand span {
  margin-top: 1px;
  font-size: 8px;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--soft);
  font-size: 10px;
  letter-spacing: 0.27em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  transition: transform 0.4s var(--ease);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 5;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 8px;
  width: 28px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 26px; }

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 350;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 110px 28px 48px;
  visibility: hidden;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(201, 168, 106, 0.04) 1px, transparent 1px) 0 0 / 25vw 100%,
    rgba(8, 8, 6, 0.985);
  transition: opacity 0.45s ease, visibility 0.45s;
}

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

.mobile-menu__count {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.mobile-menu nav {
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 15px 0 13px;
  transform: translateY(18px);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(30px, 10vw, 48px);
  line-height: 1;
  transition: color 0.3s ease, opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.mobile-menu a span {
  min-width: 22px;
  color: var(--gold);
  font-family: "Jost", sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.mobile-menu.is-open a {
  transform: none;
  opacity: 1;
}

.mobile-menu.is-open a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 0.10s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 0.20s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: 0.25s; }

.mobile-menu a:hover { color: var(--gold-bright); }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-deep);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -35%;
  bottom: -35%;
  left: -22%;
  width: 15%;
  pointer-events: none;
  opacity: 0;
  transform: rotate(11deg);
  background: linear-gradient(90deg, transparent, rgba(231, 212, 167, 0.13), rgba(255, 255, 255, 0.22), transparent);
  filter: blur(10px);
  animation: hero-light-scan 9s 2.7s var(--ease) infinite;
}

@keyframes hero-light-scan {
  0%, 58% { left: -22%; opacity: 0; }
  63% { opacity: 0.55; }
  82% { left: 112%; opacity: 0.2; }
  100% { left: 112%; opacity: 0; }
}

.hero__backdrop {
  position: absolute;
  z-index: -4;
  inset: -4%;
  --hero-x: 0px;
  --hero-y: 0px;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.06);
  background: url("../../images/eye.jpg") center 31% / cover no-repeat;
  filter: saturate(0.72) contrast(1.08) brightness(0.72);
  will-change: transform;
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  from { transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.06); }
  to { transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.1); }
}

.hero__veil {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.94) 0%, rgba(5, 5, 4, 0.7) 41%, rgba(5, 5, 4, 0.28) 72%, rgba(5, 5, 4, 0.56) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 34%, rgba(5, 5, 4, 0.16) 100%);
}

.hero__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(240, 236, 227, 0.08) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(90deg, rgba(240, 236, 227, 0.055) 1px, transparent 1px) 0 0 / 25vw 100%;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 88%, transparent);
}

.hero__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(240, 236, 227, 0.055) 1px, transparent 1px) 0 0 / 100% 25vh;
}

.hero__serial {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(18px, 2.5vw, 36px);
  transform: translateY(-50%) rotate(90deg);
  color: rgba(240, 236, 227, 0.35);
  font-size: 8px;
  letter-spacing: 0.5em;
  white-space: nowrap;
}

.hero__copy {
  position: absolute;
  z-index: 5;
  left: clamp(28px, 6vw, 92px);
  bottom: clamp(112px, 14vh, 150px);
  width: min(56vw, 760px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
}

.display {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(64px, 7.6vw, 122px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.84;
}

.display span {
  display: block;
}

.display i {
  color: var(--gold-bright);
  background: linear-gradient(105deg, var(--gold) 0%, #fff4d3 36%, var(--gold-bright) 52%, #9e7941 76%, var(--gold-bright) 100%) 0 0 / 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 450;
  animation: gold-flow 7s ease-in-out infinite;
}

@keyframes gold-flow {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0 50%; }
}

.hero__text {
  max-width: 54ch;
  margin-top: 34px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  transition: color 0.38s var(--ease), background 0.38s var(--ease), border-color 0.38s var(--ease), transform 0.38s var(--ease);
}

.button--solid {
  background: var(--ink);
  color: var(--bg-deep);
}

.button--solid:hover {
  border-color: var(--gold);
  background: var(--gold-bright);
}

.button--ghost,
.button--line {
  border-color: var(--line-strong);
  background: rgba(8, 8, 6, 0.28);
  color: var(--ink);
  backdrop-filter: blur(6px);
}

.button--ghost:hover,
.button--line:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.hero__platforms {
  position: absolute;
  z-index: 5;
  left: clamp(28px, 6vw, 92px);
  bottom: 42px;
  display: flex;
  gap: 24px;
}

.hero__platforms a {
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.hero__platforms a:hover { color: var(--gold-bright); }

.hero-deck {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(64px, 6vw, 100px);
  width: min(42vw, 610px);
  height: min(60vh, 610px);
  transform: translateY(-48%);
}

.hero-card {
  position: absolute;
  display: block;
  will-change: transform;
  --card-x: 0px;
  --card-y: 0px;
}

.hero-card figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(240, 236, 227, 0.27);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card figure::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -60% -85%;
  pointer-events: none;
  transform: translateX(-42%) rotate(18deg);
  background: linear-gradient(90deg, transparent 43%, rgba(255, 244, 211, 0.16) 50%, transparent 57%);
  transition: transform 1.1s var(--ease);
}

.hero-card:hover figure::before {
  transform: translateX(42%) rotate(18deg);
}

.hero-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 5, 4, 0.46));
  transition: border-color 0.4s ease, background 0.4s ease;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05) brightness(0.82);
  transition: transform 0.85s var(--ease), filter 0.6s ease;
}

.hero-card:hover img {
  transform: scale(1.055);
  filter: saturate(0.92) contrast(1.03) brightness(0.94);
}

.hero-card:hover figure::after { border-color: rgba(201, 168, 106, 0.5); }

.hero-card strong {
  display: block;
  margin-top: 9px;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(16px, 1.6vw, 23px);
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

.hero-card__number {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 12px;
  color: rgba(240, 236, 227, 0.72);
  font-size: 8px;
  letter-spacing: 0.24em;
}

.hero-card--eens {
  z-index: 3;
  top: 9%;
  left: 31%;
  width: 43%;
  height: 72%;
  transform: translate3d(var(--card-x), var(--card-y), 0) rotate(1.4deg);
}

.hero-card--lara {
  z-index: 2;
  top: 24%;
  left: 0;
  width: 31%;
  height: 53%;
  transform: translate3d(var(--card-x), var(--card-y), 0) rotate(-4.5deg);
}

.hero-card--nado {
  z-index: 2;
  top: 23%;
  right: 0;
  width: 29%;
  height: 55%;
  transform: translate3d(var(--card-x), var(--card-y), 0) rotate(4deg);
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  right: clamp(24px, 4vw, 62px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(240, 236, 227, 0.52);
  font-size: 8px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 60px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: linear-gradient(transparent, var(--gold));
  animation: cue-run 2.1s ease-in-out infinite;
}

@keyframes cue-run { to { transform: translateY(200%); } }

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 17px 0 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  color: var(--soft);
  animation: marquee-run 25s linear infinite;
}

.marquee__track span {
  font-size: 9px;
  letter-spacing: 0.5em;
}

.marquee__track i {
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background: var(--gold);
}

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

.section {
  position: relative;
  padding: clamp(100px, 15vh, 180px) 0;
}

.section--ink { background: var(--bg-deep); }

.section-shell {
  position: relative;
  width: var(--shell);
  margin: 0 auto;
}

.section-shell--wide { width: min(1420px, calc(100vw - 48px)); }

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(44px, 7vh, 74px);
  color: var(--dim);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.section-index::after {
  content: "";
  width: min(18vw, 180px);
  height: 1px;
  background: var(--line);
}

.section-index span { color: var(--gold); }

.display--section {
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: 0.92;
}

.body-copy {
  max-width: 48ch;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.9;
}

.manifest__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: end;
}

.manifest__copy {
  padding-bottom: 8px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.9;
}

.manifest__copy p + p {
  margin-top: 22px;
  color: var(--ink);
  font-family: "Bodoni Moda", serif;
  font-size: 20px;
  font-style: italic;
}

.cinema-frame {
  position: relative;
  overflow: hidden;
  height: min(72vw, 760px);
  margin-top: clamp(58px, 10vh, 105px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.cinema-frame::before,
.cinema-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 10%;
  pointer-events: none;
  background: linear-gradient(var(--bg-deep), transparent);
}

.cinema-frame::after {
  top: auto;
  bottom: 0;
  background: linear-gradient(transparent, rgba(5, 5, 4, 0.82));
}

.cinema-frame img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.82) contrast(1.03) brightness(0.84);
  transform: translateY(-6%);
  transition: filter 1s ease;
  will-change: transform;
}

.cinema-frame:hover img { filter: saturate(0.95) contrast(1.02) brightness(0.94); }

.cinema-frame figcaption {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(240, 236, 227, 0.68);
  font-size: 8px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.sound__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: center;
}

.sound__copy .body-copy { margin-top: 34px; }

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.platform-row a {
  padding: 12px 17px;
  border: 1px solid var(--line);
  color: var(--soft);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.platform-row a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.05);
  color: var(--gold-bright);
}

.release-card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.release-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% -10% -9% 12%;
  border: 1px solid rgba(201, 168, 106, 0.19);
}

.release-card__visual {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.release-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.72) contrast(1.06) brightness(0.74);
  transition: transform 1s var(--ease), filter 0.7s ease;
}

.release-card:hover .release-card__visual > img {
  transform: scale(1.045);
  filter: saturate(0.88) contrast(1.04) brightness(0.84);
}

.release-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 4, 0.92));
}

.release-card__type {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  color: var(--soft);
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.release-card__meta {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.release-card__meta small {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.38em;
}

.release-card__meta strong {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.equalizer {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 29px;
  display: flex;
  height: 28px;
  align-items: flex-end;
  gap: 3px;
}

.equalizer i {
  width: 2px;
  height: 50%;
  transform-origin: bottom;
  background: var(--gold);
  animation: equalize 1.1s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2) { animation-delay: -0.7s; }
.equalizer i:nth-child(3) { animation-delay: -0.2s; }
.equalizer i:nth-child(4) { animation-delay: -0.9s; }
.equalizer i:nth-child(5) { animation-delay: -0.4s; }
.equalizer i:nth-child(6) { animation-delay: -0.65s; }
.equalizer i:nth-child(7) { animation-delay: -0.1s; }
.equalizer i:nth-child(8) { animation-delay: -0.55s; }

@keyframes equalize {
  0% { transform: scaleY(0.24); opacity: 0.45; }
  100% { transform: scaleY(1); opacity: 1; }
}

.spotify-gate {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: center;
  min-height: 118px;
  padding: 22px;
}

.spotify-gate p {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.6;
}

.spotify-gate > a {
  grid-column: 1;
  color: var(--dim);
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spotify-gate .button {
  grid-column: 2;
  grid-row: 1 / 3;
}

.spotify-gate iframe {
  grid-column: 1 / -1;
  width: 100%;
  border: 0;
  border-radius: 10px;
}

.artists__head,
.visuals__head,
.merch__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.artists__head .body-copy,
.visuals__head .body-copy,
.merch__head .body-copy {
  margin-bottom: 8px;
}

.artist-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(60px, 10vh, 100px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.artist-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  cursor: pointer;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-align: left;
  text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease;
}

.artist-tab:last-child { border-right: 0; }

.artist-tab span {
  color: inherit;
  font-size: 8px;
}

.artist-tab:hover { color: var(--ink); }

.artist-tab.is-active {
  background: rgba(201, 168, 106, 0.055);
  color: var(--gold-bright);
}

.artist-stage {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(240, 236, 227, 0.045) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--bg-deep);
}

.artist-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -15% -42% 35%;
  height: 70%;
  border-radius: 50%;
  opacity: 0.15;
  background: var(--gold);
  filter: blur(160px);
  transition: background 0.7s ease;
}

.artist-stage[data-active="lara"]::after { background: var(--ice); }
.artist-stage[data-active="nado"]::after { background: var(--red); }

.artist-panel {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}

.artist-panel.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.artist-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 96px);
  transform: translateX(-22px);
  opacity: 0;
  transition: opacity 0.65s 0.15s var(--ease), transform 0.65s 0.15s var(--ease);
}

.artist-panel.is-active .artist-panel__content {
  transform: none;
  opacity: 1;
}

.artist-role {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

[data-artist-panel="lara"] .artist-role { color: var(--ice); }
[data-artist-panel="nado"] .artist-role { color: #d85760; }

.artist-panel__content h3 {
  margin-bottom: 28px;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(68px, 8vw, 120px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.85;
}

.artist-panel__content > p:not(.artist-role) {
  max-width: 42ch;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.9;
}

.artist-panel__content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  list-style: none;
}

.artist-panel__content li {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--dim);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.artist-panel__image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.95s var(--ease);
}

.artist-panel.is-active .artist-panel__image { clip-path: inset(0); }

.artist-panel__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 4, 0.62), transparent 34%), linear-gradient(0deg, rgba(5, 5, 4, 0.55), transparent 44%);
}

.artist-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(0.77) contrast(1.06) brightness(0.78);
  transform: scale(1.08);
  transition: transform 1.3s var(--ease), filter 0.7s ease;
}

.artist-panel.is-active .artist-panel__image img { transform: scale(1); }

.artist-panel__image:hover img { filter: saturate(0.92) contrast(1.04) brightness(0.9); }

.artist-panel__image figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  color: rgba(240, 236, 227, 0.65);
  font-size: 8px;
  letter-spacing: 0.4em;
}

.visuals__head { width: min(1240px, calc(100vw - 80px)); margin-inline: auto; }

.visual-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 135px;
  gap: 14px;
  margin-top: clamp(70px, 11vh, 115px);
}

.visual-card {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: left;
}

.visual-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid transparent;
  background: radial-gradient(circle at var(--fx-x, 50%) var(--fx-y, 50%), rgba(255, 239, 198, 0.17), transparent 34%);
  opacity: 0;
  transition: border-color 0.4s ease;
}

.visual-card::after {
  content: "+";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.6);
  border: 1px solid rgba(240, 236, 227, 0.6);
  border-radius: 50%;
  opacity: 0;
  color: var(--ink);
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 200;
  backdrop-filter: blur(8px);
  transition: opacity 0.35s ease, transform 0.55s var(--ease);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05) brightness(0.78);
  transition: transform 1s var(--ease), filter 0.7s ease;
}

.visual-card span {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 236, 227, 0.76);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.visual-card span small { color: var(--gold); }

.visual-card:hover::before { border-color: rgba(201, 168, 106, 0.62); opacity: 1; }
.visual-card:hover::after { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.visual-card:hover img { transform: scale(1.055); filter: saturate(0.92) contrast(1.03) brightness(0.92); }

.visual-card--a { grid-column: 1 / 5; grid-row: 1 / 6; }
.visual-card--b { grid-column: 5 / 13; grid-row: 1 / 4; }
.visual-card--c { grid-column: 5 / 9; grid-row: 4 / 8; }
.visual-card--d { grid-column: 9 / 13; grid-row: 4 / 8; }
.visual-card--e { grid-column: 1 / 7; grid-row: 8 / 11; }
.visual-card--f { grid-column: 7 / 13; grid-row: 8 / 11; }

.circle {
  display: grid;
  min-height: 780px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.circle__backdrop {
  position: absolute;
  z-index: -3;
  inset: -8%;
  background: url("../../images/circle-table.jpg") center 34% / cover no-repeat;
  filter: saturate(0.62) brightness(0.38) contrast(1.08);
  transform: scale(1.07);
  transition: transform 1.8s var(--ease), filter 1.2s ease;
}

.circle:hover .circle__backdrop {
  transform: scale(1.03);
  filter: saturate(0.75) brightness(0.48) contrast(1.06);
}

.circle::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at center, rgba(8, 8, 6, 0.2), rgba(8, 8, 6, 0.9) 78%), linear-gradient(var(--bg-deep), transparent 18%, transparent 82%, var(--bg));
}

.circle__spotlight {
  position: absolute;
  z-index: -1;
  top: -50%;
  left: 50%;
  width: min(84vw, 920px);
  height: 115%;
  transform: translateX(-50%);
  opacity: 0.1;
  background: conic-gradient(from 160deg at 50% 0%, transparent 0 42%, var(--gold-bright) 47%, transparent 52% 100%);
  filter: blur(24px);
  animation: spotlight 8s ease-in-out infinite alternate;
}

@keyframes spotlight {
  from { transform: translateX(-53%) rotate(-2deg); opacity: 0.07; }
  to { transform: translateX(-47%) rotate(2deg); opacity: 0.14; }
}

.circle__content {
  width: min(700px, calc(100vw - 48px));
}

.circle__content .eyebrow { justify-content: center; }
.circle__content .body-copy { margin: 30px auto 34px; }

.merch__head { margin-bottom: clamp(58px, 9vh, 92px); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transform-style: preserve-3d;
  box-shadow: 0 20px 60px transparent;
  transition: border-color 0.45s ease, box-shadow 0.45s ease;
}

.product-card:hover {
  border-color: rgba(201, 168, 106, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.product-card figure {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #11100e;
}

.product-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(5, 5, 4, 0.7));
}

.product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.05) brightness(0.78);
  transition: transform 0.9s var(--ease), filter 0.6s ease;
}

.product-card:hover figure img {
  transform: scale(1.045);
  filter: saturate(0.88) contrast(1.03) brightness(0.9);
}

.product-card--placeholder figure {
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #171510, #0d0c0a 68%);
}

.product-card--placeholder figure img {
  width: 46%;
  height: auto;
  object-fit: contain;
  opacity: 0.24;
  filter: none;
}

.product-card > div {
  padding: 24px 22px 21px;
}

.product-card > div span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.32em;
}

.product-card h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 25px;
  font-weight: 500;
}

.product-card small {
  display: block;
  margin-top: 5px;
  color: var(--dim);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.product-card > button {
  width: 100%;
  padding: 15px 22px;
  cursor: pointer;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-align: left;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease;
}

.product-card > button:hover {
  background: rgba(201, 168, 106, 0.05);
  color: var(--gold-bright);
}

.site-footer {
  display: grid;
  justify-items: center;
  padding: 86px 36px 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  text-align: center;
}

.site-footer__logo img {
  width: 118px;
  height: auto;
  opacity: 0.92;
}

.site-footer > p {
  margin-top: 14px;
  color: var(--dim);
  font-family: "Bodoni Moda", serif;
  font-size: 17px;
  font-style: italic;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 38px;
}

.site-footer__links a {
  color: var(--soft);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-footer__links a:hover { color: var(--gold-bright); }

.site-footer__legal {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 54px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #555047;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.site-footer__legal a { text-decoration: underline; text-underline-offset: 3px; }
.site-footer__legal a:hover { color: var(--soft); }

.modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.modal::backdrop {
  background: rgba(5, 5, 4, 0.86);
  backdrop-filter: blur(14px);
}

.modal[open] {
  display: grid;
  place-items: center;
  animation: modal-in 0.45s var(--ease) both;
}

@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal__surface {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.98);
  animation: modal-surface-in 0.55s 0.04s var(--ease) forwards;
}

@keyframes modal-surface-in {
  to { transform: none; }
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
  background: transparent;
  color: var(--dim);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.modal__close:hover { color: var(--ink); }

.signup-modal h2 {
  margin-bottom: 12px;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(38px, 7vw, 56px);
  font-weight: 500;
  line-height: 1;
}

.signup-modal .modal__surface > p:not(.eyebrow) {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.75;
}

.signup-modal form {
  display: grid;
  margin-top: 28px;
}

.signup-modal form > label:first-of-type {
  margin-bottom: 7px;
  color: var(--dim);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.signup-modal input[type="email"] {
  width: 100%;
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: var(--bg-deep);
  color: var(--ink);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.signup-modal input[type="email"]:focus { border-color: var(--gold); }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 13px 0 20px;
  color: var(--dim);
  font-size: 10px;
  line-height: 1.55;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.consent a { color: var(--soft); text-decoration: underline; }

.lightbox {
  padding: 28px;
}

.lightbox__surface {
  position: relative;
  display: grid;
  width: min(1080px, 100%);
  height: min(86vh, 860px);
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--bg-deep);
  box-shadow: var(--shadow);
}

.lightbox__surface img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox__surface p {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.lightbox .modal__close {
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 4, 0.65);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.no-js .reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  clip-path: inset(0 0 8% 0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), clip-path 0.9s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
}

.reveal--delay-1 { transition-delay: 0.1s !important; }
.reveal--delay-2 { transition-delay: 0.2s !important; }
.reveal--delay-3 { transition-delay: 0.3s !important; }

.magnetic,
.tilt { will-change: transform; }

.spark {
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 3px;
  height: 3px;
  pointer-events: none;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(231, 212, 167, 0.9);
  animation: spark-out 680ms var(--ease) forwards;
}

@keyframes spark-out {
  0% { opacity: 1; transform: translate3d(var(--spark-x), var(--spark-y), 0) scale(1); }
  100% { opacity: 0; transform: translate3d(calc(var(--spark-x) + var(--spark-dx)), calc(var(--spark-y) + var(--spark-dy)), 0) scale(0); }
}

@media (max-width: 1120px) {
  :root { --shell: min(1240px, calc(100vw - 54px)); }
  .hero__copy { width: min(58vw, 650px); }
  .hero-deck { right: 32px; width: 43vw; }
  .display { font-size: clamp(62px, 8.5vw, 100px); }
  .sound__grid { grid-template-columns: 1fr 430px; gap: 60px; }
  .product-card figure { height: 390px; }
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
    --shell: calc(100vw - 40px);
  }

  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .site-header {
    padding-right: max(20px, env(safe-area-inset-right));
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .hero {
    min-height: 760px;
    height: max(100svh, 760px);
  }

  .hero__backdrop {
    background-position: 46% 30%;
    filter: saturate(0.64) contrast(1.05) brightness(0.58);
  }

  .hero__veil {
    background: linear-gradient(180deg, rgba(5, 5, 4, 0.38), rgba(5, 5, 4, 0.35) 32%, rgba(5, 5, 4, 0.96) 72%, var(--bg) 100%);
  }

  .hero__grid { opacity: 0.22; }
  .hero__serial { display: none; }

  .hero__copy {
    left: max(20px, env(safe-area-inset-left));
    right: max(20px, env(safe-area-inset-right));
    bottom: 114px;
    width: auto;
  }

  .display { font-size: clamp(54px, 13.5vw, 92px); }
  .hero__text { max-width: 48ch; margin-top: 24px; font-size: 14px; }
  .hero__actions { margin-top: 24px; }

  .hero-deck {
    top: 105px;
    right: 18px;
    width: 55vw;
    height: 380px;
    transform: none;
    opacity: 0.85;
  }

  .hero-card--eens { top: 0; left: 28%; width: 50%; height: 72%; }
  .hero-card--lara { top: 9%; left: 0; width: 34%; height: 55%; }
  .hero-card--nado { top: 8%; right: 0; width: 32%; height: 57%; }
  .hero-card strong { font-size: 14px; }

  .hero__platforms { left: 20px; bottom: 34px; gap: 16px; }
  .scroll-cue { right: 16px; bottom: 24px; }

  .manifest__head,
  .sound__grid {
    grid-template-columns: 1fr;
  }

  .manifest__head { gap: 34px; }
  .manifest__copy { max-width: 58ch; }
  .cinema-frame { height: 78vw; min-height: 440px; }

  .sound__grid { gap: 58px; }
  .release-card { width: min(560px, 100%); margin-inline: auto; }

  .artists__head,
  .visuals__head,
  .merch__head {
    display: grid;
    gap: 28px;
  }

  .artist-stage { min-height: auto; }
  .artist-panel { grid-template-columns: 1fr; }
  .artist-panel__content { order: 2; padding: 48px 30px 56px; }
  .artist-panel__image { min-height: 520px; }
  .artist-panel__image::after { background: linear-gradient(0deg, var(--bg-deep), transparent 42%); }

  .visual-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
  .visual-card { grid-column: auto !important; grid-row: auto !important; }
  .visual-card--a,
  .visual-card--d { grid-row: span 2 !important; }

  .product-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .product-card figure { height: min(110vw, 620px); }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 32px); }

  .intro img { width: 120px; }
  .site-header { height: 64px; }
  .brand img { width: 62px; }

  .hero {
    min-height: 720px;
    height: max(100svh, 720px);
  }

  .hero__copy { bottom: 100px; }
  .hero .eyebrow { margin-bottom: 16px; }
  .display { font-size: clamp(48px, 14.7vw, 76px); line-height: 0.88; }
  .hero__text { max-width: 38ch; margin-top: 20px; line-height: 1.68; }
  .hero__actions { gap: 8px; }
  .button { min-height: 44px; padding-inline: 18px; letter-spacing: 0.25em; }

  .hero-deck {
    top: 82px;
    right: -10px;
    width: 64vw;
    height: 330px;
    opacity: 0.72;
  }

  .hero__platforms { display: none; }
  .scroll-cue { bottom: 22px; }
  .scroll-cue span { display: none; }
  .marquee { padding-block: 13px 11px; }

  .section { padding: 92px 0; }
  .section-index { margin-bottom: 40px; }
  .display--section { font-size: clamp(48px, 14vw, 72px); }
  .body-copy { font-size: 14px; }

  .cinema-frame { min-height: 390px; height: 120vw; }
  .cinema-frame img { object-position: center; }
  .cinema-frame figcaption span:last-child { display: none; }

  .release-card::before { display: none; }
  .release-card__visual { height: 440px; }
  .spotify-gate { grid-template-columns: 1fr; }
  .spotify-gate .button { grid-column: 1; grid-row: auto; width: 100%; }
  .spotify-gate > a { grid-column: 1; }

  .artist-tabs { margin-top: 54px; }
  .artist-tab { justify-content: center; gap: 8px; padding: 15px 8px; letter-spacing: 0.2em; }
  .artist-tab span { display: none; }
  .artist-panel__image { min-height: 430px; }
  .artist-panel__content { padding: 38px 24px 46px; }
  .artist-panel__content h3 { font-size: 72px; }
  .artist-panel__content ul { gap: 6px; }

  .visuals__head { width: calc(100vw - 32px); }
  .visual-grid { grid-template-columns: 1fr; grid-auto-rows: 420px; gap: 10px; }
  .visual-card { grid-row: auto !important; }

  .circle { min-height: 680px; }
  .circle__spotlight { width: 150vw; }

  .site-footer { padding-inline: 20px; }
  .site-footer__legal { display: grid; }

  .modal { padding: 12px; }
  .modal__surface { padding: 42px 22px 24px; }
  .lightbox { padding: 8px; }
  .lightbox__surface { height: 92vh; }
}

@media (pointer: coarse), (hover: none) {
  .cursor,
  .pointer-aura { display: none; }

  .atmosphere { opacity: 0.42; }
}

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

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

  .intro { display: none; }
  .grain { animation: none; }
  .atmosphere { display: none; }
  .js .reveal { opacity: 1; transform: none; clip-path: inset(0); }
}
