/* base */
@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/Unbounded-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}

:root {
  --cream-0: #f6efe9;
  --cream-1: #eadfd2;
  --cream-2: #d8c6b6;
  --graphite-0: #080808;
  --graphite-1: #131210;
  --graphite-2: #24211d;
  --graphite-3: #4f463d;
  --accent: #f34802;
  --accent-deep: #c43700;
  --accent-soft: rgba(243, 72, 2, 0.14);
  --ink-soft: rgba(36, 33, 29, 0.68);
  --paper: rgba(255, 250, 244, 0.74);
  --paper-strong: rgba(255, 250, 244, 0.9);
  --white-soft: rgba(255, 255, 255, 0.56);
  --white-line: rgba(255, 255, 255, 0.28);
  --dark-line: rgba(12, 12, 12, 0.1);
  --shadow-soft: 0 24px 70px rgba(54, 37, 20, 0.12);
  --shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.32);
  --shadow-accent: 0 22px 54px rgba(243, 72, 2, 0.2);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1220px, calc(100vw - 48px));
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Unbounded", system-ui, sans-serif;
  color: var(--graphite-0);
  background:
    radial-gradient(circle at 12% 10%, rgba(243, 72, 2, 0.12), transparent 25%),
    radial-gradient(circle at 92% 18%, rgba(79, 70, 61, 0.12), transparent 22%),
    linear-gradient(180deg, #f7f1ea 0%, var(--cream-0) 48%, #efe5db 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body:has(.site-header) {
  -webkit-tap-highlight-color: rgba(243, 72, 2, 0.18);
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff5ef;
  background: var(--graphite-0);
  box-shadow: var(--shadow-deep);
  transform: translateY(-140%);
  transition: transform 260ms var(--ease);
}

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

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 18%, rgba(243, 72, 2, 0.2), transparent 26%),
    linear-gradient(145deg, var(--graphite-0), var(--graphite-1) 58%, #361304);
  opacity: 0;
  transform: translateY(18px) scaleY(0.98);
  transform-origin: bottom;
  transition:
    opacity 360ms var(--ease),
    transform 360ms var(--ease);
}

body.is-leaving .page-transition {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

body.page-booking {
  color: #f7f1eb;
  background:
    radial-gradient(circle at 14% 8%, rgba(243, 72, 2, 0.18), transparent 26%),
    linear-gradient(180deg, #0c0b0a 0%, #141210 58%, #17120f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(135deg, rgba(12, 12, 12, 0.018) 0, rgba(12, 12, 12, 0.018) 1px, transparent 1px, transparent 22px);
  opacity: 0.72;
}

body.page-booking::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.012)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 22px);
  opacity: 1;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

code {
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: inherit;
  font-size: 0.82em;
}

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

h1,
h2,
h3,
p,
span,
strong,
a,
label,
button {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

/* layout */
.page-shell {
  position: relative;
  padding-bottom: 18px;
  transition:
    opacity 340ms var(--ease),
    transform 340ms var(--ease),
    filter 340ms var(--ease);
}

body.is-leaving .page-shell {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(-10px) scale(0.995);
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(243, 72, 2, 0.08);
  border-radius: 999px;
}

.page-shell::before {
  width: 46vw;
  height: 46vw;
  min-width: 420px;
  min-height: 420px;
  left: -22vw;
  top: 24vh;
  background: radial-gradient(circle, rgba(243, 72, 2, 0.08), transparent 66%);
}

.page-shell::after {
  width: 34vw;
  height: 34vw;
  min-width: 340px;
  min-height: 340px;
  right: -18vw;
  top: 62vh;
  background: radial-gradient(circle, rgba(19, 18, 16, 0.08), transparent 70%);
}

.site-header,
.section,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

main > .section:first-child {
  padding-top: clamp(36px, 5vw, 72px);
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-head h2 {
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

/* navigation */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(250, 245, 239, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px);
  transition:
    padding 360ms var(--ease),
    background-color 360ms var(--ease),
    border-color 360ms var(--ease),
    box-shadow 360ms var(--ease);
}

.page-booking .site-header {
  color: var(--graphite-0);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(250, 245, 239, 0.9);
  box-shadow: var(--shadow-soft);
}

.site-header.is-scrolled {
  padding-block: 9px;
  border-color: rgba(243, 72, 2, 0.2);
  background: rgba(250, 245, 239, 0.92);
  box-shadow: 0 22px 58px rgba(54, 37, 20, 0.16);
}

.page-booking .site-header.is-scrolled {
  background: rgba(250, 245, 239, 0.94);
}

.brand {
  width: clamp(150px, 17vw, 205px);
  color: var(--graphite-0);
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(36, 33, 29, 0.68);
  font-size: 0.78rem;
  transition: color 260ms var(--ease);
}

.page-booking .site-nav a {
  color: rgba(36, 33, 29, 0.7);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 260ms var(--ease),
    transform 260ms var(--ease);
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--accent);
}

/* typography and buttons */
.eyebrow,
.card-kicker,
.metric-label,
.service-option-kicker {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead,
.service-tile p,
.advantage-card p,
.location-poster-copy p,
.booking-hero p,
.training-hero p,
.training-card p,
.training-note p,
.booking-summary-card p,
.field input,
.field textarea,
.status-line,
.site-footer p {
  line-height: 1.72;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  transition:
    transform 320ms var(--ease),
    border-color 320ms var(--ease),
    background-color 320ms var(--ease),
    color 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(243, 72, 2, 0.36);
  outline-offset: 4px;
}

.button-primary,
.header-cta {
  color: #fff5ef;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 34px rgba(243, 72, 2, 0.22);
}

.button-secondary {
  border-color: rgba(12, 12, 12, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: var(--graphite-0);
}

.page-booking .button-secondary,
.location-poster .button-secondary,
.site-footer .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: #fff5ef;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button:active,
.header-cta:active,
.service-option:active,
.photo-hotspot:active {
  transform: translateY(0) scale(0.985);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary:hover,
.header-cta:hover {
  box-shadow: var(--shadow-accent);
}

.button-secondary:hover {
  border-color: rgba(243, 72, 2, 0.46);
  color: var(--accent);
}

.button-wide {
  width: 100%;
}

/* hero */
.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 20px;
  min-height: calc(100dvh - 110px);
  align-items: stretch;
}

.hero-home-copy,
.hero-home-stage,
.service-tile,
.advantage-card,
.studio-photo,
.location-poster,
.map-frame,
.booking-hero,
.booking-form-panel,
.booking-sidebar,
.booking-summary-card,
.setup-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-home-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  padding: clamp(34px, 4.2vw, 60px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.64), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(243, 72, 2, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(248, 240, 232, 0.84));
}

.hero-home-copy::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(12, 12, 12, 0.055);
  border-radius: calc(var(--radius-xl) - 12px);
  background:
    linear-gradient(90deg, rgba(243, 72, 2, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(243, 72, 2, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(135deg, black, transparent 64%);
}

.hero-home-copy h1 {
  max-width: 12ch;
  margin-top: 20px;
  font-size: clamp(2.45rem, 4.1vw, 4.15rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-home-copy h1 span {
  display: block;
}

.lead {
  max-width: 44ch;
  margin-top: 26px;
  color: rgba(36, 33, 29, 0.74);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(12, 12, 12, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(36, 33, 29, 0.68);
  font-size: 0.72rem;
}

.hero-home-stage {
  padding: 12px;
  background: rgba(255, 255, 255, 0.54);
}

.hero-canvas-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 26px;
  background: var(--graphite-0);
  box-shadow: var(--shadow-deep);
}

.hero-canvas-card > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 50% 38%;
  filter: saturate(1.08) contrast(1.04) brightness(1.12);
  transform: scale(1.025);
  transition: transform 900ms var(--ease);
}

.hero-canvas-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 245, 239, 0.14);
  border-radius: 20px;
}

.hero-canvas-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 72, 2, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(19, 18, 16, 0.08) 42%, rgba(8, 8, 8, 0.36));
}

.hero-home-stage.is-visible .hero-canvas-card > img,
.hero-home-stage:hover .hero-canvas-card > img {
  transform: scale(1);
}

.hero-canvas-chip,
.hero-canvas-note {
  position: absolute;
  z-index: 3;
  color: #f7f1eb;
}

.hero-canvas-chip {
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(19, 18, 16, 0.58);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-canvas-note {
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 390px;
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(8, 8, 8, 0.58);
  backdrop-filter: blur(16px);
}

.hero-canvas-note strong {
  font-size: clamp(0.92rem, 1.35vw, 1.12rem);
  line-height: 1.45;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
}

/* cards */
.services-showcase {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: clamp(20px, 2.3vw, 30px);
}

.service-tile,
.advantage-card,
.booking-summary-card {
  isolation: isolate;
  display: grid;
  grid-template-rows: auto minmax(3.2em, auto) 1fr auto;
  align-content: start;
  gap: 18px;
  min-height: 280px;
  padding: clamp(26px, 3.2vw, 40px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(248, 240, 232, 0.68)),
    rgba(255, 255, 255, 0.58);
  transition:
    transform 420ms var(--ease),
    border-color 420ms var(--ease),
    box-shadow 420ms var(--ease);
}

.service-tile::before,
.advantage-card::before,
.booking-summary-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 38%),
    radial-gradient(circle at 92% 12%, rgba(243, 72, 2, 0.1), transparent 28%);
}

.service-tile:hover,
.advantage-card:hover,
.booking-summary-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 72, 2, 0.28);
  box-shadow: 0 34px 90px rgba(54, 37, 20, 0.16);
}

.service-tile-large {
  grid-row: span 2;
  min-height: 100%;
  color: #f7f1eb;
  background:
    radial-gradient(circle at top right, rgba(243, 72, 2, 0.18), transparent 32%),
    linear-gradient(145deg, #101010, #1d1915 52%, #361304);
  box-shadow: var(--shadow-deep);
}

.service-tile h3,
.advantage-card h3,
.booking-summary-card h3 {
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.28;
  text-wrap: balance;
}

.service-tile p,
.advantage-card p {
  color: rgba(36, 33, 29, 0.68);
  font-size: 0.88rem;
}

.service-tile-large p {
  color: rgba(247, 241, 235, 0.74);
}

.service-link {
  align-self: end;
  justify-self: start;
  margin-top: auto;
  padding-top: 12px;
  color: var(--accent);
  font-size: 0.76rem;
  line-height: 1.3;
  transition:
    color 260ms var(--ease),
    transform 260ms var(--ease);
}

.service-link::after {
  content: " →";
}

.service-link:hover {
  color: var(--accent-deep);
  transform: translateX(4px);
}

.service-tile-large .service-link {
  color: #fff5ef;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.card-kicker::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

/* process */
.process-section {
  padding-top: clamp(44px, 7vw, 96px);
}

.session-flow {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 14px;
}

.process-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.94;
  text-wrap: balance;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(248, 240, 232, 0.62)),
    rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 36%),
    radial-gradient(circle at 96% 8%, rgba(243, 72, 2, 0.1), transparent 30%);
}

.process-step span {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 0.9;
}

.process-step div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.process-step h3 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.3;
}

.process-step p {
  color: rgba(36, 33, 29, 0.68);
  font-size: 0.84rem;
  line-height: 1.7;
}

.scroll-photo-stack {
  display: grid;
  gap: 18px;
  perspective: 1200px;
}

.scroll-photo {
  position: relative;
  min-height: clamp(310px, 48vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-xl);
  background: var(--graphite-0);
  box-shadow: var(--shadow-deep);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.scroll-photo-stack > .scroll-photo:nth-child(2) {
  width: min(78%, 620px);
  margin-left: auto;
}

.scroll-photo-stack > .scroll-photo:nth-child(3) {
  width: min(86%, 720px);
}

.scroll-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04) brightness(1.08);
  transform: scale(1.045);
  transition: transform 1100ms var(--ease);
}

.lounge-photo {
  min-height: clamp(360px, 42vw, 560px);
}

.lounge-photo img,
.studio-photo-lounge img {
  object-position: 50% 48%;
  filter: saturate(1.03) contrast(1.04) brightness(1.04);
}

.scroll-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 72, 2, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.01), rgba(8, 8, 8, 0.28));
}

.scroll-photo figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 245, 239, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-reveal {
  opacity: 0;
  clip-path: inset(12% round var(--radius-xl));
  transform:
    translate3d(0, calc(42px + var(--parallax-y, 0px)), 0)
    scale(0.985);
  transition:
    opacity 920ms var(--ease),
    transform 920ms var(--ease),
    clip-path 920ms var(--ease);
  will-change: opacity, transform, clip-path;
}

.image-reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 round var(--radius-xl));
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1);
}

.image-reveal.is-visible img {
  transform: scale(1);
}

/* advantages */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

/* training teaser */
.training-preview-section {
  padding-block: clamp(42px, 6vw, 86px);
}

.training-preview {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 72, 2, 0.16), transparent 28%),
    linear-gradient(145deg, #0b0b0b, #17120f 56%, #321205);
  color: #f7f1eb;
  box-shadow: var(--shadow-deep);
}

.training-preview h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 0.96;
  text-wrap: balance;
}

.training-preview p {
  max-width: 55ch;
  margin-top: 18px;
  color: rgba(247, 241, 235, 0.74);
  line-height: 1.72;
}

.advantage-card {
  min-height: 310px;
}

.advantage-card > span {
  display: block;
  color: rgba(243, 72, 2, 0.9);
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
  line-height: 0.9;
}

/* gallery */
.studio-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(20px, 2.3vw, 30px);
}

.studio-lounge-feature {
  width: min(76%, 780px);
  height: clamp(520px, 58vw, 720px);
  min-height: 0;
  margin: 0 0 clamp(22px, 2.6vw, 34px) auto;
}

.studio-lounge-feature img {
  min-height: 0;
}

.studio-gallery-compact {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.studio-photo {
  min-height: 360px;
  background: var(--graphite-0);
  box-shadow: var(--shadow-deep);
}

.studio-photo-main {
  grid-row: span 2;
  min-height: 620px;
}

.studio-gallery-compact .studio-photo-main {
  grid-row: auto;
}

.studio-gallery-compact .studio-photo {
  min-height: clamp(460px, 48vw, 620px);
}

.studio-photo img,
.building-shot img,
.booking-hero-photo img,
.booking-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(1.06);
  transform: scale(1.035);
  transition: transform 900ms var(--ease);
}

.studio-photo::after,
.building-shot::after,
.booking-side-photo::after,
.booking-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(243, 72, 2, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.01), rgba(19, 18, 16, 0.1) 42%, rgba(8, 8, 8, 0.48));
}

.studio-photo-lounge::after,
.lounge-photo::after {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.01), rgba(8, 8, 8, 0.12) 46%, rgba(8, 8, 8, 0.34));
}

.studio-photo:hover img,
.building-shot:hover img,
.booking-side-photo:hover img,
.booking-hero-photo:hover img,
.studio-photo.is-visible img,
.building-shot.is-visible img {
  transform: scale(1);
}

.studio-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #f7f1eb;
}

.studio-photo figcaption span {
  color: rgba(255, 245, 239, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-photo figcaption strong {
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.45;
}

/* location */
.location-section {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

.location-poster {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1fr);
  gap: 0;
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 18% 16%, rgba(243, 72, 2, 0.18), transparent 28%),
    linear-gradient(145deg, #0b0b0b, #17120f 56%, #361304);
  box-shadow: var(--shadow-deep);
}

.location-poster-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(30px, 4.6vw, 58px);
  color: #f7f1eb;
}

.location-poster-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 5.7vw, 5rem);
  line-height: 0.92;
  text-wrap: balance;
}

.location-poster-copy p:not(.eyebrow) {
  max-width: 36ch;
  color: rgba(247, 241, 235, 0.74);
}

.building-shot {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.building-shot::after {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.28) 46%, rgba(8, 8, 8, 0.08)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.04), rgba(8, 8, 8, 0.36));
}

.map-frame {
  min-height: 440px;
  background: rgba(255, 255, 255, 0.5);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

/* booking */
.booking-main {
  display: grid;
  gap: clamp(26px, 3.6vw, 44px);
  padding-top: clamp(38px, 5vw, 70px);
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
  gap: 20px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 72, 2, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(26, 23, 20, 0.98), rgba(12, 11, 10, 0.98));
  box-shadow: var(--shadow-deep);
}

.booking-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3vw, 34px);
}

.booking-hero h1 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.booking-hero p:not(.eyebrow) {
  max-width: 46ch;
  margin-top: 22px;
  color: rgba(247, 241, 235, 0.74);
}

.booking-hero-photo,
.booking-side-photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--graphite-0);
}

.booking-hero-photo img {
  min-height: 330px;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.booking-form-panel,
.booking-sidebar,
.setup-banner {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(243, 72, 2, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(26, 23, 20, 0.98), rgba(17, 16, 14, 0.98));
  box-shadow: var(--shadow-deep);
}

.booking-form-panel {
  padding: clamp(28px, 4vw, 52px);
}

.booking-panel-head {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.booking-panel-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.booking-mode-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.booking-mode-button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: rgba(247, 241, 235, 0.72);
  background: transparent;
  transition:
    transform 260ms var(--ease),
    color 260ms var(--ease),
    background-color 260ms var(--ease),
    border-color 260ms var(--ease);
}

.booking-mode-button:hover,
.booking-mode-button.is-active {
  color: #fff5ef;
  border-color: rgba(243, 72, 2, 0.42);
  background: rgba(243, 72, 2, 0.14);
}

.booking-mode-button:active {
  transform: scale(0.985);
}

.booking-mode-panel[hidden] {
  display: none !important;
}

.booking-form {
  display: grid;
  gap: 28px;
}

.security-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.field,
.booking-sidebar {
  display: grid;
  gap: 12px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: rgba(247, 241, 235, 0.82);
  font-size: 0.8rem;
}

.field-label {
  display: inline-block;
  margin-bottom: 2px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field-hint {
  margin-top: -6px;
  color: rgba(247, 241, 235, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  outline: none;
  padding: 16px 18px;
  color: #fff5ef;
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 260ms var(--ease),
    background-color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(255, 245, 239, 0.24);
  background: rgba(255, 255, 255, 0.065);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(243, 72, 2, 0.58);
  box-shadow: 0 0 0 4px rgba(243, 72, 2, 0.09);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 245, 239, 0.74) 50%),
    linear-gradient(135deg, rgba(255, 245, 239, 0.74) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.field select option {
  color: var(--graphite-0);
  background: #fff5ef;
}

.field select option:checked {
  color: #fff5ef;
  background: var(--accent);
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(247, 241, 235, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent-field a {
  color: #fff5ef;
  text-decoration: underline;
  text-decoration-color: rgba(243, 72, 2, 0.6);
  text-underline-offset: 4px;
}

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

.service-option {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(15, 14, 13, 0.88);
  cursor: pointer;
  transition:
    transform 280ms var(--ease),
    border-color 280ms var(--ease),
    background-color 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.service-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option strong {
  color: #fff5ef;
  font-size: 0.86rem;
  line-height: 1.38;
  text-wrap: balance;
}

/* training page */
.training-main {
  display: grid;
  gap: clamp(34px, 5vw, 62px);
  padding-top: clamp(38px, 5vw, 70px);
}

.training-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 72, 2, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(26, 23, 20, 0.98), rgba(12, 11, 10, 0.98));
  box-shadow: var(--shadow-deep);
}

.training-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 3vw, 38px);
}

.training-hero h1 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  line-height: 0.94;
  text-wrap: balance;
}

.training-hero p:not(.eyebrow) {
  max-width: 42ch;
  margin-top: 22px;
  color: rgba(247, 241, 235, 0.74);
}

.training-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 24px;
  background: var(--graphite-0);
}

.training-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
}

.training-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 72, 2, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.02), rgba(8, 8, 8, 0.58));
}

.training-directions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

.training-card,
.training-note {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(243, 72, 2, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(26, 23, 20, 0.98), rgba(17, 16, 14, 0.98));
  box-shadow: var(--shadow-deep);
}

.training-card span {
  color: var(--accent);
  font-size: clamp(1.7rem, 3vw, 3.3rem);
  line-height: 0.9;
}

.training-card h2,
.training-note h2 {
  color: #fff5ef;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.22;
  text-wrap: balance;
}

.training-card p,
.training-note p {
  color: rgba(247, 241, 235, 0.72);
  font-size: 0.88rem;
}

.training-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.training-note {
  position: sticky;
  top: 120px;
}

.training-picker {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-option:hover,
.service-option:focus-within,
.service-option.is-selected {
  transform: translateY(-2px);
  border-color: rgba(243, 72, 2, 0.52);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.service-option.is-selected {
  background:
    radial-gradient(circle at top right, rgba(243, 72, 2, 0.16), transparent 34%),
    rgba(15, 14, 13, 0.96);
}

.service-option.is-selected::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(243, 72, 2, 0.12);
}

.booking-sidebar {
  padding: 18px;
}

.booking-side-photo {
  min-height: 290px;
}

.booking-summary-card {
  min-height: auto;
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.booking-summary-card h3 {
  color: #fff5ef;
}

.booking-summary-card p {
  color: rgba(247, 241, 235, 0.72);
  font-size: 0.88rem;
}

.booking-summary-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 245, 239, 0.1), transparent 36%),
    linear-gradient(145deg, rgba(243, 72, 2, 0.96), rgba(195, 55, 0, 0.98));
}

.booking-summary-accent p {
  color: #fff5ef;
}

.booking-hero-compact {
  display: block;
}

.booking-hero-compact .booking-hero-copy {
  max-width: 860px;
}

.booking-photo-guide {
  position: sticky;
  top: 120px;
  align-content: start;
}

.booking-poster-sidebar {
  position: sticky;
  top: 120px;
  align-content: start;
}

.booking-location-poster {
  overflow: hidden;
  border-radius: 28px;
  background: var(--graphite-0);
  box-shadow: var(--shadow-deep);
}

.booking-location-poster img {
  width: 100%;
  height: auto;
  display: block;
}

.interactive-location-photo {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 28px;
  background: var(--graphite-0);
  box-shadow: var(--shadow-deep);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.interactive-location-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.08);
}

.interactive-location-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.44) 48%, rgba(8, 8, 8, 0.1)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.72));
}

.photo-title {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 250px;
}

.photo-title span {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.photo-title strong {
  color: #fff5ef;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.88;
}

.photo-title small {
  color: rgba(247, 241, 235, 0.74);
  line-height: 1.5;
}

.photo-hotspot {
  border: 1px solid rgba(243, 72, 2, 0.44);
  appearance: none;
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 138px;
  padding: 12px 14px 12px 46px;
  border-radius: 18px;
  color: #fff5ef;
  text-align: left;
  background: rgba(15, 14, 13, 0.78);
  backdrop-filter: blur(14px);
  transition:
    transform 280ms var(--ease),
    background-color 280ms var(--ease),
    border-color 280ms var(--ease);
}

.photo-hotspot span {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 8px rgba(243, 72, 2, 0.16);
}

.photo-hotspot strong {
  font-size: 0.76rem;
  line-height: 1.2;
}

.photo-hotspot small {
  color: rgba(247, 241, 235, 0.7);
  line-height: 1.35;
}

.photo-hotspot:hover,
.photo-hotspot:focus-visible,
.photo-hotspot.is-active {
  transform: translateY(-3px);
  border-color: rgba(243, 72, 2, 0.8);
  background: rgba(36, 17, 8, 0.88);
}

.hotspot-building {
  top: 44%;
  right: 20px;
}

.hotspot-address {
  left: 20px;
  bottom: 82px;
}

.hotspot-office {
  right: 24px;
  bottom: 24px;
}

.photo-info-grid {
  display: grid;
  gap: 10px;
}

.photo-info-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.photo-info-grid span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(243, 72, 2, 0.48);
  border-radius: 50%;
  color: #fff5ef;
  background: rgba(243, 72, 2, 0.14);
  font-size: 0.68rem;
}

.photo-info-grid strong {
  color: #fff5ef;
  line-height: 1.3;
}

.photo-info-grid p {
  color: rgba(247, 241, 235, 0.7);
  line-height: 1.5;
}

.photo-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.photo-perks span {
  flex: 1 1 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(243, 72, 2, 0.32);
  border-radius: 999px;
  color: #fff5ef;
  background: rgba(243, 72, 2, 0.12);
  font-size: 0.72rem;
}

.setup-banner {
  padding: 20px 22px;
}

.setup-banner strong {
  display: block;
  margin-bottom: 8px;
  color: #fff5ef;
}

.setup-banner p {
  color: rgba(247, 241, 235, 0.74);
}

.status-line {
  min-height: 28px;
  color: rgba(247, 241, 235, 0.7);
  font-size: 0.86rem;
}

.status-line.is-success {
  color: #fff5ef;
}

.status-line.is-error {
  color: #ffb493;
}

/* static and final CTA */
.final-cta-section {
  padding-top: clamp(34px, 5vw, 72px);
}

.final-cta,
.static-page {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 72, 2, 0.16), transparent 28%),
    linear-gradient(145deg, #0b0b0b, #17120f 56%, #361304);
  color: #f7f1eb;
  box-shadow: var(--shadow-deep);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
}

.final-cta h2,
.static-page h1 {
  max-width: 13ch;
  margin-top: 12px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.94;
  text-wrap: balance;
}

.static-main {
  width: var(--container);
  margin-inline: auto;
  padding: clamp(44px, 6vw, 82px) 0;
}

.static-page {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(28px, 5vw, 64px);
}

.static-page p,
.static-page li {
  max-width: 74ch;
  color: rgba(247, 241, 235, 0.74);
  line-height: 1.75;
}

.static-page h2 {
  margin-bottom: 12px;
  color: #fff5ef;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.18;
}

.static-page ul,
.static-page ol {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 1.2rem;
}

.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* footer */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto) auto auto auto;
  align-items: center;
  gap: 18px 28px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(243, 72, 2, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(18, 17, 16, 0.96), rgba(12, 11, 10, 0.98));
  color: rgba(247, 241, 235, 0.68);
  box-shadow: var(--shadow-deep);
  font-size: 0.78rem;
}

.footer-brand {
  color: #fff5ef;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: rgba(247, 241, 235, 0.72);
  transition: color 260ms var(--ease);
}

.footer-links a:hover {
  color: #fff5ef;
}

/* motion */
.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 860ms var(--ease),
    transform 860ms var(--ease),
    filter 860ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.services-showcase .reveal:nth-child(2),
.advantage-grid .reveal:nth-child(2),
.studio-gallery .reveal:nth-child(2) {
  --reveal-delay: 80ms;
}

.services-showcase .reveal:nth-child(3),
.advantage-grid .reveal:nth-child(3),
.studio-gallery .reveal:nth-child(3) {
  --reveal-delay: 150ms;
}

.services-showcase .reveal:nth-child(4),
.advantage-grid .reveal:nth-child(4) {
  --reveal-delay: 220ms;
}

/* responsive */
@media (max-width: 1140px) {
  .hero-home,
  .services-showcase,
  .advantage-grid,
  .studio-gallery,
  .location-poster,
  .booking-hero,
  .booking-grid,
  .session-flow,
  .training-preview,
  .training-hero,
  .training-directions,
  .training-request-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: auto;
  }

  .service-tile-large,
  .studio-photo-main {
    grid-row: auto;
  }

  .hero-canvas-card > img,
  .studio-photo-main {
    min-height: 460px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .process-copy {
    position: relative;
    top: auto;
  }

  .training-note {
    position: relative;
    top: auto;
  }

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

  .studio-lounge-feature,
  .scroll-photo-stack > .scroll-photo:nth-child(2),
  .scroll-photo-stack > .scroll-photo:nth-child(3) {
    width: 100%;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  html {
    scroll-padding-top: 148px;
  }

  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    border-radius: 28px;
    padding: 12px;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .site-nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 10px 12px;
    border: 1px solid rgba(12, 12, 12, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .site-nav a.is-active {
    border-color: rgba(243, 72, 2, 0.34);
    background: rgba(243, 72, 2, 0.1);
  }

  .page-booking .site-nav a {
    border-color: rgba(12, 12, 12, 0.08);
    background: rgba(255, 255, 255, 0.46);
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 16px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-home-copy h1,
  .location-poster-copy h2,
  .booking-hero h1,
  .training-hero h1 {
    font-size: clamp(2.25rem, 10vw, 4rem);
  }

  .hero-canvas-card > img,
  .studio-photo,
  .studio-photo-main,
  .building-shot,
  .scroll-photo {
    min-height: 360px;
  }

  .booking-main {
    gap: 22px;
  }

  .booking-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-hero-photo img {
    max-height: 320px;
  }

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

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

  .booking-photo-guide,
  .booking-poster-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 18px, 1180px);
    --radius-xl: 26px;
    --radius-lg: 22px;
  }

  html {
    scroll-padding-top: 138px;
  }

  .site-header {
    width: min(100vw - 14px, 1180px);
    top: 8px;
    margin-top: 6px;
    gap: 10px;
    padding: 9px;
    border-radius: 24px;
  }

  .brand {
    width: 132px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.72rem;
  }

  .site-nav {
    gap: 8px;
    margin-inline: -1px;
    padding-bottom: 0;
  }

  .site-nav a {
    min-height: 36px;
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .section {
    padding: 42px 0;
  }

  main > .section:first-child,
  .booking-main {
    padding-top: 18px;
  }

  .hero-home-copy,
  .hero-home-stage,
  .service-tile,
  .advantage-card,
  .studio-photo,
  .location-poster,
  .map-frame,
  .booking-hero,
  .training-hero,
  .training-card,
  .training-note,
  .training-preview,
  .booking-form-panel,
  .booking-sidebar,
  .booking-summary-card,
  .site-footer,
  .process-step,
  .scroll-photo {
    border-radius: 22px;
  }

  .hero-home-copy {
    padding: 22px;
  }

  .hero-home-copy::before {
    inset: 14px;
    border-radius: 16px;
    background-size: 44px 44px;
  }

  .hero-home {
    gap: 12px;
  }

  .hero-home-copy h1 {
    max-width: 10ch;
    font-size: clamp(2.35rem, 12.6vw, 3.35rem);
    line-height: 0.94;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 26px;
  }

  .section-head h2,
  .process-copy h2,
  .training-preview h2,
  .final-cta h2 {
    max-width: none;
    font-size: clamp(1.78rem, 8.4vw, 2.8rem);
    line-height: 1;
  }

  .lead {
    margin-top: 18px;
    font-size: 0.9rem;
  }

  .hero-actions,
  .site-footer,
  .final-cta,
  .form-grid,
  .advantage-grid,
  .training-directions,
  .training-picker,
  .service-picker {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button,
  .site-footer .button {
    width: 100%;
  }

  .hero-tags span {
    flex: 1 1 calc(50% - 5px);
    justify-content: center;
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.66rem;
  }

  .hero-tags {
    margin-top: 20px;
  }

  .hero-canvas-card > img,
  .studio-photo,
  .studio-photo-main,
  .building-shot,
  .booking-hero-photo img,
  .training-hero-photo,
  .booking-side-photo {
    min-height: 300px;
  }

  .hero-canvas-card > img {
    min-height: 315px;
  }

  .hero-canvas-chip {
    top: 14px;
    left: 14px;
    min-height: 32px;
    padding-inline: 12px;
    font-size: 0.58rem;
  }

  .hero-canvas-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    gap: 8px;
    padding: 14px;
  }

  .service-tile,
  .advantage-card,
  .training-card,
  .process-step {
    min-height: auto;
  }

  .service-tile {
    grid-template-rows: auto;
    gap: 14px;
    padding: 22px;
  }

  .service-link {
    padding-top: 4px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .process-step span {
    font-size: 2.1rem;
  }

  .studio-lounge-feature {
    height: clamp(390px, 118vw, 520px);
    margin-bottom: 18px;
  }

  .studio-gallery-compact .studio-photo {
    min-height: 300px;
  }

  .location-poster-copy,
  .booking-form-panel,
  .booking-hero-copy,
  .training-hero-copy {
    padding: 18px;
  }

  .location-poster-copy h2,
  .booking-hero h1,
  .training-hero h1 {
    max-width: none;
    font-size: clamp(1.95rem, 9.4vw, 2.9rem);
  }

  .booking-hero {
    gap: 8px;
    padding: 10px;
  }

  .booking-hero-photo {
    display: none;
  }

  .booking-panel-head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .booking-panel-head h2 {
    font-size: 1.42rem;
  }

  .booking-form {
    gap: 18px;
  }

  .form-grid {
    gap: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
    padding: 14px 15px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 124px;
  }

  .service-option {
    min-height: 88px;
    gap: 10px;
    padding: 15px;
    border-radius: 18px;
  }

  .service-option strong {
    font-size: 0.82rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 310px;
  }

  .field-wide {
    grid-column: auto;
  }

  .interactive-location-photo,
  .interactive-location-photo img {
    min-height: 360px;
  }

  .photo-title {
    left: 18px;
    top: 18px;
  }

  .photo-hotspot {
    min-width: 0;
    max-width: calc(100% - 36px);
    padding: 11px 12px 11px 42px;
  }

  .hotspot-building {
    top: 42%;
    right: 18px;
  }

  .hotspot-address {
    left: 18px;
    bottom: 94px;
  }

  .hotspot-office {
    right: 18px;
    bottom: 18px;
  }

  .photo-info-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .photo-info-grid span {
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100vw - 14px, 1180px);
  }

  .brand {
    width: 116px;
  }

  .header-cta {
    min-width: 104px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .hero-home-copy,
  .location-poster-copy,
  .booking-form-panel,
  .booking-hero-copy,
  .training-hero-copy {
    padding: 16px;
  }

  .hero-home-copy h1 {
    font-size: clamp(2.08rem, 12.4vw, 2.82rem);
  }

  .button,
  .header-cta,
  .booking-mode-button {
    min-height: 46px;
  }

  .studio-lounge-feature {
    height: 380px;
  }

  .service-option {
    min-height: 82px;
  }

  .booking-mode-switch {
    gap: 6px;
    padding: 5px;
    border-radius: 18px;
  }

  .booking-mode-button {
    border-radius: 14px;
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 132px;
  }

  .header-cta {
    width: 100%;
  }

  .site-nav {
    grid-column: auto;
  }

  .hero-tags span {
    flex-basis: 100%;
  }

  .hero-home-copy h1,
  .booking-hero h1,
  .location-poster-copy h2 {
    font-size: clamp(1.95rem, 12vw, 2.45rem);
  }
}

@media (hover: none) {
  .button:hover,
  .header-cta:hover,
  .service-tile:hover,
  .advantage-card:hover,
  .booking-summary-card:hover,
  .service-option:hover {
    transform: none;
  }

  .hero-home-stage:hover .hero-canvas-card > img,
  .studio-photo:hover img,
  .building-shot:hover img,
  .booking-side-photo:hover img,
  .booking-hero-photo:hover img {
    transform: scale(1.035);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

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