@font-face {
  font-family: "MangoGrotesque";
  src: url("../fonts/MangoGrotesque-Bold.woff2") format("woff2");
  font-display: block;
}

@font-face {
  font-family: "MangoGrotesqueMedium";
  src: url("../fonts/MangoGrotesque-Medium.woff2") format("woff2");
  font-display: block;
}

@font-face {
  font-family: "MangoGrotesqueSemiBold";
  src: url("../fonts/MangoGrotesque-SemiBold.woff2") format("woff2");
  font-display: block;
}

:root {
  color-scheme: dark;
  --black: #202020;
  --graphite: #303030;
  --surface: #3a3a3a;
  --soft: #4a4a4a;
  --silver: #b8b8b8;
  --mist: #e8e1d4;
  --white: #ffffff;
  --gold: #d5a748;
  --gold-dark: #a77f32;
  --purple: #9b72aa;
  --plum: #3e2e45;
  --font-display: "MangoGrotesque", "Arial Narrow", Impact, sans-serif;
  --font-display-service: "MangoGrotesqueSemiBold", "Arial Narrow", Impact, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --rail: 0px;
  --gutter: clamp(18px, 4vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(155, 114, 170, 0.18), transparent 30vw),
    linear-gradient(120deg, #202020 10%, #303030 62%, #3e2e45 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 78%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--gold);
  color: #202020;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 10px var(--gutter);
  background: transparent;
  pointer-events: none;
  transition: background 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(to bottom, rgba(32,32,32,0.55), rgba(32,32,32,0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.site-header.scrolled {
  background: rgba(8,8,9,0.8);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: none;
}

.site-header.scrolled::after {
  opacity: 1;
}

.menu-open .site-header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.menu-open .site-header::after {
  opacity: 0;
}

.brand-lockup,
.menu-toggle {
  pointer-events: auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  width: 75px;
  min-height: 50px;
}

.brand-lockup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 48px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: clamp(17px, 1.35vw, 23px);
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle:hover {
  color: var(--gold);
}

.mono,
.section-label,
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  align-items: center;
  padding: 108px var(--gutter) 44px;
  background:
    linear-gradient(90deg, #111111 0%, #181818 38%, #202020 52%, #2f2735 76%, #3e2e45 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 260ms ease, transform 260ms ease;
  overflow: hidden;
}

.site-menu__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 18%, rgba(155,114,170,0.18), transparent 24vw),
    radial-gradient(circle at 104% -6%, rgba(213,167,72,0.14), transparent 13vw),
    linear-gradient(90deg, rgba(0,0,0,0.12), rgba(255,255,255,0.018));
}

.menu-open .site-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-menu__inner {
  position: relative;
  display: grid;
  gap: clamp(32px, 5vw, 80px);
}

.site-menu__links {
  display: grid;
  gap: clamp(4px, 1vh, 14px);
  justify-items: start;
}

.site-menu__links a {
  display: block;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: clamp(70px, 9.1vw, 174px);
  line-height: 0.74;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  transition: color 180ms ease, transform 180ms ease;
}

.site-menu__links a:hover,
.site-menu__links a.is-active {
  color: var(--gold);
  transform: translateX(10px);
}

.site-menu__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 58px);
}

.site-menu__meta a {
  min-height: 44px;
  color: var(--mist);
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.8vw, 28px);
  text-transform: uppercase;
}

.page,
.footer {
  margin-left: var(--rail);
}

.hero {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 100vh;
  min-height: 100lvh;
  padding: 98px var(--gutter) 56px;
  overflow: hidden;
  isolation: isolate;
}

.hero__video,
.hero__scrim {
  position: absolute;
  inset: 0;
}

.hero__video {
  z-index: -3;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.06) brightness(0.72);
}

.hero__scrim {
  z-index: -2;
  background:
    radial-gradient(circle at 68% 58%, rgba(213,167,72,0.14), transparent 18vw),
    linear-gradient(90deg, rgba(32,32,32,0.88), rgba(32,32,32,0.34) 54%, rgba(32,32,32,0.58));
}

.hero__content {
  width: min(100%, clamp(340px, 58vw, 720px));
  margin-top: clamp(96px, 13vh, 136px);
}

.kicker,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
}

.hero h1 {
  max-width: 7.7ch;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(78px, 9.8vw, 156px);
  line-height: 0.8;
  text-transform: uppercase;
}

.hero--home h1,
.hero__title--fit {
  width: 100%;
  max-width: none;
  font-size: var(--hero-title-size, clamp(78px, 9.8vw, 156px));
}

.hero__title-line {
  display: block;
  width: max-content;
  white-space: nowrap;
  transform-origin: left center;
}

@media (max-width: 700px) {
  .hero h1 {
    font-family: var(--font-display-service);
    font-weight: 400;
  }

  .hero__title--fit {
    margin-bottom: 30px;
    line-height: 0.88;
  }
}

h2 {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(48px, 7.4vw, 126px);
  line-height: 0.84;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.03;
}

.hero__copy {
  width: 100%;
  max-width: none;
  margin-bottom: 34px;
  color: var(--mist);
  font-size: clamp(18px, 1.7vw, 24px);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 19px 28px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #202020;
  font-weight: 700;
  font-size: clamp(17px, 1.35vw, 22px);
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 34px rgba(213,167,72,0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero .primary-cta {
  width: 100%;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(213,167,72,0.34);
}

.text-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.primary-cta--outline {
  border: 1px solid rgba(213,167,72,0.72);
  background: transparent;
  color: var(--gold);
}

.primary-cta--outline:hover {
  background: rgba(213,167,72,0.1);
}

.section,
.booking-section {
  padding: clamp(78px, 10vw, 148px) var(--gutter);
}

.path-grid,
.proof-grid,
.gear-grid,
.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.proof-grid,
.gear-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artist-proof {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
}

.artist-proof__heading {
  display: grid;
  gap: 10px;
  max-width: 1040px;
  position: relative;
  z-index: 2;
}

.artist-proof__heading h2 {
  max-width: none;
  margin-bottom: 0;
}

.artist-proof__heading h2 span {
  display: block;
  width: max-content;
  white-space: nowrap;
}

.client-depth-carousel {
  position: relative;
  min-height: clamp(430px, 43vw, 680px);
  perspective: 1300px;
  transform-style: preserve-3d;
}

.client-depth-item {
  --depth-x: clamp(104px, 11.4vw, 178px);
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(190px, 25vw, 380px);
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 1px solid rgba(245,231,190,0.18);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 30px 90px rgba(0,0,0,0.44);
  opacity: var(--wheel-opacity, 1);
  transform-origin: center center;
  transform-box: border-box;
  transform:
    translate3d(calc(-50% + var(--wheel-x, 0px)), -50%, var(--wheel-z, 0px))
    rotateY(var(--wheel-yaw, 0deg))
    rotateZ(var(--wheel-roll, 0deg))
    scale(var(--wheel-scale, 1));
  transition:
    transform 760ms cubic-bezier(.2,.8,.2,1),
    opacity 760ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
  will-change: transform, translate, opacity, filter;
  animation: clientCardFloat 2.4s ease-in-out infinite;
  animation-delay: calc(var(--client-index) * -260ms);
}

.client-depth-item[data-depth="4"] {
  opacity: 0;
  pointer-events: none;
}

.client-depth-carousel[data-motion="continuous"] .client-depth-item {
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.client-depth-item[data-center="true"],
.client-depth-item:hover {
  border-color: rgba(213,167,72,0.56);
  box-shadow: 0 34px 110px rgba(0,0,0,0.58), 0 0 54px rgba(213,167,72,0.14);
}

.client-depth-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.74);
  transform: scale(1.03);
  transition: filter 240ms ease, transform 240ms ease;
  will-change: transform, filter;
}

.client-depth-item[data-center="true"] img,
.client-depth-item:hover img {
  filter: saturate(0.96) contrast(1.08) brightness(0.92);
  transform: scale(1);
}

.client-depth-item::after {
  display: none;
}

@media (min-width: 701px) and (max-width: 1320px) {
  .client-depth-carousel {
    min-height: clamp(330px, 46vw, 460px);
    margin-inline: -18px;
    perspective: 1200px;
  }

  .client-depth-item {
    width: clamp(170px, 25vw, 320px);
  }
}

@keyframes clientCardFloat {
  0%,
  100% {
    translate: 0 -2.5px;
  }
  50% {
    translate: 0 2.5px;
  }
}


.path-card,
.proof-card,
.gear-card,
.service-tile,
.editorial__body > div {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(145deg, rgba(58,58,58,0.7), rgba(32,32,32,0.62));
}

.path-card span,
.gear-card span,
.service-tile span {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 44px;
  border: 1px solid rgba(213,167,72,0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(213,167,72,0.14);
}

.path-card p,
.proof-card p,
.gear-card p,
.service-tile p,
.editorial p,
.location p,
.booking-section p,
.placeholder-panel p,
.fit-section p {
  color: var(--silver);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}

.split-heading .section-label {
  grid-column: 1 / -1;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.room-panel {
  display: grid;
  grid-template-rows: minmax(260px, 38vw) auto;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(32,32,32,0.5);
  overflow: hidden;
}

.room-panel img,
.media-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #263547, #1f1f1f);
}

.room-panel--black-room img {
  background: linear-gradient(135deg, #171717, #3e2e45);
}

.room-panel > div {
  padding: 28px;
}

.quote-band,
.gated {
  margin: 0 var(--gutter);
  padding: clamp(54px, 7vw, 96px);
  border-top: 1px solid rgba(213,167,72,0.52);
  border-bottom: 1px solid rgba(213,167,72,0.24);
  background: transparent;
}

.quote-band p {
  max-width: 860px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 104px);
  line-height: 0.85;
  text-transform: uppercase;
}

.quote-band span {
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.process__heading {
  max-width: 720px;
}

.process__heading h2 {
  max-width: none;
  font-size: clamp(74px, 7vw, 120px);
}

.process__heading h2 span {
  display: block;
  width: max-content;
  white-space: nowrap;
}

.process__heading p:not(.section-label) {
  max-width: 520px;
  margin: 0;
  color: var(--mist);
  font-size: clamp(19px, 1.8vw, 28px);
  line-height: 1.25;
}

.process ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(245,231,190,0.18);
}

.process li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: clamp(18px, 2.4vw, 30px);
  padding: clamp(20px, 2.7vw, 34px) 0;
  border-bottom: 1px solid rgba(245,231,190,0.18);
}

.process li span,
.mono {
  color: var(--gold);
}

.process li span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process li strong {
  display: block;
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.05;
}

.process li p {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: var(--silver);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.45;
}

.service-strip {
  padding-top: clamp(30px, 5vw, 74px);
}

.service-tile {
  position: relative;
  overflow: hidden;
}

.service-tile::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(213,167,72,0.16);
  border-radius: 50%;
  content: "";
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: end;
  gap: clamp(28px, 5vw, 78px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.fit-section h2 {
  max-width: 12ch;
}

.fit-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-section li {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(32,32,32,0.46);
  color: var(--mist);
  font-weight: 700;
}

.home-studio {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: stretch;
  border-top: 1px solid rgba(245,231,190,0.13);
  border-bottom: 1px solid rgba(245,231,190,0.13);
}

.home-studio__copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
}

.home-studio__copy h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.home-studio__copy h2 span {
  display: block;
}

.home-studio__visual {
  position: relative;
  width: min(100%, 520px);
  flex: 1 1 auto;
  min-height: 0;
  margin-top: clamp(62px, 6vw, 92px);
  overflow: hidden;
  border: 1px solid rgba(213,167,72,0.3);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}

.home-studio__visual video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
}

.home-studio__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.26));
  pointer-events: none;
}

.home-studio__body {
  display: grid;
  gap: 22px;
  max-width: 760px;
  min-width: 0;
  align-self: stretch;
}

.home-studio__body p {
  margin: 0;
  color: var(--mist);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.25;
}

.location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
}

.map-card {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 58% 42%, rgba(213,167,72,0.32), transparent 11vw),
    linear-gradient(135deg, rgba(58,58,58,0.88), rgba(32,32,32,0.86));
  background-size: 48px 48px, 48px 48px, auto, auto;
  overflow: hidden;
}

.map-card span {
  position: absolute;
  left: 28px;
  bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.76;
  color: rgba(255,255,255,0.1);
}

.map-card i {
  position: absolute;
  display: block;
  height: 1px;
  background: var(--gold);
  transform: rotate(-18deg);
}

.map-card i:nth-child(2) { top: 31%; left: 12%; width: 70%; }
.map-card i:nth-child(3) { top: 54%; left: 20%; width: 58%; transform: rotate(24deg); }
.map-card i:nth-child(4) { top: 68%; left: 8%; width: 76%; transform: rotate(-6deg); }

.booking-section {
  margin: 0 var(--gutter) clamp(60px, 7vw, 96px);
  border: 1px solid rgba(245,231,190,0.18);
  background: transparent;
}

.booking-section h2,
.placeholder-panel h2,
.gated h2 {
  max-width: 12ch;
}

.home-final-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.home-final-cta h2 {
  max-width: min(100%, 17ch);
  margin-bottom: 0;
}

.home-final-cta h2 span {
  display: block;
  white-space: nowrap;
}

.home-final-cta__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 14px;
  width: min(100%, 760px);
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.service-modal-open {
  overflow: hidden;
}

.service-modal-open .service-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(213,167,72,0.13), transparent 30%),
    radial-gradient(circle at 18% 90%, rgba(155,114,170,0.24), transparent 42%),
    rgba(0,0,0,0.74);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.service-modal__panel {
  position: relative;
  width: min(100%, 760px);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(245,231,190,0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 0%, rgba(155,114,170,0.2), transparent 30%),
    linear-gradient(145deg, rgba(32,32,32,0.96), rgba(8,8,9,0.98));
  box-shadow: 0 30px 120px rgba(0,0,0,0.62);
}

.service-modal__panel h2 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(58px, 8vw, 98px);
}

.service-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: transparent;
  color: var(--mist);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.service-modal__links {
  display: grid;
  gap: 10px;
}

.service-modal__links a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(245,231,190,0.16);
  color: var(--white);
  text-decoration: none;
}

.service-modal__links a:last-child {
  border-bottom: 1px solid rgba(245,231,190,0.16);
}

.service-modal__links span {
  font-family: var(--font-display-service);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.service-modal__links small {
  color: var(--silver);
  font-size: 15px;
}

.service-modal__links a:hover span {
  color: var(--gold);
}

.booking-embed-section {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  background: transparent;
}

.booking-embed-section__heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.booking-embed-section h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(58px, 7.8vw, 118px);
  line-height: 0.84;
}

.booking-notes {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: min(100%, 1040px);
  border: 1px solid rgba(213,167,72,0.24);
  background: rgba(32,32,32,0.72);
  color: var(--mist);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-notes span {
  padding: 8px 11px;
}

.booking-notes span + span {
  border-left: 1px solid rgba(213,167,72,0.24);
}

.booking-alert {
  display: grid;
  gap: 4px;
  max-width: min(100%, 760px);
  padding: 10px 14px;
  border: 1px solid rgba(255,72,72,0.48);
  background: rgba(74,22,22,0.54);
  color: #ff5757;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.booking-alert span {
  color: #ff7676;
  font-size: 0.92em;
}

.booking-embed-section__embed {
  width: min(100%, 1080px);
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  background: #f7f7f7;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0,0,0,0.24);
}

.booking-embed-section iframe {
  display: block;
  height: var(--booking-iframe-height, 760px) !important;
  min-height: 0;
  overflow: hidden !important;
  background: #f7f7f7;
}

.rental-booking,
.recording-booking {
  --booking-iframe-height: 700px;
}

.production-booking {
  --booking-iframe-height: 540px;
}

.mixing-booking {
  --booking-iframe-height: 460px;
}

.booking-secondary-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  width: min(100%, 920px);
  margin: clamp(4px, 1vw, 10px) auto 0;
}

.booking-secondary-action p {
  margin: 0;
  color: var(--mist);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.1;
  text-align: right;
}

.booking-secondary-action a {
  display: grid;
  justify-items: center;
  min-height: 76px;
  padding: 16px 22px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(32,32,32,0.54);
  color: var(--white);
  line-height: 1;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.booking-secondary-action a:hover {
  background: var(--gold);
  color: #202020;
  transform: translateY(-1px);
}

.booking-secondary-action strong {
  font-size: clamp(24px, 2vw, 34px);
  text-transform: uppercase;
}

.booking-secondary-action span {
  color: currentColor;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 800;
}

.membership-pricing {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
  background: transparent;
  color: var(--white);
}

.membership-pricing__heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.membership-pricing__heading .section-label {
  color: var(--gold);
}

.membership-pricing__heading h2 {
  max-width: none;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(62px, 7.4vw, 112px);
  line-height: 0.84;
}

.membership-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: min(100%, 1320px);
  margin: 0 auto;
}

.membership-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 620px;
  overflow: hidden;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(17,24,39,0.08);
  text-align: center;
}

.membership-card h3 {
  margin: 0;
  color: #111827;
  font-family: var(--font-body);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.membership-card__credits {
  margin: -8px 0 10px;
  color: #6b7280;
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 600;
}

.membership-card__features {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4b5563;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.25;
}

.membership-card__features li {
  padding: 16px 0;
  border-top: 1px solid rgba(17,24,39,0.1);
}

.membership-card__features li:last-child {
  border-bottom: 1px solid rgba(17,24,39,0.1);
}

.membership-card__features strong,
.membership-card__features li {
  font-weight: 700;
}

.membership-card__price {
  display: grid;
  gap: 2px;
  padding-top: 12px;
}

.membership-card__price span {
  color: #111827;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
  text-decoration: line-through;
}

.membership-card__price strong {
  color: #111827;
  font-size: clamp(58px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
}

.membership-card__price em {
  color: #189862;
  font-size: clamp(16px, 1.1vw, 20px);
  font-style: normal;
  font-weight: 800;
}

.membership-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 4px;
  padding: 14px 24px;
  border-radius: 4px;
  background: var(--gold);
  color: #fff;
  font-size: clamp(17px, 1.1vw, 19px);
  font-weight: 800;
}

.membership-card__availability {
  margin: -8px 0 0;
  color: #6b7280;
  font-size: clamp(15px, 1.05vw, 18px);
  font-style: italic;
}

.membership-card__ribbon {
  position: absolute;
  top: 25px;
  right: -54px;
  width: 210px;
  padding: 8px 0;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 10px 22px rgba(155,114,170,0.28);
}

.room-comparison {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
  background: transparent;
}

.room-comparison__heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.room-comparison__heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(70px, 8vw, 128px);
  line-height: 0.82;
}

.room-comparison__heading p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: var(--mist);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.25;
}

.room-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}

.comparison-room {
  overflow: hidden;
  border: 1px solid rgba(245,231,190,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.comparison-room__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.comparison-room__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.28));
  pointer-events: none;
}

.comparison-room__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.72);
}

.comparison-room__body {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 2.7vw, 34px);
}

.comparison-room__body .mono {
  margin: 0;
  color: var(--gold);
}

.comparison-room__body h3 {
  margin: 0;
  font-family: var(--font-display-service);
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 700;
  line-height: 0.8;
  text-transform: uppercase;
}

.comparison-room__body .text-link {
  justify-self: start;
  margin-top: 4px;
  padding: 12px 18px;
  border: 1px solid rgba(213,167,72,0.6);
  border-radius: 4px;
  background: rgba(213,167,72,0.08);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.comparison-room__body .text-link:hover {
  background: var(--gold);
  color: #202020;
  transform: translateY(-1px);
}

.comparison-room__body ul,
.room-comparison__benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-room__body li,
.room-comparison__benefits li {
  position: relative;
  padding-left: 26px;
  color: var(--mist);
}

.comparison-room__body li::before,
.room-comparison__benefits li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.room-comparison__benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(213,167,72,0.2);
  background: rgba(32,32,32,0.68);
}

.room-comparison__cta {
  display: grid;
  justify-items: center;
}

.room-comparison__cta .primary-cta {
  width: min(100%, 780px);
  min-height: 76px;
}

.equipment-overview {
  display: grid;
  gap: 12px;
}

.equipment-page-header {
  padding-top: clamp(170px, 18vw, 230px);
  padding-bottom: clamp(22px, 4vw, 46px);
}

.equipment-overview h1,
.equipment-overview h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(70px, 9vw, 136px);
  line-height: 0.82;
}

.equipment-list-card {
  border: 1px solid rgba(245,231,190,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
}

.equipment-list-card h3 {
  margin: 0;
  font-family: var(--font-display-service);
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
}

.equipment-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.equipment-list-section {
  position: relative;
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  padding-top: clamp(22px, 4vw, 56px);
  scroll-margin-top: 120px;
}

.equipment-room-heading {
  display: grid;
  gap: 6px;
}

.equipment-room-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.82;
}

.equipment-list-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 2.8vw, 36px);
}

.equipment-list-card h3 {
  color: var(--white);
  font-size: clamp(44px, 4.4vw, 72px);
}

.equipment-list-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.equipment-list-card li {
  position: relative;
  padding-left: 24px;
  color: var(--mist);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.25;
}

.equipment-list-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.reviews-section {
  display: grid;
  gap: clamp(24px, 3.5vw, 42px);
  background: transparent;
}

.reviews-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.reviews-section__title {
  display: grid;
  gap: 8px;
}

.reviews-section__heading h2 {
  max-width: 22ch;
  margin-bottom: 0;
  color: var(--platinum);
  font-family: var(--font-display);
  font-size: clamp(70px, 8vw, 126px);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.reviews-section__summary {
  margin: 0;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-areas:
    "rating rating rating"
    "stars divider count";
  align-items: center;
  justify-content: end;
  gap: 8px 16px;
  color: rgba(244,241,235,0.66);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1;
}

.reviews-section__summary strong {
  grid-area: rating;
  color: var(--platinum);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 900;
  line-height: 0.9;
  text-align: right;
}

.reviews-section__stars {
  grid-area: stars;
  color: var(--gold);
  font-size: clamp(18px, 1.45vw, 24px);
  letter-spacing: 0.02em;
}

.reviews-section__divider {
  grid-area: divider;
  width: 1px;
  height: 26px;
  background: rgba(244,241,235,0.42);
}

.reviews-section__summary span:last-child {
  grid-area: count;
}

.reviews-section__loading {
  margin: 0;
  color: rgba(244,241,235,0.68);
}

.reviews-carousel {
  min-width: 0;
  width: min(100%, 1320px);
  margin: 0 auto;
  overflow: hidden;
}

.reviews-carousel__viewport {
  width: 100%;
  overflow: hidden;
  contain: paint;
}

.reviews-carousel__track {
  display: flex;
  transition: transform 520ms ease;
  will-change: transform;
}

.reviews-carousel__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.review-card {
  height: clamp(270px, 22vw, 320px);
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: clamp(22px, 2.3vw, 34px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 35%),
    rgba(12,12,12,0.88);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.review-card__rating span:last-child {
  letter-spacing: 0.02em;
}

.review-card__copy {
  min-height: 0;
  position: relative;
}

.review-card__copy p {
  display: -webkit-box;
  max-height: 7.75em;
  margin: 0;
  overflow: hidden;
  color: rgba(244,241,235,0.86);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-card.is-expanded .review-card__copy p {
  display: block;
  max-height: 9.5em;
  overflow: auto;
  padding-right: 8px;
  -webkit-line-clamp: unset;
}

.review-card__more {
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4e96ff;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  text-align: left;
}

.review-card footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: rgba(244,241,235,0.58);
  font-weight: 700;
}

.review-card__avatar,
.review-card__source {
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  background: rgba(155,114,170,0.92);
  color: var(--platinum);
  font-size: 13px;
}

.review-card__source {
  width: 30px;
  height: 30px;
  color: var(--gold);
  font-size: 18px;
}

.reviews-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: clamp(24px, 3vw, 40px);
}

.reviews-carousel__arrow,
.reviews-carousel__pages button {
  border: 0;
  background: transparent;
  color: var(--platinum);
  font: inherit;
  font-weight: 800;
}

.reviews-carousel__arrow {
  font-size: 42px;
  line-height: 1;
}

.reviews-carousel__pages {
  display: flex;
  gap: 20px;
}

.reviews-carousel__pages button {
  color: rgba(244,241,235,0.78);
  font-size: 18px;
}

.reviews-carousel__pages button.is-active {
  color: var(--platinum);
  font-size: 26px;
}

.reviews-carousel__count {
  min-width: 64px;
  color: rgba(244,241,235,0.78);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}

.editorial {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
}

.editorial .section-label {
  grid-column: 1 / -1;
}

.editorial h2 {
  max-width: 12ch;
}

.editorial__body {
  display: grid;
  gap: 16px;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.media-strip img {
  min-height: 360px;
}

.placeholder-panel {
  max-width: 980px;
}

.contact-panel {
  max-width: calc(720px + (var(--gutter) * 2));
}

.contact-panel h2 {
  max-width: none;
  white-space: nowrap;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--mist);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(32,32,32,0.8);
  color: var(--white);
  padding: 12px 14px;
}

.legal-panel {
  display: grid;
  align-content: start;
  gap: clamp(24px, 4vw, 44px);
  min-height: 72vh;
  padding-top: clamp(160px, 18vh, 220px);
}

.legal-panel h1 {
  max-width: min(100%, 12.5ch);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(86px, 12vw, 172px);
  line-height: 0.78;
  text-transform: uppercase;
}

.legal-panel h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.legal-panel__body {
  display: grid;
  gap: clamp(24px, 3vw, 38px);
  max-width: 880px;
}

.legal-section {
  display: grid;
  gap: 14px;
}

.legal-section h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  max-width: 780px;
  margin: 0;
  color: var(--mist);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.5;
}

.legal-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.1em;
}

.legal-panel .primary-cta {
  justify-self: start;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(44px, 5vw, 70px) var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.1);
  background:
    radial-gradient(circle at 92% 0%, rgba(155,114,170,0.14), transparent 26vw),
    #202020;
}

.footer__logo {
  display: inline-flex;
  width: clamp(104px, 9vw, 142px);
  justify-self: center;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
}

.footer__links a {
  color: var(--mist);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer__meta {
  display: grid;
  justify-items: start;
  gap: 8px;
  text-align: left;
}

.footer__meta .mono {
  margin: 0;
  color: var(--gold);
}

.footer__copyright {
  margin: 0;
  color: var(--silver);
  font-size: 13px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.loader-active .loader,
.loader-reduced .loader {
  opacity: 1;
  visibility: visible;
}

.loader-done .loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, visibility 0s linear 420ms;
}

.loader-done .hero__video {
  animation: heroSettle 900ms cubic-bezier(.2,.8,.2,1) both;
}

@keyframes heroSettle {
  from { filter: saturate(0.82) contrast(1.12) brightness(0.52); }
  to { filter: saturate(0.9) contrast(1.06) brightness(0.72); }
}

.reveal,
.section,
.path-card,
.room-panel,
.proof-card,
.gear-card,
.equipment-list-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

  @media (max-width: 1060px) {
  .hero {
    min-height: 100vh;
    min-height: 100lvh;
    align-items: start;
    padding-top: 92px;
  }

  .hero__content {
    margin-top: clamp(86px, 11vh, 112px);
  }

  .path-grid,
  .proof-grid,
  .gear-grid,
  .service-strip,
  .room-grid,
  .membership-pricing__grid,
  .room-comparison__grid,
  .room-comparison__benefits,
  .process,
  .process ol,
  .location,
  .editorial,
  .media-strip,
  .fit-section,
  .home-studio,
  .equipment-overview,
  .equipment-list-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .site-menu__links a {
    font-size: clamp(58px, 12vw, 112px);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand-lockup {
    width: 75px;
  }

  .menu-toggle {
    min-width: 72px;
    font-size: 16px;
  }

  .site-menu {
    padding: 98px 18px 28px;
  }

  .site-menu__wash {
    background:
      radial-gradient(circle at 90% 14%, rgba(155,114,170,0.16), rgba(155,114,170,0.05) 18%, transparent 44%),
      radial-gradient(circle at 112% -8%, rgba(213,167,72,0.12), transparent 24%),
      linear-gradient(90deg, rgba(0,0,0,0.12), rgba(255,255,255,0.012));
  }

  .site-menu__links {
    gap: 6px;
  }

  .site-menu__links a {
    font-size: clamp(43px, 12.4vw, 58px);
    line-height: 0.78;
  }

  .site-menu__meta {
    justify-content: flex-start;
  }

  .hero {
    padding: 86px 18px 40px;
  }

  .hero__content {
    margin-top: clamp(72px, 9vh, 92px);
  }

  h1 {
    font-size: clamp(64px, 19vw, 96px);
  }

  h2 {
    font-size: clamp(44px, 15vw, 76px);
  }

  .section,
  .booking-section {
    padding: 72px 18px;
  }

  .booking-embed-section {
    padding-top: 74px;
  }

  .booking-embed-section h2 {
    font-family: var(--font-display-service);
    font-size: clamp(46px, 13.5vw, 64px);
  }

  .booking-notes {
    display: grid;
    width: 100%;
    max-width: 360px;
    text-align: left;
  }

  .booking-notes span + span {
    border-top: 1px solid rgba(213,167,72,0.24);
    border-left: 0;
  }

  .booking-alert {
    width: 100%;
    max-width: 360px;
    text-align: left;
  }

  .booking-embed-section__embed {
    margin-right: 0;
    margin-left: 0;
  }

  .booking-embed-section iframe {
    height: var(--booking-iframe-mobile-height, var(--booking-iframe-height, 680px)) !important;
  }

  .rental-booking,
  .recording-booking {
    --booking-iframe-mobile-height: 1120px;
  }

  .production-booking {
    --booking-iframe-mobile-height: 620px;
  }

  .mixing-booking {
    --booking-iframe-mobile-height: 560px;
  }

  .booking-secondary-action {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    gap: 14px;
  }

  .booking-secondary-action p {
    text-align: center;
  }

  .membership-pricing {
    padding-top: 74px;
  }

  .membership-pricing__heading h2 {
    font-family: var(--font-display-service);
    font-size: clamp(46px, 13.5vw, 64px);
  }

  .process__heading h2 {
    font-size: clamp(48px, 13.5vw, 64px);
  }

  .membership-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .room-comparison__heading h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .home-final-cta__actions {
    grid-template-columns: 1fr;
  }

  .home-studio__copy h2,
  .home-final-cta h2 {
    max-width: none;
    font-size: clamp(48px, 14vw, 68px);
  }

  .home-studio__copy {
    display: block;
  }

  .home-studio__visual {
    width: 100%;
    margin-top: 28px;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .artist-proof__heading h2 {
    max-width: none;
    font-size: clamp(48px, 14vw, 68px);
  }

  .artist-proof__heading h2 span {
    width: auto;
    white-space: normal;
  }

  .client-depth-carousel {
    min-height: 330px;
    margin-inline: -18px;
    perspective: 1200px;
  }

  .client-depth-item {
    --depth-x: clamp(70px, 20vw, 96px);
    width: min(44vw, 170px);
    aspect-ratio: 0.78;
    transform:
      translate3d(calc(-50% + var(--wheel-x, 0px)), -50%, var(--wheel-z, 0px))
      rotateY(var(--wheel-yaw, 0deg))
      rotateZ(var(--wheel-roll, 0deg))
      scale(var(--wheel-scale, 1));
  }

  .service-modal__panel h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .home-studio__body p {
    font-size: clamp(19px, 5.8vw, 27px);
  }

  .comparison-room__body h3 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .reviews-section__heading h2 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .reviews-section__heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reviews-section__summary {
    justify-content: start;
  }

  .reviews-section__summary strong {
    text-align: left;
  }

  .reviews-carousel__slide {
    grid-template-columns: 1fr;
  }

  .review-card {
    height: 280px;
    padding: 22px;
  }

  .review-card__copy p {
    font-size: 17px;
  }

  .reviews-carousel__controls {
    gap: 18px;
  }

  .contact-panel h2 {
    font-size: clamp(42px, 13.6vw, 60px);
  }

  .legal-panel {
    min-height: 64vh;
    padding-top: 132px;
  }

  .legal-panel h1 {
    font-size: clamp(64px, 18vw, 94px);
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }

  .footer__logo {
    display: none;
  }

  .footer__links {
    justify-content: flex-end;
    flex-wrap: wrap;
    text-align: right;
  }

  .footer__meta {
    justify-items: start;
    text-align: left;
  }

  .quote-band,
  .booking-section {
    margin-right: 18px;
    margin-left: 18px;
  }

  .path-card,
  .proof-card,
  .gear-card,
  .service-tile,
  .editorial__body > div,
  .room-panel > div {
    padding: 22px;
  }

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

  .footer {
    display: grid;
    padding: 54px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .section,
  .path-card,
  .room-panel,
  .proof-card,
  .gear-card,
  .service-tile {
    opacity: 1;
    transform: none;
  }
}
