/* Get Your Therapist — botanical editorial single-page */
:root {
  --forest-950: #0e2a24;
  --forest-900: #173f35;
  --forest-800: #245246;
  --forest-700: #35665a;
  --sage-500: #8b9d7f;
  --sage-300: #b9c3af;
  --sage-100: #dfe5d8;
  --ivory-50: #fbf8f1;
  --ivory-100: #f4f0e7;
  --ivory-200: #ebe4d6;
  --gold-500: #b49a58;
  --ink: #17372f;
  --muted: #62716b;
  --line: rgba(23, 63, 53, 0.15);
  --white: #fffdf8;
  --display: "Italiana", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 70px rgba(14, 42, 36, 0.09);
  --shadow-deep: 0 35px 90px rgba(9, 28, 24, 0.2);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory-50);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
::selection { background: var(--sage-300); color: var(--forest-950); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--forest-950);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid rgba(180, 154, 88, .85);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--sage-500), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: linear-gradient(180deg, rgba(251,248,241,.72), rgba(251,248,241,0));
  transition: background .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1), backdrop-filter .45s cubic-bezier(.16,1,.3,1);
}
.site-header.is-scrolled {
  background: rgba(251, 248, 241, .92);
  box-shadow: 0 1px 0 rgba(23, 63, 53, .09), 0 14px 36px rgba(14,42,36,.04);
  backdrop-filter: blur(20px);
}
.nav-shell {
  width: min(calc(100% - 64px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  flex-shrink: 0;
}
.brand-logo-shell {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 3px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(23,63,53,.13);
  border-radius: 14px;
  background: rgba(255,253,248,.88);
  box-shadow: 0 10px 26px rgba(14,42,36,.08), inset 0 1px 0 rgba(255,255,255,.72);
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}
.brand > span:not(.brand-logo-shell), .footer-brand > span:not(.footer-logo-shell) { display: grid; line-height: 1.05; }
.brand strong, .footer-brand strong {
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
}
.brand small, .footer-brand small {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: .09em;
  color: var(--muted);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #35554c;
  letter-spacing: -.01em;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  gap: 11px;
  min-height: 48px !important;
  padding: 0 20px;
  border: 1px solid rgba(23, 63, 53, .2);
  border-radius: 999px;
  background: rgba(255,253,248,.42);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
  transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.nav-cta span { color: var(--gold-500); transition: transform .3s cubic-bezier(.16,1,.3,1); }
.nav-cta:hover { background: var(--forest-900); color: var(--white); border-color: var(--forest-900); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(23,63,53,.13); }
.nav-cta:hover span { transform: translate(2px,-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 136px 0 72px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 34%, rgba(185,195,175,.26), transparent 27%),
    radial-gradient(circle at 8% 10%, rgba(180,154,88,.08), transparent 24%),
    linear-gradient(118deg, #fbf8f1 0%, #f7f2e9 58%, #eef1e7 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(490px, .92fr);
  align-items: center;
  gap: clamp(50px, 5.4vw, 82px);
}
.hero-copy { position: relative; z-index: 3; padding: 22px 0 10px; }
.hero-kicker-row {
  max-width: 690px;
  margin-bottom: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero-kicker-row .eyebrow { margin: 0; }
.hero-availability {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(23,63,53,.14);
  border-radius: 999px;
  background: rgba(255,253,248,.46);
  color: #61736c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 28px;
  height: 1px;
  background: var(--gold-500);
  flex: 0 0 auto;
}
.eyebrow.light { color: #d8dfd4; }
.eyebrow.light > span { background: #c7b477; }
.hero h1,
.section-heading h2,
.experience h2,
.how-heading h2,
.booking-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.06;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(60px, 5.25vw, 78px);
  line-height: 1.09;
  text-wrap: balance;
}
.hero h1 em,
.how-heading h2 em {
  font-style: italic;
  color: var(--sage-500);
}
.hero-lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: #526760;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.72;
}
.hero-tags {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-tags span {
  min-height: 34px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23,63,53,.12);
  border-radius: 999px;
  background: rgba(255,253,248,.34);
  color: #5e706a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-actions {
  margin-top: 29px;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .38s cubic-bezier(.16,1,.3,1), background .38s ease, color .38s ease, box-shadow .38s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest-900); color: var(--white); box-shadow: 0 14px 36px rgba(23,63,53,.18); }
.button-primary:hover { background: var(--forest-950); box-shadow: 0 18px 42px rgba(23,63,53,.22); }
.button-secondary {
  min-height: 52px;
  border-color: rgba(23,63,53,.19);
  background: rgba(255,253,248,.4);
  color: var(--forest-900);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.26);
}
.button-secondary span { color: var(--gold-500); }
.button-secondary:hover { background: rgba(255,253,248,.82); border-color: rgba(23,63,53,.3); box-shadow: 0 12px 28px rgba(23,63,53,.08); }
.button-cream { background: var(--ivory-100); color: var(--forest-950); width: 100%; border: 0; }
.button-cream:hover { background: #fffdf7; }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(23,63,53,.24);
  font-size: 14px;
  font-weight: 600;
}
.text-link span { color: var(--gold-500); }
.hero-notes {
  max-width: 650px;
  margin-top: 36px;
  padding: 14px 0;
  border: 1px solid rgba(23,63,53,.12);
  border-radius: 20px;
  background: rgba(255,253,248,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.hero-notes div { position: relative; min-width: 0; padding: 5px 18px; display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 9px; }
.hero-notes div + div { border-left: 1px solid rgba(23,63,53,.11); }
.hero-notes small { grid-column: 1 / -1; margin-bottom: 6px; color: #899890; font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.hero-notes strong { font-family: var(--display); font-size: 27px; font-weight: 400; line-height: 1; }
.hero-notes span { color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.35; letter-spacing: .055em; text-transform: uppercase; }

.hero-visual { position: relative; min-height: 615px; isolation: isolate; }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 40px -28px 8px 58px;
  border-radius: 52% 52% 34px 34px;
  background: linear-gradient(145deg, rgba(255,253,248,.58), rgba(185,195,175,.18));
  border: 1px solid rgba(23,63,53,.08);
  transform: rotate(3deg);
}
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -3;
  width: 330px;
  aspect-ratio: 1;
  right: 0;
  top: 70px;
  border-radius: 50%;
  background: rgba(185,195,175,.28);
  filter: blur(52px);
}
.hero-visual-label {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 8px;
  width: 178px;
  padding: 15px 17px;
  border: 1px solid rgba(23,63,53,.12);
  border-radius: 18px;
  background: rgba(251,248,241,.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 35px rgba(14,42,36,.08);
}
.hero-visual-label span { display: block; color: #71827b; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual-label strong { display: block; margin-top: 5px; font-family: var(--display); font-size: 20px; font-weight: 400; line-height: 1.18; }
.hero-photo {
  position: absolute;
  inset: 30px 20px 28px 64px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 238px 238px 32px 32px;
  box-shadow: 0 34px 86px rgba(9,28,24,.2), 0 1px 0 rgba(255,255,255,.35) inset;
  background: #d7ddd1;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,30,25,.54), transparent 42%);
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.8) contrast(.98); transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08); will-change: transform; }
.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}
.hero-photo figcaption > span { font-size: 12px; letter-spacing: .13em; opacity: .78; }
.hero-photo figcaption p { margin: 0; text-align: right; font-family: var(--display); font-size: 21px; line-height: 1.2; }
.botanical-line {
  position: absolute;
  z-index: -1;
  width: 205px;
  right: -40px;
  bottom: -6px;
  color: var(--gold-500);
  opacity: .53;
  transform: translate3d(0, var(--parallax-y, 0px), 0) rotate(5deg);
  will-change: transform;
}
.botanical-line path { fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.botanical-line path + path { fill: rgba(180,154,88,.09); }
.hero-service-card {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 7px;
  width: 218px;
  padding: 17px 18px 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 20px;
  background: rgba(14,42,36,.9);
  color: var(--white);
  box-shadow: 0 22px 50px rgba(14,42,36,.18);
  backdrop-filter: blur(12px);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, background .45s ease;
}
.hero-visual:hover .hero-service-card {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(14,42,36,.22);
  background: rgba(14,42,36,.94);
}
.hero-service-card span { display: block; color: #bdcbc4; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-service-card strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 20px; font-weight: 400; line-height: 1.22; }
.hero-service-card i { display: block; margin-top: 11px; color: #b7a66f; font-size: 12px; font-style: normal; font-weight: 600; }
.hero-seal {
  position: absolute;
  z-index: 6;
  left: 10px;
  bottom: 17px;
  width: 112px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--forest-900);
  color: var(--ivory-100);
  box-shadow: 0 18px 44px rgba(23,63,53,.22);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}
.hero-seal::before,
.hero-seal::after { content: ""; position: absolute; border-radius: inherit; border: 1px solid rgba(255,255,255,.22); }
.hero-seal::before { inset: 7px; }
.hero-seal::after { inset: 13px; }
.hero-seal > span {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 5.8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: center;
  color: transparent;
  user-select: none;
}
.hero-seal svg { width: 43px; height: 43px; fill: var(--sage-300); }
.hero-orbit { position: absolute; z-index: 0; border: 1px solid rgba(139,157,127,.18); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 460px; height: 460px; left: -315px; top: 118px; }
.hero-orbit-two { width: 300px; height: 300px; right: -205px; top: 170px; }

.intro-strip { overflow: hidden; border-top: 1px solid rgba(23,63,53,.06); border-bottom: 1px solid var(--line); background: rgba(244,240,231,.72); }
.marquee-track {
  width: max-content;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 34s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.marquee-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.marquee-group span { font-family: var(--display); font-size: 25px; letter-spacing: .1em; color: #5c716a; }
.marquee-group i { font-style: normal; font-size: 12px; color: var(--gold-500); opacity: .85; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-25%, 0, 0); }
}

.section { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.treatments { padding-block: 112px 122px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 62px;
}
.section-heading h2,
.how-heading h2 { font-size: clamp(48px, 5vw, 72px); }
.section-heading > p { margin: 0 0 6px; color: var(--muted); max-width: 470px; }
.treatment-carousel-shell { position: relative; }
.treatment-carousel-toolbar {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
}
.treatment-progress {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23,63,53,.11);
}
.treatment-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest-800), var(--gold-500));
  transform: scaleX(.2);
  transform-origin: left center;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.treatment-carousel-status {
  min-width: 62px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  color: #7b8984;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.treatment-carousel-status span:first-child { color: var(--forest-900); font-family: var(--display); font-size: 23px; font-weight: 400; letter-spacing: 0; }
.treatment-carousel-status i { color: var(--gold-500); font-style: normal; }
.treatment-carousel-controls { display: flex; gap: 8px; }
.carousel-control {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23,63,53,.18);
  border-radius: 50%;
  background: rgba(255,253,248,.7);
  color: var(--forest-900);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s ease, color .3s ease, border-color .3s ease, opacity .3s ease;
}
.carousel-control span { font-size: 19px; line-height: 1; transform: translateY(-1px); }
.carousel-control:hover:not(:disabled) { transform: translateY(-2px); background: var(--forest-900); border-color: var(--forest-900); color: var(--white); }
.carousel-control:disabled { opacity: .32; cursor: default; }

.treatment-viewport {
  position: relative;
  margin-inline: -2px;
  padding: 14px 2px 34px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  cursor: grab;
  touch-action: pan-x pan-y pinch-zoom;
}
.treatment-viewport::-webkit-scrollbar { display: none; }
.treatment-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.treatment-list {
  display: flex;
  gap: 24px;
}
.treatment-card {
  position: relative;
  flex: 0 0 30%;
  min-width: 0;
  min-height: 540px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 218px minmax(0,1fr);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background: var(--forest-950);
  color: var(--white);
  box-shadow: 0 26px 64px rgba(9,28,24,.17), inset 0 1px 0 rgba(255,255,255,.06);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .45s ease;
}
.treatment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.treatment-card.is-active { transform: translateY(-3px); border-color: rgba(199,180,119,.34); box-shadow: 0 32px 76px rgba(9,28,24,.25), inset 0 1px 0 rgba(255,255,255,.08); }
.treatment-art {
  position: relative;
  overflow: hidden;
  background: #183b32;
  border-bottom: 1px solid rgba(255,255,255,.09);
  isolation: isolate;
}
.treatment-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,28,23,.12) 0%, rgba(8,28,23,.08) 42%, rgba(8,28,23,.72) 100%),
    linear-gradient(120deg, rgba(23,63,53,.12), rgba(180,154,88,.08));
}
.treatment-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.78) contrast(.98) brightness(.92);
  transform: scale(1.015);
  transition: transform .65s cubic-bezier(.16,1,.3,1), filter .45s ease;
}
.treatment-card:nth-child(1) .treatment-art img { object-position: center 58%; }
.treatment-card:nth-child(2) .treatment-art img { object-position: center 47%; }
.treatment-card:nth-child(3) .treatment-art img { object-position: center 48%; }
.treatment-card:nth-child(4) .treatment-art img { object-position: center 50%; }
.treatment-card:nth-child(5) .treatment-art img { object-position: center 45%; }
.treatment-index {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(9,30,25,.5);
  color: #e7eee9;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(5,20,17,.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.art-word {
  position: absolute;
  left: 21px;
  bottom: 16px;
  z-index: 3;
  color: rgba(255,255,255,.74);
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  letter-spacing: -.025em;
  text-shadow: 0 2px 18px rgba(6,22,18,.32);
}
.treatment-badge {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(199,180,119,.38);
  border-radius: 999px;
  background: rgba(9,30,25,.38);
  color: #dfcf98;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(5,20,17,.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.treatment-body {
  min-height: 0;
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
}
.kicker { margin: 0 0 8px; color: var(--gold-500); font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: color .3s ease; }
.treatment-name h3 { margin: 0; font-family: var(--display); font-size: clamp(30px,2.4vw,38px); font-weight: 400; line-height: 1.03; letter-spacing: -.025em; }
.treatment-copy { margin: 18px 0 0; color: #b7c6bf; font-size: 14px; line-height: 1.67; transition: color .3s ease; }
.treatment-footer {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.13);
}
.treatment-meta { display: grid; justify-items: start; gap: 7px; }
.treatment-meta > span { color: #94aaa1; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: color .3s ease; }
.treatment-meta strong { font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1; white-space: nowrap; }
.treatment-meta strong small { font-size: .58em; }
.card-select {
  min-width: 88px;
  min-height: 48px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: border-color .32s ease, background .32s ease, color .32s ease, transform .36s cubic-bezier(.16,1,.3,1), box-shadow .32s ease;
}
.card-select span { color: var(--gold-500); }
.card-select:hover { transform: translateY(-2px); background: var(--ivory-100); border-color: var(--ivory-100); color: var(--forest-950); box-shadow: 0 12px 28px rgba(5,20,17,.2); }
.treatment-drag-hint {
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #7b8984;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.treatment-drag-hint span { color: var(--gold-500); font-size: 17px; }
@media (hover: hover) and (pointer: fine) {
  .treatment-card:hover { transform: translateY(-8px); border-color: rgba(199,180,119,.32); box-shadow: 0 34px 78px rgba(9,28,24,.25), inset 0 1px 0 rgba(255,255,255,.08); }
  .treatment-card:hover .treatment-art img { transform: scale(1.06); filter: saturate(.84) contrast(1) brightness(.95); }
}

.experience {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(86px, 7vw, 112px) 0 clamp(94px, 8vw, 126px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 14%, rgba(185,195,175,.11), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(180,154,88,.08), transparent 24%),
    var(--forest-950);
  color: var(--white);
}
.experience::before {
  content: "";
  position: absolute;
  inset: 28px 0 auto;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(199,180,119,.2), transparent);
}
.experience-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px,.84fr) minmax(0,1.16fr);
  align-items: center;
  gap: clamp(44px,6vw,92px);
}
.experience-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  aspect-ratio: 1;
  right: -160px;
  bottom: -170px;
  border: 1px solid rgba(199,180,119,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(185,195,175,.025), 0 0 0 140px rgba(185,195,175,.018);
  pointer-events: none;
}
.experience-media {
  position: relative;
  min-height: 0;
  aspect-ratio: .88;
  max-height: 680px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 36px;
  background: #183b32;
  box-shadow: 0 38px 86px rgba(5,20,17,.29), inset 0 1px 0 rgba(255,255,255,.08);
  isolation: isolate;
}
.experience-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  pointer-events: none;
}
.experience-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,22,18,.08) 15%, rgba(6,22,18,.08) 46%, rgba(6,22,18,.72) 100%),
    linear-gradient(115deg, rgba(14,42,36,.08), rgba(180,154,88,.08));
}
.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(.72) contrast(.98) brightness(.95);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.075);
  will-change: transform;
}
.media-label {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 22px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.media-label span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  background: rgba(9,30,25,.38);
  color: #eef2ef;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 22px rgba(5,20,17,.16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.experience-media-caption {
  position: absolute;
  z-index: 4;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 17px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 20px;
  background: rgba(9,30,25,.48);
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(5,20,17,.18);
}
.experience-media-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199,180,119,.46);
  border-radius: 50%;
  color: #dccb92;
  font-family: var(--display);
  font-size: 18px;
}
.experience-media-caption > span:last-child { display: grid; gap: 2px; }
.experience-media-caption small { color: #aebeb7; font-size: 12px; line-height: 1.45; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.experience-media-caption strong { font-family: var(--display); font-size: 20px; font-weight: 400; line-height: 1.15; }
.experience-copy {
  position: relative;
  z-index: 2;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.experience-copy-head {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.experience-copy-head .eyebrow { margin: 0; }
.experience-service-tag {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(199,180,119,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #aebeb7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.experience h2 {
  max-width: 700px;
  font-size: clamp(46px,4.4vw,68px);
  line-height: 1.1;
  text-wrap: balance;
}
.experience-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px 0 0;
  color: #b9c8c1;
  font-size: 15px;
  line-height: 1.78;
}
.experience-points {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}
.experience-points > div {
  min-height: 112px;
  padding: 18px;
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  align-items: start;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.experience-points > div:first-child {
  grid-column: 1 / -1;
  min-height: 104px;
  background: linear-gradient(120deg, rgba(255,255,255,.06), rgba(180,154,88,.04));
}
.experience-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199,180,119,.3);
  border-radius: 50%;
  color: #d4c38c;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0;
}
.experience-points p { margin: 0; color: #b9c8c1; font-size: 14px; line-height: 1.62; }
.experience-points strong { color: var(--white); font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .experience-points > div {
    transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
  }
  .experience-points > div:hover {
    transform: translateY(-2px);
    border-color: rgba(199,180,119,.24);
    background: rgba(255,255,255,.055);
    box-shadow: 0 16px 38px rgba(5,20,17,.12), inset 0 1px 0 rgba(255,255,255,.055);
  }
}

.how {
  position: relative;
  padding-block: 112px 120px;
}
.how-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(38px,4.5vw,64px);
  border: 1px solid rgba(23,63,53,.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 0%, rgba(185,195,175,.22), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(180,154,88,.11), transparent 28%),
    linear-gradient(145deg, rgba(255,253,248,.96), rgba(244,240,231,.96));
  box-shadow: 0 30px 80px rgba(14,42,36,.08), inset 0 1px 0 rgba(255,255,255,.72);
  isolation: isolate;
}
.how-shell::before,
.how-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(23,63,53,.075);
  border-radius: 50%;
  pointer-events: none;
}
.how-shell::before { width: 320px; height: 320px; right: -190px; top: -170px; box-shadow: 0 0 0 54px rgba(139,157,127,.03); }
.how-shell::after { width: 210px; height: 210px; left: -132px; bottom: -118px; box-shadow: 0 0 0 44px rgba(180,154,88,.025); }
.how-top {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(300px,.55fr);
  align-items: end;
  gap: clamp(42px,6vw,86px);
}
.how-heading { max-width: 760px; }
.how-heading h2 { text-wrap: balance; }
.how-heading .eyebrow { margin-bottom: 22px; }
.how-note {
  align-self: stretch;
  min-height: 190px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  background: linear-gradient(145deg, #153d33, var(--forest-950));
  color: var(--white);
  box-shadow: 0 24px 54px rgba(9,28,24,.17), inset 0 1px 0 rgba(255,255,255,.06);
}
.how-note-index { color: #d7c78d; font-family: var(--display); font-size: 22px; letter-spacing: .05em; }
.how-note p { margin: 0; color: #bdc9c3; font-size: 14px; line-height: 1.65; }
.how-note a {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f0e7;
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  font-weight: 700;
}
.how-note a span { color: #d1bd77; }
.steps-wrap { position: relative; margin-top: 54px; }
.steps-rail {
  position: relative;
  height: 36px;
  margin: 0 18px 15px;
}
.steps-rail > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 17px;
  height: 1px;
  background: linear-gradient(90deg, rgba(23,63,53,.18), rgba(180,154,88,.48), rgba(23,63,53,.18));
}
.steps-rail i {
  position: absolute;
  top: 12px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ivory-100);
  border-radius: 50%;
  background: var(--forest-800);
  box-shadow: 0 0 0 1px rgba(23,63,53,.16);
}
.steps-rail i:nth-of-type(1) { left: 0; }
.steps-rail i:nth-of-type(2) { left: 50%; transform: translate3d(-50%,0,0); background: var(--gold-500); }
.steps-rail i:nth-of-type(3) { right: 0; }
.steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.step-card {
  position: relative;
  min-width: 0;
  min-height: 390px;
  overflow: visible;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(23,63,53,.12);
  border-radius: 28px;
  background: rgba(255,253,248,.82);
  box-shadow: 0 20px 48px rgba(14,42,36,.065), inset 0 1px 0 rgba(255,255,255,.72);
  isolation: isolate;
  transition: transform .42s cubic-bezier(.16,1,.3,1), border-color .35s ease, box-shadow .42s ease, background .35s ease;
}
.step-card::before {
  position: absolute;
  z-index: -1;
  right: 8px;
  bottom: -8px;
  color: rgba(23,63,53,.032);
  font-family: var(--display);
  font-size: 132px;
  line-height: 1;
  pointer-events: none;
}
.step-card:nth-child(1)::before { content: "01"; }
.step-card:nth-child(2)::before { content: "02"; }
.step-card:nth-child(3)::before { content: "03"; }
.step-card:nth-child(2) { background: linear-gradient(145deg, rgba(239,242,232,.92), rgba(255,253,248,.86)); }
.step-card:nth-child(3) { background: linear-gradient(145deg, rgba(255,253,248,.86), rgba(241,235,221,.88)); }
.step-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.step-no { color: #6f827a; font-family: var(--display); font-size: 21px; line-height: 1; letter-spacing: .04em; }
.step-label {
  padding: 7px 10px;
  border: 1px solid rgba(23,63,53,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  color: #6e7f79;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.step-visual {
  width: 96px;
  height: 96px;
  margin: 34px 0 28px;
  display: grid;
  place-items: center;
  border-radius: 30px 30px 30px 10px;
  background: linear-gradient(145deg, var(--forest-800), var(--forest-950));
  color: #e7ddbd;
  box-shadow: 0 20px 42px rgba(14,42,36,.17), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-radius .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.step-visual svg { width: 66px; height: 66px; }
.step-visual svg * { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.step-visual svg path:first-of-type:not(:only-child) { stroke: #d8c47f; }
.step-copy { position: relative; z-index: 2; }
.step-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(30px,2.4vw,36px); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; text-wrap: balance; }
.step-copy p { max-width: 340px; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.68; }
.step-foot {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(23,63,53,.11);
  color: #71817b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.step-foot i { color: var(--gold-500); font-size: 18px; font-style: normal; line-height: 1; }
.how-bottom {
  margin-top: 20px;
  padding: 18px 20px 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(23,63,53,.11);
  border-radius: 24px;
  background: rgba(255,253,248,.55);
}
.how-bottom > div { display: flex; align-items: center; gap: 13px; }
.how-bottom > div > span { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: rgba(180,154,88,.12); color: var(--gold-500); }
.how-bottom p { margin: 0; color: #536861; font-size: 14px; font-weight: 600; }
.how-bottom .button { min-height: 48px; flex: 0 0 auto; }
@media (hover: hover) and (pointer: fine) {
  .step-card:hover {
    transform: translateY(-7px);
    border-color: rgba(180,154,88,.28);
    background: rgba(255,253,248,.96);
    box-shadow: 0 30px 64px rgba(14,42,36,.11), inset 0 1px 0 rgba(255,255,255,.86);
  }
  .step-card:hover .step-visual {
    transform: translateY(-3px) rotate(-3deg);
    border-radius: 34px 12px 34px 34px;
    box-shadow: 0 26px 52px rgba(14,42,36,.21), inset 0 1px 0 rgba(255,255,255,.1);
  }
}

.brand-story {
  position: relative;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: minmax(390px,.82fr) minmax(0,1.18fr);
  align-items: stretch;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(23,63,53,.11);
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 8%, rgba(185,195,175,.19), transparent 25%),
    linear-gradient(145deg, #f8f4eb, #efe9dc);
  box-shadow: 0 34px 86px rgba(14,42,36,.1), inset 0 1px 0 rgba(255,255,255,.72);
  isolation: isolate;
}
.brand-story::before,
.brand-story::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(23,63,53,.07);
  border-radius: 50%;
  pointer-events: none;
}
.brand-story::before { width: 260px; height: 260px; right: -126px; top: -132px; box-shadow: 0 0 0 48px rgba(139,157,127,.025); }
.brand-story::after { width: 170px; height: 170px; right: 22%; bottom: -112px; box-shadow: 0 0 0 42px rgba(180,154,88,.022); }
.story-identity {
  position: relative;
  min-width: 0;
  padding: 30px;
  display: grid;
  grid-template-rows: auto minmax(0,1fr) auto;
  gap: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(185,195,175,.12), transparent 28%),
    linear-gradient(150deg, #173f35, #0e2a24 76%);
  color: var(--white);
}
.story-identity::after {
  content: "GYT";
  position: absolute;
  right: -6px;
  bottom: -31px;
  color: rgba(255,255,255,.028);
  font-family: var(--display);
  font-size: 126px;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.story-identity-head,
.story-identity-foot,
.story-copy-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.story-identity-head {
  color: #c5d2cb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.story-identity-head small {
  padding: 7px 10px;
  border: 1px solid rgba(199,180,119,.28);
  border-radius: 999px;
  color: #d9c98f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}
.story-logo-canvas {
  position: relative;
  z-index: 2;
  min-height: 385px;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 28px;
  background: #f7f4ed;
  box-shadow: 0 24px 56px rgba(5,20,17,.22), inset 0 1px 0 rgba(255,255,255,.74);
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.story-logo-canvas::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(23,63,53,.09);
  border-radius: 20px;
  pointer-events: none;
}
.story-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  filter: saturate(.92) contrast(.99);
}
.story-identity-foot {
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.story-identity-foot > div { min-width: 0; display: grid; gap: 5px; }
.story-identity-foot small {
  color: #8fa69b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-identity-foot strong {
  color: #edf1ee;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.15;
}
.story-identity-foot > span {
  flex: 0 0 auto;
  color: #b9a96f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.story-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(52px,6vw,84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-copy-head { margin-bottom: 28px; }
.story-copy-head .eyebrow { margin: 0; }
.story-philosophy {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(23,63,53,.12);
  border-radius: 999px;
  background: rgba(255,253,248,.48);
  color: #72827c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.story-copy blockquote {
  margin: 0;
  max-width: 760px;
  color: #153b31;
  font-family: var(--display);
  font-size: clamp(42px,3.85vw,58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.story-copy-bottom {
  max-width: 660px;
  margin-top: 36px;
  padding-top: 26px;
  display: grid;
  gap: 20px;
  border-top: 1px solid rgba(23,63,53,.12);
}
.story-note { max-width: 590px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.story-dna { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.story-dna span {
  min-height: 32px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23,63,53,.11);
  border-radius: 999px;
  background: rgba(255,253,248,.46);
  color: #60736b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .045em;
}
@media (hover: hover) and (pointer: fine) {
  .story-identity:hover .story-logo-canvas {
    transform: translateY(-4px);
    box-shadow: 0 30px 66px rgba(5,20,17,.26), inset 0 1px 0 rgba(255,255,255,.78);
  }
}

.booking { width: 100%; max-width: none; padding: 0; background: var(--forest-900); }
.booking-panel {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding-block: 110px 116px;
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(460px,1.14fr);
  gap: clamp(60px,9vw,134px);
  color: var(--white);
}
.booking-intro h2 { max-width: 620px; font-size: clamp(48px,5vw,70px); }
.booking-intro > p:not(.eyebrow) { max-width: 520px; margin: 28px 0 0; color: #c3d0ca; }
.booking-price { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.17); display: grid; grid-template-columns: 1fr auto; gap: 5px 20px; align-items: end; }
.booking-price span { color: #aebdb6; font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.booking-price strong { grid-column: 2; grid-row: 1 / span 2; font-family: var(--display); font-size: 40px; font-weight: 400; line-height: 1; }
.booking-price small { color: #d1dad6; font-size: 13px; }
.booking-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px 18px; align-content: start; }
.field { display: grid; gap: 8px; }
.field.full, .button.full, .form-status.full { grid-column: 1 / -1; }
.field label { color: #dbe4df; font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.field label span { color: #8fa59c; font-weight: 500; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.055);
  color: var(--white);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8fa49b; }
.field select option { color: var(--ink); background: var(--white); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: rgba(199,180,119,.85); background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px rgba(199,180,119,.12); }
.form-status { margin: -6px 0 0; color: #9fb1a9; font-size: 13px; line-height: 1.55; }
.form-status.is-success { color: #e6dfb9; }
.form-status.is-error { color: #ffd1c8; }

.location {
  position: relative;
  padding-block: clamp(88px, 8vw, 124px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 7% 12%, rgba(185,195,175,.2), transparent 28%),
    radial-gradient(circle at 94% 82%, rgba(180,154,88,.12), transparent 25%),
    linear-gradient(135deg, #fbf8f1 0%, #f4f0e7 58%, #edf1e7 100%);
}
.location::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  aspect-ratio: 1;
  left: -270px;
  bottom: -250px;
  border: 1px solid rgba(23,63,53,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(139,157,127,.025), 0 0 0 144px rgba(139,157,127,.018);
  pointer-events: none;
}
.location-shell {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(520px,1.1fr);
  align-items: center;
  gap: clamp(52px,7vw,98px);
}
.location-copy { min-width: 0; }
.location-copy-head {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.location-copy-head .eyebrow { margin: 0; }
.location-status {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23,63,53,.13);
  border-radius: 999px;
  background: rgba(255,253,248,.62);
  color: #667a72;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.location-copy h2 {
  margin: 0;
  max-width: 650px;
  font-family: var(--display);
  font-size: clamp(48px,4.8vw,68px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.location-copy h2 em { color: var(--sage-500); font-style: italic; }
.location-copy > p {
  max-width: 590px;
  margin: 27px 0 0;
  color: #586c65;
  font-size: 15px;
  line-height: 1.76;
}
.location-facts {
  margin-top: 34px;
  padding-block: 18px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid rgba(23,63,53,.13);
  border-bottom: 1px solid rgba(23,63,53,.13);
}
.location-facts > div { min-width: 0; padding-inline: 17px; display: grid; gap: 6px; }
.location-facts > div:first-child { padding-left: 0; }
.location-facts > div + div { border-left: 1px solid rgba(23,63,53,.12); }
.location-facts small {
  color: #81918b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.location-facts strong {
  color: var(--forest-950);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.18;
}
.location-actions { margin-top: 28px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.location-whatsapp { background: rgba(255,253,248,.68); }
.location-phone {
  width: max-content;
  max-width: 100%;
  min-height: 48px;
  margin-top: 18px;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 9px 13px;
  color: #63766f;
}
.location-phone span { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.location-phone strong { color: var(--forest-900); font-size: 15px; }
.location-phone::after {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), rgba(180,154,88,.12));
}
.location-map-card {
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background: linear-gradient(145deg, #173f35, #0e2a24 78%);
  color: var(--white);
  box-shadow: 0 36px 88px rgba(9,28,24,.21), inset 0 1px 0 rgba(255,255,255,.07);
}
.location-map-top,
.location-map-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.location-map-top { padding: 2px 4px 16px; }
.location-map-top > div { min-width: 0; display: grid; gap: 3px; }
.location-map-top small {
  color: #9eb0a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.location-map-top strong { color: #edf2ef; font-family: var(--display); font-size: 19px; font-weight: 400; line-height: 1.2; }
.location-map-top > span { flex: 0 0 auto; color: #cbb979; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.location-map-frame {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: #dfe5d8;
}
.location-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.76) contrast(.96) sepia(.04);
}
.location-map-badge {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  min-width: 152px;
  padding: 12px 14px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 17px;
  background: rgba(9,30,25,.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(5,20,17,.2);
}
.location-map-badge span { color: #aebfb7; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.location-map-badge strong { color: var(--white); font-family: var(--display); font-size: 19px; font-weight: 400; }
.location-map-foot { padding: 17px 4px 2px; }
.location-map-foot > span { color: #d3c184; font-family: var(--display); font-size: 22px; letter-spacing: .08em; }
.location-map-foot p { flex: 1; margin: 0; color: #aebeb7; font-size: 12px; text-align: center; }
.location-map-foot a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #eef2ef;
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-size: 12px;
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .location-map-card { transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease; }
  .location-map-card:hover { transform: translateY(-4px); box-shadow: 0 42px 96px rgba(9,28,24,.25), inset 0 1px 0 rgba(255,255,255,.08); }
}

.site-footer {
  min-height: 150px;
  padding: 38px max(32px, calc((100vw - var(--max))/2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 46px;
  background: var(--forest-950);
  border-top: 1px solid rgba(255,255,255,.12);
  color: #d9e2dd;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-shell {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  padding: 3px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: #f5f1e8;
}
.footer-brand-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 11px; }
.footer-brand small { color: #879d93; line-height: 1.45; }
.site-footer > p { margin: 0; color: #91a69c; font-size: 12px; }
.site-footer > a { min-height: 44px; display: inline-flex; align-items: center; color: #d8e0dc; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.22); }

.reveal { opacity: 1; transform: none; }
.reveal.is-revealing { will-change: transform, opacity, filter; }
.reveal.is-visible { will-change: auto; }
[data-parallax-speed] { --parallax-y: 0px; }


@media (max-width: 1100px) {
  .nav-shell, .hero-grid, .section, .booking-panel { width: min(calc(100% - 48px), var(--max)); }
  .hero { min-height: auto; padding-top: 124px; }
  .hero-grid { grid-template-columns: minmax(0,.96fr) minmax(420px,1.04fr); gap: 42px; }
  .hero-kicker-row { margin-bottom: 23px; }
  .hero-availability { display: none; }
  .hero-visual { min-height: 560px; }
  .hero-photo { inset: 32px 12px 28px 48px; }
  .hero-visual-label { right: -4px; }
  .hero-service-card { right: -6px; width: 200px; }
  .hero-notes { margin-top: 34px; }
  .treatment-card { flex-basis: calc((100% - 44px) / 3); min-height: 520px; }
  .treatment-body { padding: 25px 24px 24px; }
  .experience-stage { grid-template-columns: minmax(340px,.9fr) minmax(0,1.1fr); gap: 42px; }
  .experience h2 { font-size: clamp(44px,5vw,56px); }
  .experience-service-tag { display: none; }
  .booking-panel { grid-template-columns: minmax(0,.85fr) minmax(420px,1.15fr); gap: 58px; }
  .location-shell { grid-template-columns: minmax(0,.9fr) minmax(440px,1.1fr); gap: 44px; }
  .location-map-frame { min-height: 420px; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 72px; }
  .nav-shell { width: calc(100% - 40px); min-height: 72px; }
  .brand strong { font-size: 11px; }
  .brand small { display: none; }
  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(251,248,241,.82);
    display: grid;
    place-content: center;
    gap: 6px;
    z-index: 120;
  }
  .menu-toggle > span:not(.sr-only) { width: 18px; height: 1px; background: var(--forest-900); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    padding: max(104px, calc(env(safe-area-inset-top) + 88px)) 28px max(34px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: var(--ivory-100);
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translate3d(0, 0, 0); }
  .site-nav a { min-height: 58px; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 26px; font-weight: 400; }
  .site-nav .nav-cta { margin-top: 18px; min-height: 54px; justify-content: center; background: var(--forest-900); color: var(--white); border: 0; font-family: var(--sans); font-size: 13px; font-weight: 700; }
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
  body.menu-open .nav-shell { position: relative; z-index: 120; }

  .hero { padding: 112px 0 56px; }
  .hero-grid { width: calc(100% - 40px); grid-template-columns: 1fr; gap: 38px; }
  .hero-copy { max-width: 760px; padding-top: 18px; }
  .hero-kicker-row { max-width: 680px; }
  .hero h1 { font-size: clamp(54px,9vw,72px); line-height: 1.09; }
  .hero-lede { max-width: 630px; }
  .hero-tags { max-width: 650px; }
  .hero-notes { max-width: 650px; }
  .hero-visual { min-height: 650px; width: min(100%, 680px); justify-self: end; }
  .hero-photo { inset: 28px 28px 34px 72px; border-radius: 260px 260px 28px 28px; }
  .hero-visual-label { top: 8px; right: 12px; }
  .hero-service-card { right: 4px; bottom: 14px; }
  .hero-seal { left: 22px; bottom: 24px; }
  .section { width: calc(100% - 40px); }
  .treatments { padding-block: 92px 104px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 48px; }
  .section-heading > p { max-width: 650px; }
  .treatment-carousel-toolbar { grid-template-columns: minmax(150px,1fr) auto auto; }
  .treatment-list { gap: 22px; }
  .treatment-card { flex-basis: calc((100% - 22px) / 2); min-height: 510px; }
  .treatment-art { min-height: 205px; }
  .treatment-body { padding: 24px; }
  .treatment-name h3 { font-size: 33px; }
  .experience { padding-block: 80px 88px; }
  .experience-stage { grid-template-columns: 1fr; gap: 42px; }
  .experience-media { width: min(100%,680px); aspect-ratio: 16 / 10; max-height: none; justify-self: center; }
  .experience-copy { padding: 0; }
  .experience-copy-head { margin-bottom: 20px; }
  .experience-points { max-width: 720px; }
  .how { padding-block: 88px 96px; }
  .how-shell { padding: 38px; border-radius: 32px; }
  .how-top { grid-template-columns: 1fr; gap: 28px; }
  .how-note { min-height: 0; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 22px; }
  .how-note p { max-width: 520px; }
  .steps-wrap { margin-top: 42px; }
  .steps-rail { display: none; }
  .steps { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
  .step-card { min-height: 360px; }
  .step-card:nth-child(3) { grid-column: 1 / -1; min-height: 300px; display: grid; grid-template-columns: auto minmax(0,1fr); grid-template-rows: auto 1fr auto; column-gap: 28px; }
  .step-card:nth-child(3) .step-card-head { grid-column: 1 / -1; }
  .step-card:nth-child(3) .step-visual { grid-column: 1; grid-row: 2; margin: 28px 0; align-self: center; }
  .step-card:nth-child(3) .step-copy { grid-column: 2; grid-row: 2; align-self: center; }
  .step-card:nth-child(3) .step-foot { grid-column: 1 / -1; }
  .how-bottom { margin-top: 16px; }
  .brand-story { margin-bottom: 96px; grid-template-columns: 1fr; min-height: 0; border-radius: 32px; }
  .story-identity { padding: 28px; gap: 22px; }
  .story-logo-canvas { min-height: 400px; }
  .story-copy { padding: 46px 44px 52px; }
  .story-copy blockquote { max-width: 720px; font-size: clamp(40px,6.8vw,54px); }
  .story-copy-bottom { max-width: 700px; }
  .booking-panel { width: calc(100% - 40px); grid-template-columns: 1fr; padding-block: 88px 94px; gap: 56px; }
  .booking-intro { max-width: 720px; }
  .booking-form { max-width: 720px; }
  .location { padding-block: 80px 88px; }
  .location-shell { grid-template-columns: 1fr; gap: 42px; }
  .location-copy { max-width: 720px; }
  .location-map-card { width: min(100%,760px); }
  .location-map-frame { min-height: 430px; }
  .site-footer { padding-inline: 24px; grid-template-columns: 1fr auto; }
  .site-footer > p { display: none; }
}

@media (max-width: 600px) {
  .nav-shell, .hero-grid, .section, .booking-panel { width: calc(100% - 32px); }
  .nav-shell { min-height: 68px; }
  .brand-logo-shell { width: 42px; height: 42px; flex-basis: 42px; padding: 2px; border-radius: 12px; }
  .brand-logo { border-radius: 9px; }
  .brand strong { font-size: 11px; letter-spacing: .1em; }
  .site-header.is-scrolled { background: rgba(251,248,241,.94); }
  .menu-toggle { width: 44px; height: 44px; }

  .hero { padding-top: 94px; padding-bottom: 42px; }
  .hero-grid { gap: 30px; }
  .hero-copy { padding-top: 14px; }
  .hero-kicker-row { margin-bottom: 19px; }
  .eyebrow { margin-bottom: 18px; font-size: 12px; letter-spacing: .12em; }
  .hero-kicker-row .eyebrow { margin-bottom: 0; }
  .hero h1 { font-size: clamp(40px, 11vw, 46px); line-height: 1.07; }
  .hero-lede { margin-top: 22px; font-size: 16px; line-height: 1.68; }
  .hero-tags { margin-top: 20px; gap: 7px; }
  .hero-tags span { min-height: 32px; padding: 6px 10px; font-size: 12px; }
  .hero-actions { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 9px; }
  .button { width: 100%; min-height: 54px; }
  .text-link { width: max-content; margin: 0 auto; }
  .hero-notes { margin-top: 30px; padding: 11px 0; grid-template-columns: repeat(3,1fr); border-radius: 18px; }
  .hero-notes div { padding: 5px 10px; display: grid; grid-template-columns: 1fr; gap: 4px; }
  .hero-notes small { display: none; }
  .hero-notes strong { font-size: 23px; }
  .hero-notes span { font-size: 12px; letter-spacing: .035em; }
  .hero-visual { min-height: 510px; width: 100%; justify-self: stretch; }
  .hero-visual::before { inset: 32px -8px 12px 30px; }
  .hero-visual::after { width: 240px; right: -40px; }
  .hero-visual-label { display: none; }
  .hero-photo { inset: 0 8px 28px 34px; border-radius: 205px 205px 22px 22px; }
  .hero-photo figcaption { left: 18px; right: 18px; bottom: 18px; }
  .hero-photo figcaption p { font-size: 17px; }
  .hero-service-card { right: 0; bottom: 4px; width: 184px; padding: 13px 14px; border-radius: 17px; }
  .hero-service-card span { font-size: 12px; }
  .hero-service-card strong { margin-top: 5px; font-size: 17px; }
  .hero-service-card i { display: none; }
  .hero-seal { width: 86px; left: 0; bottom: 9px; }
  .hero-seal svg { width: 33px; height: 33px; }
  .botanical-line { right: -80px; width: 165px; }
  .marquee-track { min-height: 64px; }
  .marquee-group { gap: 21px; padding-right: 21px; }
  .marquee-group span { font-size: 21px; }

  .treatments { padding-block: 78px 86px; }
  .section-heading h2, .how-heading h2 { font-size: clamp(38px,10vw,44px); line-height: 1.08; }
  .section-heading { margin-bottom: 40px; }
  .section-heading > p { font-size: 14px; }
  .treatment-carousel-toolbar { grid-template-columns: minmax(0,1fr) auto; gap: 12px; margin-bottom: 14px; }
  .treatment-progress { grid-column: 1 / -1; grid-row: 2; }
  .treatment-carousel-status { grid-column: 1; grid-row: 1; justify-content: flex-start; }
  .treatment-carousel-controls { grid-column: 2; grid-row: 1; }
  .carousel-control { width: 46px; height: 46px; }
  .treatment-viewport { margin-right: -16px; padding-right: 16px; padding-bottom: 26px; }
  .treatment-list { gap: 16px; }
  .treatment-card { flex-basis: calc(100% - 28px); min-height: 500px; grid-template-rows: 196px minmax(0,1fr); border-radius: 26px; }
  .treatment-index { top: 16px; left: 17px; width: 36px; height: 36px; }
  .treatment-badge { top: 16px; right: 16px; }
  .art-word { left: 17px; bottom: 14px; font-size: 25px; }
  .treatment-body { padding: 22px 20px 20px; }
  .treatment-name h3 { font-size: 31px; }
  .treatment-copy { margin-top: 15px; font-size: 13px; }
  .treatment-footer { padding-top: 20px; gap: 12px; }
  .treatment-meta strong { font-size: 29px; }
  .card-select { min-width: 88px; min-height: 46px; padding-inline: 14px; }
  .treatment-drag-hint { margin-top: 0; }

  .experience { padding-block: 64px 70px; }
  .experience-stage { gap: 32px; }
  .experience-media { width: 100%; aspect-ratio: 4 / 3; border-radius: 26px; }
  .experience-media::before { inset: 10px; border-radius: 19px; }
  .media-label { top: 16px; left: 16px; }
  .media-label span {
    padding: 6px 8px;
    background: rgba(9,30,25,.72);
    backdrop-filter: none;
    font-size: 11px;
  }
  .experience-media-caption { left: 16px; right: 16px; bottom: 16px; padding: 13px 14px; grid-template-columns: 36px 1fr; border-radius: 17px; }
  .experience-media-index { width: 32px; height: 32px; font-size: 15px; }
  .experience-media-caption strong { font-size: 17px; }
  .experience-copy-head { margin-bottom: 17px; }
  .experience h2 { font-size: clamp(37px,10.4vw,44px); line-height: 1.1; }
  .experience-copy > p:not(.eyebrow) { margin-top: 20px; font-size: 14px; line-height: 1.7; }
  .experience-points { margin-top: 28px; grid-template-columns: 1fr; gap: 10px; }
  .experience-points > div,
  .experience-points > div:first-child { grid-column: auto; min-height: 0; padding: 16px; border-radius: 17px; }
  .media-label { right: auto; bottom: auto; align-items: flex-start; }

  .how { padding-block: 70px 76px; }
  .how-shell { margin-inline: -4px; padding: 26px 20px 22px; border-radius: 27px; }
  .how-top { gap: 22px; }
  .how-note { padding: 18px; grid-template-columns: 1fr auto; gap: 10px 16px; border-radius: 21px; }
  .how-note-index { font-size: 19px; }
  .how-note p { grid-column: 1 / -1; font-size: 13px; }
  .how-note a { min-height: 42px; grid-column: 2; grid-row: 1; font-size: 12px; }
  .steps-wrap { margin-top: 30px; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step-card,
  .step-card:nth-child(3) { grid-column: auto; min-height: 0; padding: 20px; display: grid; grid-template-columns: 74px minmax(0,1fr); grid-template-rows: auto auto auto; column-gap: 18px; border-radius: 22px; }
  .step-card::before { right: -4px; bottom: -18px; font-size: 112px; }
  .step-card .step-card-head,
  .step-card:nth-child(3) .step-card-head { grid-column: 1 / -1; grid-row: 1; }
  .step-card .step-visual,
  .step-card:nth-child(3) .step-visual { grid-column: 1; grid-row: 2; width: 68px; height: 68px; margin: 22px 0; align-self: start; border-radius: 22px 22px 22px 8px; }
  .step-visual svg { width: 48px; height: 48px; }
  .step-card .step-copy,
  .step-card:nth-child(3) .step-copy { grid-column: 2; grid-row: 2; align-self: center; }
  .step-copy h3 { font-size: 27px; }
  .step-copy p { margin-top: 9px; font-size: 13px; line-height: 1.62; }
  .step-card .step-foot,
  .step-card:nth-child(3) .step-foot { grid-column: 1 / -1; grid-row: 3; padding-top: 16px; }
  .how-bottom { padding: 17px; align-items: stretch; flex-direction: column; border-radius: 20px; }
  .how-bottom > div { align-items: flex-start; }
  .how-bottom p { font-size: 13px; line-height: 1.55; }
  .how-bottom .button { width: 100%; }

  .brand-story { width: calc(100% - 32px); margin-bottom: 78px; grid-template-columns: 1fr; border-radius: 26px; }
  .story-identity { padding: 18px; gap: 16px; }
  .story-identity-head { gap: 10px; font-size: 12px; letter-spacing: .1em; }
  .story-identity-head small { padding: 6px 8px; font-size: 12px; }
  .story-logo-canvas { min-height: 286px; padding: 14px; border-radius: 21px; }
  .story-logo-canvas::before { inset: 9px; border-radius: 15px; }
  .story-logo { max-height: 340px; }
  .story-identity-foot { align-items: start; flex-direction: column; gap: 12px; padding-top: 16px; }
  .story-identity-foot strong { font-size: 18px; }
  .story-copy { padding: 32px 22px 36px; }
  .story-copy-head { margin-bottom: 22px; align-items: flex-start; }
  .story-philosophy { padding: 7px 9px; font-size: 12px; }
  .story-copy blockquote { font-size: clamp(34px,9.8vw,42px); line-height: 1.12; }
  .story-copy-bottom { margin-top: 26px; padding-top: 20px; gap: 16px; }
  .story-note { font-size: 13px; }
  .story-dna { gap: 7px; }
  .story-dna span { min-height: 32px; padding: 6px 10px; font-size: 12px; }
  .footer-logo-shell { width: 48px; height: 48px; flex-basis: 48px; }

  .booking-panel { padding-block: 72px 78px; gap: 46px; }
  .booking-intro h2 { font-size: clamp(36px,9.6vw,42px); line-height: 1.08; }
  .booking-intro > p:not(.eyebrow) { font-size: 14px; }
  .booking-price { margin-top: 34px; }
  .booking-price strong { font-size: 34px; }
  .booking-form { grid-template-columns: 1fr; gap: 17px; }
  .field.full, .button.full, .form-status.full { grid-column: 1; }
  .field input, .field textarea, .field select { font-size: 16px; }

  .location { padding-block: 66px 70px; }
  .location-shell { gap: 30px; }
  .location-copy-head { margin-bottom: 20px; align-items: flex-start; }
  .location-status { min-height: 32px; padding: 6px 9px; font-size: 11px; }
  .location-copy h2 { font-size: clamp(37px,10.5vw,44px); line-height: 1.08; }
  .location-copy > p { margin-top: 20px; font-size: 14px; line-height: 1.7; }
  .location-facts { margin-top: 28px; padding-block: 0; grid-template-columns: 1fr; }
  .location-facts > div { padding: 14px 0; grid-template-columns: 1fr auto; align-items: baseline; gap: 14px; }
  .location-facts > div + div { border-left: 0; border-top: 1px solid rgba(23,63,53,.11); }
  .location-facts small { font-size: 12px; }
  .location-facts strong { font-size: 19px; text-align: right; }
  .location-actions { margin-top: 24px; display: grid; grid-template-columns: 1fr; }
  .location-phone { width: 100%; grid-template-columns: 1fr auto; }
  .location-map-card { padding: 13px; border-radius: 26px; }
  .location-map-top { padding: 3px 4px 13px; }
  .location-map-top strong { font-size: 17px; }
  .location-map-top > span { display: none; }
  .location-map-frame { min-height: 340px; border-radius: 19px; }
  .location-map-badge { left: 13px; bottom: 13px; min-width: 136px; padding: 10px 12px; border-radius: 15px; }
  .location-map-foot { padding-top: 14px; gap: 12px; }
  .location-map-foot > span { font-size: 19px; }
  .location-map-foot p { display: none; }
  .location-map-foot a { margin-left: auto; }

  .site-footer { min-height: 170px; padding-block: 32px; grid-template-columns: 1fr; gap: 20px; }
  .site-footer > a { justify-self: start; }
  .footer-brand small { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal.is-visible, .reveal.is-revealing { opacity: 1; transform: none; animation: none !important; filter: none !important; }
  [data-parallax-speed] { --parallax-y: 0px !important; transform: none !important; }
  .hero-photo img, .experience-media img { transform: none !important; }
  .story-logo-canvas { transform: none !important; }
  .botanical-line { transform: rotate(5deg) !important; }
  .scroll-progress { display: none; }
  .marquee-track { animation: none; transform: none; }
}
