:root {
  color-scheme: dark;
  --ink: #f4efe6;
  --ink-soft: #d9cec0;
  --muted: #a99d90;
  --line: rgba(244, 239, 230, 0.18);
  --line-strong: rgba(225, 196, 139, 0.36);
  --black: #040506;
  --deep: #07101a;
  --charcoal: #121211;
  --burgundy: #3b090d;
  --gold: #d7b574;
  --warm: #211613;
  --max-width: min(1180px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --scene-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  background:
    linear-gradient(180deg, #020407 0%, #090606 44%, #0b0b0b 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(215, 181, 116, 0.26);
}

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

a {
  text-decoration: none;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #070707;
  color: var(--ink);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  background:
    linear-gradient(180deg, rgba(2, 4, 7, 0.78), rgba(2, 4, 7, 0.2) 78%, transparent);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: var(--max-width);
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.site-mark,
.primary-nav a,
.locale-switch button,
.section-label,
.eyebrow,
.stage-index,
.scroll-cue {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-mark {
  justify-self: start;
  color: var(--ink);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(244, 239, 230, 0.72);
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="true"] {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.locale-switch {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: 4px;
  background: rgba(6, 7, 8, 0.44);
  overflow: hidden;
}

.locale-switch button {
  min-width: 43px;
  min-height: 34px;
  border: 0;
  border-right: 1px solid rgba(244, 239, 230, 0.12);
  background: transparent;
  color: rgba(244, 239, 230, 0.62);
  cursor: pointer;
}

.locale-switch button:last-child {
  border-right: 0;
}

.locale-switch button.is-active {
  background: rgba(215, 181, 116, 0.14);
  color: var(--ink);
}

main {
  position: relative;
  isolation: isolate;
}

[data-section] {
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: var(--max-width);
  margin: 0 auto;
}

html.has-scene-motion [data-section] .section-inner,
html.has-scene-motion .hero-content {
  opacity: 0.22;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 820ms ease,
    transform 980ms var(--scene-ease);
  will-change: opacity, transform;
}

html.has-scene-motion [data-section].is-entering .section-inner,
html.has-scene-motion .hero.is-entering .hero-content {
  opacity: 0.74;
  transform: translate3d(0, 16px, 0);
}

html.has-scene-motion [data-section].is-active .section-inner,
html.has-scene-motion .hero.is-active .hero-content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.has-scene-motion [data-section].is-leaving .section-inner,
html.has-scene-motion .hero.is-leaving .hero-content {
  opacity: 0.28;
  transform: translate3d(0, -26px, 0);
}

.section-label,
.eyebrow,
.stage-index {
  margin: 0 0 22px;
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px 0 clamp(84px, 13vh, 140px);
  overflow: hidden;
  background: var(--deep);
  isolation: isolate;
}

.hero-media-layer,
.music-section::before,
.music-section::after,
.hero::before,
.hero::after {
  pointer-events: none;
}

.hero-media-layer {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 106%;
  object-fit: cover;
  object-position: 52% 46%;
  transform: translate3d(0, 0, 0) scale(1.018);
  transform-origin: 54% 52%;
  transition:
    filter 1100ms ease,
    opacity 1100ms ease,
    transform 1300ms var(--scene-ease);
  will-change: transform;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 4, 7, 0.88) 0%, rgba(2, 4, 7, 0.58) 34%, rgba(2, 4, 7, 0.2) 62%, rgba(2, 4, 7, 0.68) 100%),
    linear-gradient(180deg, rgba(2, 4, 7, 0.28) 0%, transparent 44%, rgba(2, 4, 7, 0.66) 100%);
  transition: opacity 900ms ease;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  height: 42vh;
  content: "";
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 4, 5, 0.94) 66%, #21070a 100%);
  opacity: 0.72;
  transition: opacity 900ms ease;
}

.hero-content {
  width: var(--max-width);
  margin: 0 auto;
}

html.has-scene-motion .hero.is-leaving .hero-media {
  filter: brightness(0.56) saturate(0.88);
  opacity: 0.76;
  transform: translate3d(0, -20px, 0) scale(1.058);
}

html.has-scene-motion .hero.is-leaving::before {
  opacity: 1;
}

html.has-scene-motion .hero.is-leaving::after {
  opacity: 1;
}

.hero h1,
.music-section h2,
.section-heading h2,
.about-copy h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 10.8vw, 10.6rem);
  line-height: 0.88;
  text-wrap: balance;
}

.hero-line {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(244, 239, 230, 0.78);
  font-size: clamp(1rem, 1.9vw, 1.35rem);
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 239, 230, 0.72);
  transition:
    opacity 620ms ease,
    transform 760ms var(--scene-ease);
}

html.has-scene-motion .hero.is-leaving .scroll-cue {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.scroll-cue i {
  width: 34px;
  height: 1px;
  display: block;
  background: currentColor;
  transform-origin: left;
  animation: cue-line 2.8s ease-in-out infinite;
}

@keyframes cue-line {
  0%,
  100% {
    transform: scaleX(0.42);
    opacity: 0.48;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.music-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(92px, 12vh, 150px) 0 clamp(72px, 9vh, 120px);
  overflow: hidden;
  background: #190608;
  isolation: isolate;
}

.music-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.95) contrast(1.04);
  opacity: 0.84;
  transform: scale(1.045);
  transition:
    filter 1100ms ease,
    opacity 1100ms ease,
    transform 1300ms var(--scene-ease);
  will-change: transform, opacity;
}

.music-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 3, 5, 0.9) 0%, rgba(31, 5, 7, 0.72) 33%, rgba(31, 5, 7, 0.22) 62%, rgba(7, 4, 3, 0.56) 100%),
    linear-gradient(180deg, #0b0507 0%, rgba(11, 5, 7, 0.2) 22%, rgba(11, 5, 7, 0.2) 70%, #090807 100%);
  transition: opacity 900ms ease;
}

.music-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  height: 34vh;
  content: "";
  background: linear-gradient(180deg, transparent 0%, #0b0a09 66%, #0a0b0d 100%);
  opacity: 0.88;
  transition: opacity 900ms ease;
}

html.has-scene-motion .music-section.is-entering .music-media {
  filter: brightness(0.86) saturate(0.96) contrast(1.04);
  opacity: 0.92;
  transform: scale(1.025);
}

html.has-scene-motion .music-section.is-active .music-media {
  filter: brightness(1) saturate(0.98) contrast(1.04);
  opacity: 1;
  transform: scale(1);
}

html.has-scene-motion .music-section.is-leaving .music-media {
  filter: brightness(0.58) saturate(0.82) contrast(1.02);
  opacity: 0.68;
  transform: translate3d(0, -16px, 0) scale(1.035);
}

html.has-scene-motion .music-section.is-active::before {
  opacity: 0.84;
}

html.has-scene-motion .music-section.is-leaving::after {
  opacity: 1;
}

.music-content {
  max-width: 680px;
  margin-top: clamp(44px, 6vh, 84px);
  margin-left: max(24px, calc((100vw - 1180px) / 2));
}

.music-section h2 {
  max-width: 8ch;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
}

.section-lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(244, 239, 230, 0.82);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.music-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.music-actions {
  margin-top: 42px;
}

.music-actions a,
.contact-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: 4px;
  background: rgba(7, 7, 7, 0.28);
  color: rgba(244, 239, 230, 0.86);
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.music-actions a:hover,
.contact-links a:hover {
  border-color: var(--line-strong);
  background: rgba(215, 181, 116, 0.1);
  color: var(--ink);
  transform: translateY(-1px);
}

@media (min-width: 861px) and (max-width: 1180px) {
  .music-content {
    margin-top: clamp(72px, 8vh, 112px);
  }
}

.labs-section {
  position: relative;
  min-height: auto;
  padding: 0 0 clamp(88px, 12vh, 150px);
  overflow: hidden;
  background: #050607;
}

.labs-section::before,
.about-section::before,
.contact-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.labs-section::before {
  background:
    radial-gradient(ellipse at 50% 17%, rgba(8, 18, 28, 0.52), transparent 48%),
    radial-gradient(ellipse at 50% 72%, rgba(31, 20, 10, 0.32), transparent 52%);
  opacity: 0.72;
  transition: opacity 900ms ease;
}

html.has-scene-motion .labs-section.is-entering::before,
html.has-scene-motion .labs-section.is-active::before {
  opacity: 1;
}

.section-heading {
  position: relative;
  min-height: 70svh;
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  padding: clamp(78px, 12vh, 128px) 0 clamp(38px, 6vh, 68px);
  isolation: isolate;
}

.section-heading .section-label {
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: center;
}

.section-heading h2 {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.96;
  text-wrap: balance;
}

.labs-support {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 360px;
  margin: -18px 0 0;
  color: rgba(244, 239, 230, 0.58);
  font-size: clamp(0.98rem, 1.3vw, 1.2rem);
  line-height: 1.5;
}

.labs-bg-wordmark,
.labs-linework,
.labs-continue {
  position: absolute;
  pointer-events: none;
}

.labs-bg-wordmark {
  top: clamp(34px, 7vh, 80px);
  left: clamp(-118px, -8vw, -54px);
  z-index: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(7.2rem, 18vw, 17rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.8;
  opacity: 0.035;
  white-space: nowrap;
}

.labs-linework {
  top: 12%;
  right: clamp(-150px, -8vw, -70px);
  z-index: 1;
  width: min(64vw, 860px);
  height: auto;
  overflow: visible;
  opacity: 0.58;
}

.labs-linework path,
.labs-linework circle {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.labs-linework path {
  stroke: rgba(244, 239, 230, 0.11);
  stroke-width: 1;
}

.labs-linework .labs-orbit-slow path {
  stroke: rgba(215, 181, 116, 0.16);
  stroke-dasharray: 360 260;
}

.labs-linework circle {
  fill: rgba(215, 181, 116, 0.3);
  stroke: rgba(215, 181, 116, 0.18);
  stroke-width: 1;
}

.labs-orbit-slow {
  transform-box: fill-box;
  transform-origin: center;
  animation: labs-orbit 38s linear infinite;
}

.labs-continue {
  right: 38%;
  bottom: clamp(18px, 4vh, 42px);
  z-index: 2;
  width: 1px;
  height: clamp(38px, 7vh, 64px);
  background: linear-gradient(180deg, transparent, rgba(215, 181, 116, 0.32), transparent);
  opacity: 0.72;
}

.labs-continue::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(215, 181, 116, 0.34);
  border-bottom: 1px solid rgba(215, 181, 116, 0.34);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

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

.lab-stages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4.6vw, 62px);
  align-items: start;
  margin: clamp(4px, 1vh, 14px) 0 0;
}

.product-scene {
  position: relative;
  min-height: 0;
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
  align-content: start;
  padding: 0;
  isolation: isolate;
  transition:
    opacity 820ms ease,
    transform 820ms var(--scene-ease);
}

.product-scene::before,
.product-scene::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.product-scene::before {
  inset: -7% -8% auto;
  z-index: -2;
  height: 74%;
  opacity: 0.36;
  transition: opacity 900ms ease;
}

.product-scene::after {
  display: none;
}

.product-scene-hudara::before {
  background:
    radial-gradient(ellipse at 76% 46%, rgba(215, 181, 116, 0.14), transparent 28%),
    radial-gradient(ellipse at 58% 50%, rgba(8, 28, 47, 0.58), transparent 58%);
}

.product-scene-timerider::before {
  background:
    radial-gradient(ellipse at 24% 48%, rgba(180, 119, 52, 0.2), transparent 30%),
    radial-gradient(ellipse at 48% 52%, rgba(66, 42, 19, 0.42), transparent 56%);
}

html.has-scene-motion .product-scene {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  will-change: opacity, transform;
}

html.has-scene-motion .product-scene.is-entering,
html.has-scene-motion .product-scene.is-active,
html.has-scene-motion .product-scene.is-leaving {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 861px) {
  html.has-scene-motion .product-scene-timerider {
    transition-delay: 130ms;
  }
}

.product-copy {
  position: relative;
  z-index: 2;
  max-width: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 1px solid rgba(215, 181, 116, 0.22);
  padding-top: clamp(18px, 2vw, 24px);
  transition: border-color 520ms ease;
}

.product-copy .stage-index {
  margin: 0;
  color: rgba(215, 181, 116, 0.78);
}

.product-category {
  margin: 0;
  color: rgba(244, 239, 230, 0.58);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-copy h3 {
  max-width: 560px;
  margin: 0;
  color: rgba(244, 239, 230, 0.92);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2.8vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.product-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(244, 239, 230, 0.9);
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.product-action:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.product-action::after {
  margin-left: 10px;
  content: "->";
}

.product-art {
  position: relative;
  z-index: 1;
  order: -1;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  transform: none;
}

.product-art::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.18), transparent 18%, transparent 80%, rgba(5, 6, 7, 0.22)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.24), transparent 18%, transparent 82%, rgba(5, 6, 7, 0.24));
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  transform-origin: center;
  transition:
    filter 1100ms ease,
    opacity 1000ms ease,
    transform 620ms var(--scene-ease);
}

html.has-scene-motion .product-scene:not(.is-active) .product-art img {
  filter: brightness(1) saturate(1);
  opacity: 1;
  transform: scale(0.99);
}

html.has-scene-motion .product-scene.is-entering .product-art img,
html.has-scene-motion .product-scene.is-active .product-art img,
html.has-scene-motion .product-scene.is-leaving .product-art img {
  filter: brightness(1) saturate(1);
  opacity: 1;
  transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .product-scene:hover .product-art img {
    transform: scale(1.018);
  }

  .product-scene:hover .product-copy {
    border-color: rgba(215, 181, 116, 0.42);
  }

  .product-scene:hover .product-action {
    color: var(--gold);
  }
}

.about-section {
  position: relative;
  min-height: 96svh;
  display: grid;
  align-items: center;
  padding: clamp(76px, 9vh, 112px) 0;
  overflow: hidden;
  isolation: isolate;
  background: #080706;
}

.about-section::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 29%, rgba(0, 0, 0, 0.16) 53%, transparent 72%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.18) 0%, rgba(8, 7, 6, 0.12) 46%, rgba(8, 7, 6, 0.26) 100%);
  opacity: 1;
}

html.has-scene-motion .about-section .section-inner {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 820ms ease,
    transform 860ms var(--scene-ease);
}

html.has-scene-motion .about-section.is-entering .section-inner {
  opacity: 0.72;
  transform: translate3d(0, 10px, 0);
}

html.has-scene-motion .about-section.is-active .section-inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.has-scene-motion .about-section.is-leaving .section-inner {
  opacity: 0.32;
  transform: translate3d(0, -14px, 0);
}

.about-content {
  display: flex;
  align-items: center;
  min-height: calc(96svh - clamp(152px, 18vh, 224px));
}

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

.about-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 72% 50%;
}

.about-copy {
  position: relative;
  z-index: 2;
  width: min(38vw, 620px);
  max-width: 620px;
}

.about-copy h2 {
  max-width: 620px;
  color: var(--ink);
  font-size: clamp(2.5rem, 5.9vw, 5.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.about-text {
  max-width: 560px;
  margin-top: 42px;
}

.about-text p {
  margin: 0 0 22px;
  color: rgba(244, 239, 230, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.13rem, 1.9vw, 1.42rem);
  letter-spacing: 0;
  line-height: 1.62;
}

.about-text p:last-child {
  margin-bottom: 0;
  color: var(--ink);
}

.contact-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(90px, 14vh, 150px) 0 34px;
  background-color: #050505;
  background-image: url("../images/room.jpg");
  background-position: 54% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-section::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 32%, rgba(0, 0, 0, 0.24) 55%, rgba(0, 0, 0, 0.04) 78%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.14) 52%, rgba(5, 5, 5, 0.42) 100%);
  opacity: 1;
}

.contact-inner {
  border-top: 1px solid rgba(244, 239, 230, 0.16);
  padding-top: clamp(42px, 7vw, 86px);
}

.contact-section h2 {
  max-width: 780px;
  font-size: clamp(2.85rem, 6.25vw, 6.25rem);
  line-height: 0.96;
  text-wrap: balance;
}

.contact-links {
  max-width: 780px;
  margin-top: 56px;
  gap: 12px;
}

.contact-links a {
  min-height: 48px;
  border-color: rgba(215, 181, 116, 0.32);
  background: rgba(215, 181, 116, 0.07);
  padding: 0 22px;
  font-size: 0.8rem;
}

.site-footer {
  margin-top: clamp(80px, 12vw, 150px);
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  padding-top: 22px;
  color: rgba(244, 239, 230, 0.5);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  :root {
    --max-width: min(100vw - 36px, 720px);
  }

  html {
    scroll-snap-type: y proximity;
  }

  [data-section] {
    scroll-snap-stop: normal;
  }

  html.has-scene-motion [data-section] .section-inner,
  html.has-scene-motion .hero-content {
    transform: translate3d(0, 18px, 0);
  }

  html.has-scene-motion [data-section].is-entering .section-inner,
  html.has-scene-motion .hero.is-entering .hero-content {
    transform: translate3d(0, 8px, 0);
  }

  html.has-scene-motion [data-section].is-leaving .section-inner,
  html.has-scene-motion .hero.is-leaving .hero-content {
    transform: translate3d(0, -10px, 0);
  }

  .nav-shell {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .site-mark {
    display: none;
  }

  .primary-nav {
    justify-content: start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .locale-switch {
    justify-self: end;
  }

  .hero {
    min-height: 100svh;
    padding-top: 108px;
  }

  .hero-media {
    object-position: 57% 50%;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 4, 7, 0.82), rgba(2, 4, 7, 0.32)),
      linear-gradient(180deg, rgba(2, 4, 7, 0.34), rgba(2, 4, 7, 0.2) 46%, rgba(2, 4, 7, 0.84));
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(3.35rem, 16vw, 6.4rem);
  }

  .scroll-cue {
    right: 18px;
    bottom: 20px;
  }

  .music-section {
    min-height: 100svh;
    align-items: end;
    padding-bottom: 86px;
  }

  .music-media {
    object-position: 66% 50%;
  }

  .music-content {
    margin-top: 0;
    margin: 0 auto;
  }

  .music-section h2 {
    font-size: clamp(3.2rem, 15vw, 6.8rem);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    grid-column: 1;
    font-size: clamp(2.8rem, 12vw, 5.5rem);
  }

  .labs-support {
    grid-column: 1;
    max-width: 340px;
    margin-top: -10px;
  }

  .labs-bg-wordmark {
    top: 14%;
    left: -20vw;
    font-size: clamp(5.5rem, 22vw, 10rem);
    opacity: 0.032;
  }

  .labs-linework {
    top: 20%;
    right: -28vw;
    width: min(86vw, 560px);
    opacity: 0.34;
  }

  .labs-continue {
    right: 22%;
  }

  .labs-section {
    min-height: auto;
    padding: 0;
  }

  .section-heading {
    min-height: 66svh;
    padding: clamp(72px, 10vh, 100px) 0 clamp(34px, 5vh, 56px);
  }

  .product-scene {
    min-height: 0;
    padding: 0;
  }

  .product-copy {
    grid-template-columns: 1fr;
  }

  .product-copy h3 {
    max-width: 620px;
    font-size: clamp(2rem, 8.4vw, 4rem);
  }

  .product-action {
    margin-top: 6px;
  }

  .about-section {
    min-height: auto;
    display: block;
    padding: 0 0 clamp(64px, 12vh, 96px);
  }

  .about-section::before {
    inset: 0 0 auto;
    height: clamp(420px, 66svh, 640px);
    background: linear-gradient(180deg, transparent 45%, rgba(8, 7, 6, 0.88) 100%);
  }

  .about-content {
    min-height: auto;
    display: block;
    padding-top: clamp(34px, 7vh, 58px);
  }

  .about-visual {
    position: relative;
    height: clamp(420px, 66svh, 640px);
  }

  .about-visual img {
    object-position: 78% 50%;
  }

  .about-copy {
    width: 100%;
    max-width: 620px;
  }

  .contact-section {
    background-position: 56% center;
    padding-top: clamp(96px, 18vh, 138px);
  }

  .contact-section::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 58%, rgba(0, 0, 0, 0.18) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.24) 46%, rgba(5, 5, 5, 0.68) 100%);
  }
}

@media (max-width: 560px) {
  :root {
    --max-width: min(100vw - 28px, 420px);
  }

  .site-header {
    background: rgba(3, 4, 6, 0.86);
  }

  .nav-shell {
    min-height: 58px;
    gap: 10px;
  }

  .primary-nav {
    gap: 15px;
  }

  .primary-nav a,
  .locale-switch button,
  .section-label,
  .eyebrow,
  .stage-index,
  .scroll-cue,
  .site-mark {
    font-size: 0.65rem;
  }

  .locale-switch button {
    min-width: 36px;
    min-height: 32px;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 74px;
  }

  .hero-media {
    object-position: 61% 50%;
  }

  .hero-line {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .music-actions a,
  .contact-links a {
    min-height: 42px;
    flex: 1 1 calc(50% - 10px);
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .music-section::before {
    background:
      linear-gradient(180deg, rgba(18, 4, 6, 0.7), rgba(18, 4, 6, 0.28) 44%, rgba(8, 4, 4, 0.9)),
      linear-gradient(90deg, rgba(18, 4, 6, 0.72), rgba(18, 4, 6, 0.18));
  }

  .labs-bg-wordmark {
    top: 18%;
    left: -34vw;
    opacity: 0.028;
  }

  .labs-linework {
    display: none;
  }

  .labs-support {
    max-width: 300px;
    font-size: 0.98rem;
  }

  .section-heading {
    min-height: 64svh;
  }

  .lab-stages {
    grid-template-columns: 1fr;
    gap: clamp(46px, 10vh, 72px);
  }

  .product-scene {
    gap: 20px;
    min-height: 0;
  }

  .product-art {
    width: 100%;
    margin: 0;
    transform: none;
  }

  .product-copy h3 {
    font-size: clamp(1.95rem, 10vw, 3.2rem);
  }

  .product-category {
    font-size: 0.68rem;
  }

  .product-action {
    min-height: 42px;
    padding: 0;
    font-size: 0.68rem;
  }

  .about-copy h2 {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
  }

  .about-text p {
    font-size: 1.08rem;
  }

  .contact-section h2 {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
  }

  .contact-links {
    margin-top: 38px;
  }

  .contact-links a {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.7rem;
  }
}

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

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

  html.has-scene-motion [data-section] .section-inner,
  html.has-scene-motion .hero-content,
  html.has-scene-motion .product-scene {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  .hero-media,
  .music-media,
  .product-art img {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }

  .labs-orbit-slow {
    animation: none !important;
  }

  .product-scene,
  .product-art img {
    transition-delay: 0ms !important;
  }
}
