/* ShineRight — primary theme stylesheet
   Path: wp-content/themes/shineright/assets/css/main.css
   Consolidated from the original iterative override stack. */
/* ── TOKENS ── */
:root {
  --color-canvas: #e5e7eb;
  --color-white: #ffffff;
  --color-mist: #f3f3f3;
  --color-black: #000000;
  --color-steel: #979797;
  --color-graphite: #444444;
  --color-mint: #3ecfa9;
  --color-yellow: #fff100;
  --font-display: 'Barlow Condensed', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-brand: 'Sora', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --max: 2560px;
  --side-pad: clamp(48px, 8.5vw, 224px);
  --section-pad: clamp(88px, 8vw, 180px);
  --radius-btn: 8px;
  --radius-card: 32px;
  --radius-card-lg: 64px;
  --radius-nav: 48px;
  --radius-tag: 20px;
  --radius-xl: 7rem;
  --font-small: 'IBM Plex Mono', 'JetBrains Mono', ui-monospace, monospace;
  --color-accent: #3ecfa9;
}
/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: clamp(16px, 0.55vw + 12px, 22px); }
body {
  background: var(--color-canvas);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: clamp(17px, 0.45vw + 14px, 22px);
  line-height: 1.33;
  letter-spacing: -0.32px;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 4px; }
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}
/* ── NAVBAR ── */
.navbar > * { pointer-events: auto; }
.logo-mark img {
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: filter .25s ease;
}
.logo-mark svg { width: 16px; height: 16px; }
.nav-link, .nav-drop-btn {
  font-family: var(--font-body);
  font-size: clamp(15px, 0.22vw + 13px, 18px);
  font-weight: 600;
  color: var(--color-graphite);
  letter-spacing: -0.035em;
  padding: 12px 19px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s, transform .2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link:hover, .nav-drop-btn:hover { color: var(--color-black); background: rgba(0,0,0,0.055); }
.drop-chevron {
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
  line-height: 1;
}
.has-mega.open .drop-chevron { transform: scaleY(-1); }
.has-mega.open .mega { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.mega-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mega-card {
  padding: 12px 14px;
  border-radius: 14px;
  transition: background 0.15s;
  display: block;
}
.mega-card:hover { background: rgba(0,0,0,0.055); }
.mega-card h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
}
.mega-card p {
  font-size: 12px;
  color: var(--color-steel);
  letter-spacing: -0.024em;
  line-height: 1.4;
}
.mega-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 170px;
  padding-top: 4px;
}
.mega-right a {
  font-size: 13px;
  color: var(--color-graphite);
  letter-spacing: -0.02em;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mega-right a:hover { background: rgba(0,0,0,0.055); color: var(--color-black); }
.btn-book:hover { opacity: 1; transform: translateY(-1px); }
.btn-menu:hover { background: var(--color-mist); }
.navbar.on-dark .nav-center {
  background: rgba(0,0,0,0.74);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}
.navbar.on-dark .btn-book:hover { filter: brightness(1.08); }
.navbar.on-dark .mega { background: rgba(0,0,0,0.88); border-color: rgba(255,255,255,0.12); }
.navbar.on-dark .mega-card:hover,
.navbar.on-dark .mega-right a:hover { background: rgba(255,255,255,0.08); }
.navbar.on-dark .mega-card h4 { color: var(--color-white); }
.navbar.on-dark .mega-card p,
.navbar.on-dark .mega-right a { color: rgba(255,255,255,0.58); }
.navbar.on-dark .mega-right a:hover { color: var(--color-white); }
/* Dark navbar hover fixes */
.navbar.on-dark .nav-link,
.navbar.on-dark .nav-drop-btn {
  color: var(--color-white);
}

.navbar.on-dark .nav-link:hover,
.navbar.on-dark .nav-drop-btn:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}
/* ── MOBILE DRAWER ── */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s;
}
.overlay.on { display: block; opacity: 1; }
.drawer.on { display: flex; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.acc-item { border-bottom: 1px solid var(--color-canvas); }
.acc-trigger {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.20px;
}
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc-body a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--color-graphite);
  border-radius: 8px;
  transition: background 0.15s;
}
.acc-body a:hover { background: var(--color-mist); }
.drawer-book { margin-top: 32px; }
/* ── HERO ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.22vw + 10px, 16px);
  letter-spacing: -0.36px;
  color: var(--color-graphite);
  margin-bottom: 28px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(82px, 7.25vw, 170px);
  font-weight: 700;
  line-height: 0.90;
  letter-spacing: -0.03em;
  color: var(--color-black);
  margin-bottom: clamp(32px, 2.8vw, 72px);
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--color-accent); }
.hero-sub {
  font-size: clamp(19px, 0.8vw + 13px, 32px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.22px;
  color: var(--color-black);
  max-width: clamp(480px, 32vw, 760px);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--color-black);
  color: var(--color-white);
  font-size: clamp(15px, 0.25vw + 13px, 19px);
  font-weight: 450;
  letter-spacing: -0.28px;
  padding: 18px 34px;
  border-radius: var(--radius-btn);
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.80; }
.btn-ghost {
  font-size: clamp(15px, 0.25vw + 13px, 19px);
  font-weight: 500;
  letter-spacing: -0.28px;
  color: var(--color-graphite);
  padding: 18px 34px;
  border-radius: var(--radius-btn);
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--color-mist); color: var(--color-black); }
.hero-img-placeholder img[src=""], .hero-img-placeholder img:not([src]) { display: none; }
.hero-img-hint { display: none; }
/* ── SECTION BASE ── */
.sec { padding: var(--section-pad) 0; }
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 6.5vw, 180px);
  font-weight: 700;
  line-height: 0.90;
  letter-spacing: -0.03em;
  color: var(--color-black);
  text-transform: uppercase;
  margin-bottom: clamp(24px, 2vw, 56px);
  text-align: center;
}
.sec-eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.22vw + 10px, 16px);
  letter-spacing: -0.36px;
  color: var(--color-graphite);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  text-align: center;
}
.sec-sub {
  font-size: clamp(19px, 0.8vw + 13px, 32px);
  color: var(--color-black);
  line-height: 1.52;
  letter-spacing: -0.22px;
  max-width: clamp(480px, 32vw, 760px);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.ctr { text-align: center; }
.ctr .sec-sub { margin: 0 auto; }
/* ─────────────────────────────────────────
   UNIFIED BLACK STACK
───────────────────────────────────────── */
.black-stack-shell.expanded { padding-left: 0; padding-right: 0; }
.black-section-stack .sec { background: var(--color-black); }
.black-section-stack .sec-title,
.black-section-stack .sec-eyebrow,
.black-section-stack .sec-sub { color: var(--color-white); }
.black-section-stack .sec-eyebrow { color: rgba(255,255,255,0.58); }
.black-section-stack .sec-sub { color: rgba(255,255,255,0.72); }
/* ── STAT BAND ── */
.stat-num span { color: inherit; }
/* ── SERVICES ── */
#services { padding-top: clamp(104px, 8vw, 190px); }
.svc-grid:active { cursor: grabbing; }
.svc-img img {
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-card:hover .svc-img img { transform: scale(1.035); }
.svc-tag {
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.22vw + 10px, 16px);
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.48);
  text-transform: uppercase;
}
.btn-outline {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(15px, 0.25vw + 13px, 19px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--color-white);
  background: var(--color-black);
  border: 1.5px solid var(--color-black);
  padding: 15px 26px;
  border-radius: var(--radius-btn);
  transition: background 0.2s, color 0.2s, border-color .2s, transform .2s;
  width: fit-content;
}
.btn-outline:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-1px);
}
/* ── FEATURES ── */
.feats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 1.8vw, 48px);
  margin-top: clamp(64px, 4vw, 104px);
}
.feat-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
}
.feat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: clamp(24px, 1.6vw, 48px);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  margin-bottom: clamp(28px, 2vw, 48px);
  position: relative;
  padding: 40px;
}
.feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.feat-card:hover .feat-img img { transform: scale(1.04); }
.feat-img-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.36px;
  text-align: center;
  padding: 20px;
  pointer-events: none;
}
.feat-body { padding: 0; }
.feat-body h4 {
  font-family: var(--font-display);
  font-size: clamp(40px, 3.2vw, 96px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: clamp(14px, 1.2vw, 28px);
}
.feat-body p {
  font-size: clamp(17px, 0.5vw + 14px, 25px);
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  letter-spacing: -0.20px;
}
/* ── HOW IT WORKS ── */
.process-sec {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.process-wrap { overflow: visible; }
.process-journey {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(150px, .34fr) minmax(360px, 1fr);
  gap: clamp(38px, 5vw, 112px);
  align-items: start;
}
.process-story {
  position: sticky;
  top: clamp(150px, 18vh, 230px);
  padding-bottom: 40px;
}
.process-story .sec-eyebrow,
.process-story .sec-title,
.process-story .sec-sub { text-align: left; }
.process-story .sec-title {
  margin-top: clamp(22px, 2.2vw, 42px);
  font-size: clamp(70px, 6vw, 136px);
}
.process-story .sec-sub {
  max-width: 38ch;
  margin: clamp(28px, 2.3vw, 48px) 0 0;
}
.process-story__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(30px, 3vw, 58px);
}
.process-story__meta span {
  padding: 8px 12px;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-family: var(--font-small);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.process-rail { position: relative; min-height: 100%; }
.process-road {
  position: sticky;
  top: 12vh;
  height: 76vh;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.04) 49.5%, rgba(255,255,255,.04) 50.5%, transparent 50.5%),
    #0a0b0c;
  box-shadow: inset 0 0 80px rgba(0,0,0,.8);
}
.process-road__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.process-road__edge--left { left: 18%; }
.process-road__edge--right { right: 18%; }
.process-road__line {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom, var(--color-mint) 0 38px, transparent 38px 74px);
  opacity: .68;
}
.process-vehicle {
  position: absolute;
  z-index: 4;
  top: clamp(22px, 4vh, 48px);
  left: 50%;
  width: min(82%, 174px);
  transform: translateX(-50%);
  will-change: transform;
}
.process-vehicle img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.55));
}
.process-road__progress {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 18px;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}
.process-road__progress span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  transition: width .25s ease, border-radius .25s ease, background .25s ease;
}
.process-road__progress span.is-active { width: 22px; border-radius: 99px; background: var(--color-mint); }
.process-steps {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.14);
}
.process-step {
  position: relative;
  min-width: 0;
  min-height: 74vh;
  padding: clamp(34px, 3.2vw, 68px) 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
  opacity: .28;
  transform: translate3d(0, 26px, 0);
  transition: opacity .45s ease, transform .55s cubic-bezier(.22,1,.36,1);
}
.process-step:last-child { border-bottom: 0; }
.process-step.is-active { opacity: 1; transform: translate3d(0, 0, 0); }
.process-step__number {
  font-family: var(--font-small);
  font-size: clamp(10px, .18vw + 9px, 13px);
  color: var(--color-mint);
  letter-spacing: .06em;
}
.process-step__copy { margin: auto 0; padding: clamp(52px, 9vh, 110px) 0; }
.process-step__kicker {
  color: rgba(255,255,255,.42);
  font-family: var(--font-small);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.process-step h3 {
  max-width: 9ch;
  margin-top: clamp(20px, 2vw, 36px);
  font-family: var(--font-display);
  font-size: clamp(60px, 5vw, 112px);
  line-height: .84;
  letter-spacing: -.035em;
  color: var(--color-white);
  text-transform: uppercase;
}
.process-step p {
  max-width: 38ch;
  margin-top: clamp(24px, 2vw, 38px);
  color: rgba(255,255,255,.6);
  font-size: clamp(16px, .4vw + 13px, 21px);
  line-height: 1.6;
}
/* ─────────────────────────────────────────
   STACKING SPECIALIST TREATMENTS
───────────────────────────────────────── */

.specialty-showcase {
  --stack-sticky-top: clamp(178px, 12svh, 232px);
  --stack-base-top: 0px;

  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.specialty-showcase .selector-outer {
  position: relative;
  padding:
    clamp(108px, 8vw, 190px)
    0
    clamp(80px, 6vw, 140px);
  overflow: visible;
  background: var(--color-black);
}

.specialty-showcase .selector-outer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(
      circle at 75% 18%,
      rgba(255,255,255,0.07),
      transparent 31%
    );
}

.specialty-showcase .sel-header {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto clamp(64px, 5vw, 112px);
  padding: 0 var(--side-pad);
}

.specialty-showcase .sec-title,
.specialty-showcase .sec-sub {
  color: var(--color-white);
}

.specialty-showcase .sec-eyebrow {
  color: rgba(255,255,255,0.45);
}

.specialty-showcase .sec-sub {
  color: rgba(255,255,255,0.64);
}

/* The total scroll runway is created by one viewport-height item per card. */
.treatment-stack {
  position: relative;
  width: 100%;
  overflow: visible;
  isolation: isolate;
}

/*
 * Final scroll runway:
 * keeps the fifth card pinned long enough to fully settle into the deck.
 */
 @media (min-width: 901px) {
  .treatment-stack::after {
    content: '';
    display: block;
    width: 100%;
    height: clamp(120px, 18svh, 230px);
    pointer-events: none;
  }
}

.treatment-stack-item {
  position: sticky;
  top: var(--stack-sticky-top);
  z-index: var(--stack-z);

  display: flex;
  align-items: flex-start;
  justify-content: center;

  width: 100%;

  height: 72vh;
  height: 72svh;
  min-height: 520px;

  padding: 0 var(--side-pad);

  overflow: visible;
  pointer-events: none;
}

.treatment-stack-card {
  position: relative;

  top: calc(
    var(--stack-base-top) +
    var(--stack-offset)
  );

  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(380px, 1.08fr);

  width: 100%;
  max-width: min(var(--max), 1840px);

  height: min(calc(100svh - var(--stack-sticky-top) - 28px), 700px);
  min-height: 480px;

  overflow: hidden;
  color: var(--color-white);
  background: var(--card-tone);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: clamp(28px, 2.4vw, 54px);

  box-shadow:
    0 28px 70px rgba(0,0,0,0.46),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transform-origin: top center;
  isolation: isolate;
  pointer-events: auto;
  backface-visibility: hidden;
}

.treatment-stack-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      125deg,
      rgba(255,255,255,0.035),
      transparent 38%
    );
}

.treatment-stack-card__content {
  position: relative;
  z-index: 4;

  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;

  min-width: 0;
  min-height: 0;
  height: 100%;

  padding: clamp(26px, 2.4vw, 52px);

  border-right: 1px solid rgba(255,255,255,0.1);
}

.treatment-stack-card__top,
.treatment-stack-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.treatment-stack-card__number {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;
  flex: 0 0 auto;

  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;

  font-family: var(--font-small);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.treatment-stack-card__category {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-small);
  font-size: clamp(10px, 0.18vw + 9px, 12px);
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.treatment-stack-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  min-width: 0;
  min-height: 0;

  padding:
    clamp(24px, 3.4vh, 54px)
    0
    clamp(18px, 2.4vh, 36px);
}

.treatment-stack-card__eyebrow {
  margin-bottom: clamp(15px, 1.3vw, 24px);

  color: var(--color-mint);
  font-family: var(--font-small);
  font-size: clamp(10px, 0.18vw + 9px, 12px);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.treatment-stack-card__title {
  margin: 0;

  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(56px, 4.7vw, 114px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.treatment-stack-card__description {
  max-width: 40ch;
  margin-top: clamp(20px, 2vw, 38px);

  color: rgba(255,255,255,0.68);
  font-size: clamp(16px, 0.42vw + 13px, 22px);
  line-height: 1.52;
  letter-spacing: -0.025em;
}

.treatment-stack-card__process {
  max-width: 54ch;
  margin-top: clamp(14px, 1.3vw, 24px);

  color: rgba(255,255,255,0.36);
  font-family: var(--font-small);
  font-size: clamp(10px, 0.18vw + 9px, 12px);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.treatment-stack-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  min-width: 0;
  padding-top: clamp(16px, 1.5vw, 28px);

  border-top: 1px solid rgba(255,255,255,0.1);
}

.treatment-stack-card__meta {
  display: inline-flex;
  align-items: center;

  max-width: 55%;
  min-height: 36px;
  padding: 8px 13px;

  color: rgba(255,255,255,0.68);
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 999px;

  font-family: var(--font-small);
  font-size: clamp(9px, 0.17vw + 8px, 11px);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.treatment-stack-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;

  min-height: 42px;
  padding: 0 16px;

  color: var(--color-black);
  background: var(--color-mint);
  border: 1px solid var(--color-mint);
  border-radius: 999px;

  font-size: clamp(12px, 0.2vw + 10px, 15px);
  font-weight: 650;
  letter-spacing: -0.025em;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.treatment-stack-card__link svg {
  width: 22px;
  height: 12px;
  flex: 0 0 auto;
}

.treatment-stack-card__link:hover,
.treatment-stack-card__link:focus-visible {
  color: var(--color-black);
  background: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-1px);
}

/* Card image half */
.treatment-stack-card__visual {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;

  min-width: 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 52% 48%,
      rgba(255,255,255,0.075),
      transparent 45%
    ),
    #080909;
}

.treatment-stack-card__visual::before {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(8,9,9,0.35),
      transparent 18%,
      transparent 76%,
      rgba(8,9,9,0.55)
    );
}

.treatment-stack-card__media {
  position: relative;
  z-index: 2;
  min-height: 0;
}

.treatment-stack-card__media::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 8%;

  width: 62%;
  height: 8%;

  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0,0,0,0.58);
  filter: blur(24px);
  pointer-events: none;
}

.treatment-stack-card__media img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;
  padding: clamp(8px, 1.3vw, 28px);

  object-fit: contain;
  object-position: center;
  transform: scale(1);
  backface-visibility: hidden;
}

/* Medium desktop and tablet */
@media (max-width: 1180px) {
  .treatment-stack-item {
    padding: 0 clamp(28px, 4vw, 60px);
  }

  .treatment-stack-card {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(340px, 0.9fr);

    min-height: 540px;
  }

  .treatment-stack-card__title {
    font-size: clamp(58px, 6vw, 96px);
  }

  .treatment-stack-card__bottom {
    align-items: flex-end;
  }

  .treatment-stack-card__meta {
    max-width: 55%;
    white-space: normal;
  }
}

/*
 * Disable viewport stacking on smaller screens. The cards become a normal,
 * accessible vertical list with the image under the text.
 */

/* Keep every card control visible on shorter desktop screens. */
@media (min-width: 901px) and (max-height: 820px) {
  .treatment-stack-item {
    height: 70svh;
    min-height: 470px;
  }

  .treatment-stack-card {
    height: min(calc(100svh - var(--stack-sticky-top) - 18px), 650px);
    min-height: 440px;
  }

  .treatment-stack-card__content {
    padding: 24px 30px;
  }

  .treatment-stack-card__copy {
    padding: 20px 0 16px;
  }

  .treatment-stack-card__title {
    font-size: clamp(50px, 4.1vw, 88px);
  }

  .treatment-stack-card__description {
    margin-top: 18px;
    font-size: clamp(15px, 0.35vw + 13px, 19px);
    line-height: 1.45;
  }

  .treatment-stack-card__process {
    margin-top: 12px;
  }

  .treatment-stack-card__bottom {
    padding-top: 14px;
  }

  .treatment-stack-card__meta {
    min-height: 32px;
    padding: 7px 11px;
  }

  .treatment-stack-card__link {
    min-height: 38px;
  }
}

@media (max-width: 900px) {
  .specialty-showcase .selector-outer {
    padding:
      clamp(88px, 16vw, 128px)
      0
      clamp(96px, 18vw, 150px);
  }

  .specialty-showcase .sel-header {
    margin-bottom: 58px;
  }

  .treatment-stack {
    display: grid;
    gap: 20px;
    padding: 0 var(--side-pad);
  }

  .treatment-stack::after {
    display: none;
  }

  .treatment-stack-item {
    position: relative;
    top: auto;
    z-index: 1 !important;

    display: block;
    width: 100%;
    height: auto;
    min-height: 0;

    padding: 0;
    margin: 0;
  }

  .treatment-stack-item:last-child {
    margin-bottom: 0;
  }

  .treatment-stack-card {
    top: auto;

    display: flex;
    flex-direction: column;

    height: auto;
    min-height: 0;

    border-radius: 28px;
    transform: none !important;
  }

  .treatment-stack-card__content {
    order: 1;
    padding: 26px 22px;
    border-right: 0;
  }

  .treatment-stack-card__visual {
    order: 2;
    min-height: clamp(340px, 78vw, 580px);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .treatment-stack-card__copy {
    padding: 50px 0 38px;
  }

  .treatment-stack-card__title {
    font-size: clamp(58px, 17vw, 92px);
  }

  .treatment-stack-card__description {
    margin-top: 28px;
  }

  .treatment-stack-card__bottom {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .treatment-stack-card__meta {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .treatment-stack-card__category {
    max-width: 19ch;
  }

  .treatment-stack-card__link {
    width: 100%;
    justify-content: space-between;
    margin-top: 6px;
  }

  .treatment-stack-card__visual {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .treatment-stack-card,
  .treatment-stack-card__media img {
    transform: none !important;
  }
}
/* ── GREY STACK (Recent Work) ── */
.grey-stack-shell {
  background: var(--color-black);
  padding-left: 96px;
  padding-right: 96px;
  will-change: padding;
}
.grey-stack-shell.expanded { padding-left: 0; padding-right: 0; }
.grey-section-stack {
  background: var(--color-canvas);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  padding: clamp(104px, 8vw, 190px) 0 clamp(92px, 7vw, 170px);
}
.grey-section-stack .sec-title { color: var(--color-black); }
.grey-section-stack .sec-sub { color: var(--color-black); }
/* ── RECENT WORK ── */
.rw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 2vw, 56px);
  margin-top: clamp(64px, 4vw, 112px);
}
.rw-cmp {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: clamp(32px, 2vw, 64px);
  overflow: hidden;
  user-select: none;
}
.cmp-before, .cmp-after { position: absolute; inset: 0; overflow: hidden; }
.cmp-after { clip-path: inset(0 50% 0 0); }
.cmp-label {
  position: absolute;
  top: 20px;
  font-family: var(--font-mono);
  font-size: clamp(12px, 0.2vw + 10px, 16px);
  background: var(--color-black);
  color: var(--color-white);
  padding: 7px 16px;
  border-radius: 999px;
  z-index: 10;
  pointer-events: none;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.cmp-label.before { left: 16px; }
.cmp-label.after { right: 16px; }
.cmp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-handle-btn {
  width: 46px;
  height: 46px;
  background: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.cmp-handle-btn svg { width: 20px; height: 20px; }
.rw-caption {
  font-family: var(--font-mono);
  font-size: clamp(14px, 0.32vw + 12px, 20px);
  color: var(--color-graphite);
  letter-spacing: -0.36px;
  margin-top: 22px;
  padding: 0 4px;
}
/* ──────────────────────────────────────────
   REVIEWS — Premium redesign
   Dark background, refined cards, marquee
────────────────────────────────────────── */
.rev-band-wrap { background: var(--color-canvas); }
.rev-band {
  background: var(--color-black);
  margin: 0;
  padding: clamp(96px, 8vw, 190px) 0 clamp(96px, 8vw, 190px);
  overflow: hidden;
  position: relative;
}
.rev-band .sec-title { color: var(--color-white); }
.rev-band .sec-sub { color: rgba(255,255,255,0.65); }
.rev-band .sec-eyebrow { color: rgba(255,255,255,0.45); }
.rev-band-header { padding: 0 var(--side-pad); margin-bottom: clamp(56px, 5vw, 104px); }
/* Rating badge row */
.rev-rating-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;
}
.rev-rating-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.2px;
}
.rev-rating-pill strong { color: var(--color-white); }
.rev-stars-row { display: flex; gap: 3px; }
.rev-stars-row span { color: #f59e0b; font-size: 14px; }
/* Marquee track */
.rev-outer { overflow: hidden; position: relative; }
.rev-outer::before,
.rev-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.rev-outer::before { left: 0; background: linear-gradient(to right, var(--color-black), transparent); }
.rev-outer::after { right: 0; background: linear-gradient(to left, var(--color-black), transparent); }
/* Two-row horizontal marquee */
.rev-marquee-wrap { display: flex; flex-direction: column; gap: 20px; }
.rev-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}
.rev-track.rev-track--reverse { animation-direction: reverse; animation-duration: 45s; }
.rev-outer:hover .rev-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rev-card {
  flex-shrink: 0;
  width: clamp(320px, 22vw, 480px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: clamp(28px, 2vw, 44px);
  transition: background 0.3s, border-color 0.3s;
}
.rev-card:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.15); }
.rev-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
}
.rev-author { display: flex; flex-direction: column; gap: 4px; }
.rev-name {
  font-size: clamp(15px, 0.35vw + 13px, 19px);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: -0.22px;
}
.rev-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.2px;
}
.rev-stars { display: flex; gap: 2px; }
.rev-stars span { color: #f59e0b; font-size: 13px; }
.rev-card p {
  font-size: clamp(15px, 0.38vw + 13px, 20px);
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  letter-spacing: -0.20px;
}
/* Source badge */
.rev-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.2px;
}
.rev-source-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
/* ── LOCATIONS ── */
.locations-sec { padding: var(--section-pad) 0; }
.locations-sec .sec-title { color: var(--color-black); text-align: center; }
.locations-sec .sec-sub { color: var(--color-graphite); text-align: center; }
.leaflet-control-zoom {
  border: 0 !important;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.25) !important;
}
.map-panel::-webkit-scrollbar { width: 0; height: 0; }
.map-search-input::placeholder { color: rgba(255,255,255,0.35); }
.map-search-btn:hover { color: var(--color-white); background: rgba(255,255,255,.08); }
.map-panel-divider { height: 1px; background: rgba(255,255,255,0.08); flex: 0 0 auto; }
.map-legend-panel { display: grid; gap: 8px; }
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.02em;
  cursor: pointer;
  padding: 10px;
  border-radius: 14px;
  transition: background 0.15s, transform .15s;
}
.legend-item:hover, .legend-item.active { background: rgba(255,255,255,0.08); transform: translateX(2px); }
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-label { display: flex; flex-direction: column; gap: 2px; }
.legend-zone { font-size: 12px; color: rgba(255,255,255,0.78); font-weight: 500; }
.legend-zone-desc { font-size: 10px; color: rgba(255,255,255,0.38); }
.map-active-location {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}
.map-active-location.visible { display: flex; }
.map-active-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.02em;
  line-height: 1.45;
}
.map-active-zone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(41,142,202,0.18);
  color: var(--color-accent);
}
.map-fee-line {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,.6);
  letter-spacing: -0.02em;
}
.map-route-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.map-tags-row::-webkit-scrollbar { width: 0; height: 0; }
.tag:hover, .tag.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-1px);
}
/* ── FAQ ── */
.faq-layout { margin: clamp(56px, 4vw, 104px) auto 0; max-width: min(1180px, 100%); }
.faq-acc { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 22px;
  overflow: hidden;
  background: var(--color-white);
  transition: border-color 0.3s;
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(22px, 1.7vw, 38px) clamp(26px, 2vw, 48px);
  background: rgba(0,0,0,0.04);
  border: none;
  cursor: pointer;
  gap: 16px;
  border-radius: 20px;
  transition: border-radius 0.3s;
}
.faq-item.open .faq-q { border-radius: 20px 20px 0 0; }
.faq-q-title {
  font-size: clamp(20px, 0.7vw + 15px, 31px);
  font-weight: 600;
  letter-spacing: -0.28px;
  color: var(--color-black);
  line-height: 1.3;
}
.faq-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.faq-icon-plus, .faq-icon-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.faq-icon-plus { opacity: 1; transform: rotate(0deg); }
.faq-icon-x { opacity: 0; transform: rotate(-90deg); }
.faq-item.open .faq-icon-plus { opacity: 0; transform: rotate(90deg); }
.faq-item.open .faq-icon-x { opacity: 1; transform: rotate(0deg); }
.faq-icon-plus svg, .faq-icon-x svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-black);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.4s ease;
  font-size: clamp(17px, 0.5vw + 14px, 24px);
  color: var(--color-graphite);
  line-height: 1.7;
  letter-spacing: -0.20px;
  padding: 0 clamp(26px, 2vw, 48px);
}
.faq-item.open .faq-a { padding: clamp(22px, 1.4vw, 34px) clamp(26px, 2vw, 48px) clamp(28px, 2vw, 48px); }
.faq-a a { text-decoration: underline; text-underline-offset: 3px; }
/* ── FINAL BOOKING CTA ── */
.cta-sec {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 7vw, 150px) 0;
  background: var(--color-white);
}
.booking-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(48px, 7vw, 160px);
  min-height: clamp(560px, 44vw, 860px);
  padding: clamp(38px, 5vw, 110px);
  color: var(--color-white);
  background:
    radial-gradient(circle at 86% 18%, rgba(62,207,169,.34), transparent 28%),
    var(--color-black);
  border-radius: clamp(32px, 4vw, 76px);
}
.booking-cta::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: clamp(-180px, -8vw, -80px);
  top: clamp(-180px, -8vw, -80px);
  width: clamp(300px, 32vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.booking-cta .sec-eyebrow {
  color: rgba(255,255,255,.52);
  text-align: left;
}
.booking-cta__title {
  margin-top: clamp(26px, 2vw, 46px);
  font-family: var(--font-display);
  font-size: clamp(72px, 8.3vw, 190px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.booking-cta__copy p {
  max-width: 54ch;
  margin-top: clamp(28px, 2.5vw, 54px);
  color: rgba(255,255,255,.65);
  font-size: clamp(17px, .55vw + 13px, 24px);
  line-height: 1.55;
}
.booking-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.booking-cta__primary,
.booking-cta__secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.booking-cta__primary {
  min-height: clamp(96px, 8vw, 148px);
  padding: clamp(22px, 2vw, 36px);
  color: var(--color-black);
  background: var(--color-mint);
  border-radius: clamp(20px, 2vw, 36px);
  font-size: clamp(18px, .7vw + 14px, 28px);
  font-weight: 750;
  letter-spacing: -.035em;
  transition: background .25s ease, transform .25s ease;
}
.booking-cta__primary:hover,
.booking-cta__primary:focus-visible {
  color: var(--color-black);
  background: var(--color-white);
  transform: translateY(-2px);
}
.booking-cta__secondary {
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: clamp(14px, .3vw + 12px, 17px);
  transition: color .2s ease, border-color .2s ease;
}
.booking-cta__secondary:hover,
.booking-cta__secondary:focus-visible {
  color: var(--color-white);
  border-color: rgba(255,255,255,.45);
}
.cta-arrow-loop {
  width: clamp(44px, 3.2vw, 76px);
  height: clamp(44px, 3.2vw, 76px);
  flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,0.22);
  border-radius: 999px;
  color: var(--color-black);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  transition: border-color 0.35s ease, color 0.35s ease;
}
.booking-cta__primary:hover .cta-arrow-loop,
.booking-cta__primary:focus-visible .cta-arrow-loop {
  border-color: rgba(0,0,0,0.36);
  color: var(--color-black);
}
.cta-arrow-loop .inner {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform .55s cubic-bezier(.4,0,0,1);
}
.cta-arrow-loop .second { transform: translate(-100%, 100%); }
.booking-cta__primary:hover .cta-arrow-loop .first,
.booking-cta__primary:focus-visible .cta-arrow-loop .first { transform: translate(100%, -100%); }
.booking-cta__primary:hover .cta-arrow-loop .second,
.booking-cta__primary:focus-visible .cta-arrow-loop .second { transform: translate(0, 0); }
.cta-arrow-loop svg { width: 60%; height: 60%; }
@media (max-width: 980px) {
  .booking-cta {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }
  .booking-cta__actions { max-width: 620px; }
}
@media (max-width: 600px) {
  .cta-sec { padding: 40px 0; }
  .booking-cta { padding: 32px 24px; border-radius: 30px; gap: 46px; }
  .booking-cta__title { font-size: clamp(62px, 20vw, 96px); }
  .booking-cta__primary { min-height: 88px; }
}
/* ── FOOTER ── */
footer {
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: clamp(72px, 6vw, 140px);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 2.1fr);
  gap: clamp(56px, 7vw, 180px);
  padding-bottom: clamp(56px, 4vw, 104px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.1vw, 44px);
  align-items: flex-start;
}
.footer-logo-mark {
  width: auto;
  height: clamp(46px, 3vw, 70px);
  display: inline-block;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.footer-logo-name {
  font-family: var(--font-brand);
  font-size: clamp(24px, 1.6vw, 42px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: .95;
  color: var(--color-white);
}
.footer-logo-slogan {
  font-size: clamp(14px, .36vw + 12px, 18px);
  color: rgba(255,255,255,.56);
  line-height: 1.45;
  max-width: 360px;
  letter-spacing: -0.02em;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  font-size: clamp(15px, 0.35vw + 13px, 21px);
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.022em;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--color-white); }
.socials { display: flex; gap: 10px; }
.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s, transform .2s;
}
.social-btn:hover { background: var(--color-accent); color: var(--color-black); transform: translateY(-1px); }
.social-btn svg { width: 16px; height: 16px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 88px); }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.25vw + 9px, 15px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: clamp(15px, 0.35vw + 13px, 21px);
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.022em;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-white); }
.footer-bottom span, .footer-bottom a {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.25vw + 9px, 15px);
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.03em;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--color-white); }
/* ── FOOTER WORDMARK ── */
.footer-wordmark:hover .footer-wordmark-logo img { transform: translateY(-4px); opacity: .86; }
/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); }
/* ── RESPONSIVE ── */
.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 24px;
  min-width: 500px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, background .25s, border-color .25s;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.navbar.on-dark .nav-link,
.navbar.on-dark .nav-drop-btn { color: var(--color-white); }
.navbar.on-dark .nav-link:hover,
.navbar.on-dark .nav-drop-btn:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.10);
}
.hero-left { max-width: clamp(620px, 38vw, 980px); position: relative; z-index: 3; }
.footer-logo-placeholder {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(620px, 100%);
  display: block;
}
.footer-brand-slogan {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(58px, 4.6vw, 128px);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--color-white);
}
.footer-logo-mark,
.footer-logo-copy,
.footer-logo-name,
.footer-logo-slogan { display: none; }
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #111 !important;
  color: var(--color-white) !important;
  font-family: var(--font-body) !important;
}
.leaflet-popup-content { font-size: 13px; line-height: 1.45; }
/* Segmented, section-aware navbar inspired by the reference */
.navbar.scrolled { box-shadow: none; filter: none; }
.logo-mark {
  width: auto;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  height: clamp(36px, 2.4vw, 52px);
}
.logo-text { display: inline-flex; align-items: center; transform: translateY(-0.015em); }
.nav-center {
  display: flex;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
  height: 100%;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-center > li {
  position: relative;
  display: flex;
  align-items: stretch;
  border-right: 1px solid var(--nav-border);
}
.nav-actions {
  display: flex;
  height: 100%;
  align-items: stretch;
  justify-content: flex-end;
  border-left: 1px solid var(--nav-border);
  gap: 0;
}
.navbar.on-dark .logo { color: var(--nav-text); }
.navbar.on-dark .logo-mark img { filter: brightness(0) invert(1); }
.navbar.on-dark .nav-link { color: var(--nav-muted); }
.navbar.on-dark .nav-link:hover,
.navbar.on-dark .nav-link:focus-visible {
  color: var(--nav-text);
  background: rgba(255,255,255,0.09);
}
.btn-menu {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.15s, color .2s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 52px;
  height: 52px;
  align-self: center;
  margin: 7px;
  border-radius: 10px;
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: none;
  position: relative;
}
.btn-menu span {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.btn-menu span:first-child { top: 20px; }
.btn-menu span:last-child { top: 30px; }
.navbar.on-dark .btn-menu { background: var(--color-accent); color: var(--color-black); }
/* Mobile drawer: simpler, large touch targets, strong hierarchy */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1200;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  width: min(420px, 100%);
  background: #080808;
  color: var(--color-white);
  padding: 22px;
  gap: 24px;
}
.drawer .drawer-logo {
  color: var(--color-white);
  border: 0;
  padding: 0;
  min-height: auto;
}
.drawer .logo-mark img { filter: brightness(0) invert(1); }
.btn-close {
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
  background: rgba(255,255,255,0.10);
  color: var(--color-white);
}
.btn-close:hover { background: rgba(255,255,255,0.16); }
.drawer-nav { display: flex; flex-direction: column; gap: 8px; }
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: clamp(34px, 11vw, 54px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.drawer-nav a span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  letter-spacing: .08em;
}
.drawer-note {
  margin-top: auto;
  color: rgba(255,255,255,0.58);
  font-size: 15px;
  line-height: 1.55;
  max-width: 32ch;
}
.drawer-book .btn-book {
  display: block;
  text-align: center;
  width: 100%;
  min-height: 58px;
  margin: 0;
  background: var(--color-accent);
  color: var(--color-black);
  border-radius: 14px;
}
/* Hero: keep black section out of first viewport, let image tuck under next section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  min-height: 100svh;
  padding-top: clamp(126px, 8vw, 190px);
  padding-bottom: clamp(40px, 4vw, 80px);
  overflow: visible;
  isolation: isolate;
  background: var(--color-canvas);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: clamp(48px, 7vw, 180px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  align-self: end;
  z-index: 1;
  pointer-events: none;
  justify-content: flex-start;
  margin-left: clamp(-86px, -4.5vw, -38px);
  margin-bottom: clamp(-148px, -8.5vw, -82px);
  min-height: clamp(520px, 39vw, 880px);
}
.hero-img-placeholder {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 0;
  overflow: visible;
  max-width: none;
  width: min(1260px, 68vw);
  aspect-ratio: 5 / 4;
  transform-origin: center bottom;
}
.hero-img-placeholder img {
  will-change: transform;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.42) translate(-4%, 7%);
  transform-origin: center bottom;
}
.hero-img-placeholder::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: -8%;
  right: -8%;
  bottom: -8%;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(to top,
    var(--color-canvas) 0%,
    rgba(229,231,235,0.92) 24%,
    rgba(229,231,235,0.48) 54%,
    rgba(229,231,235,0) 100%);
}
.black-stack-shell {
  will-change: auto;
  margin-top: 0;
  padding-left: 96px;
  padding-right: 96px;
  position: relative;
  z-index: 5;
}
.black-section-stack {
  background: var(--color-black);
  overflow: clip;

  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
/* Stat band: better spread and rhythm */
.stat-band { background: var(--color-black); overflow: hidden; padding: clamp(112px, 7.8vw, 210px) 0; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 0;
  align-items: stretch;
}
.stat-item {
  border-right: 1px solid rgba(255,255,255,0.16);
  display: flex;
  flex-direction: column;
  min-height: clamp(270px, 18vw, 430px);
  padding: 0 clamp(70px, 6vw, 170px);
  justify-content: center;
}
.stat-item:first-child { padding-left: clamp(28px, 3vw, 84px); }
.stat-item:last-child { border-right: none; padding-right: clamp(28px, 3vw, 84px); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.90;
  letter-spacing: -0.03em;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: clamp(112px, 7.6vw, 240px);
  margin-bottom: clamp(26px, 2vw, 54px);
}
.stat-label {
  font-size: clamp(17px, 0.45vw + 14px, 24px);
  color: var(--color-white);
  letter-spacing: -0.22px;
  max-width: 500px;
  line-height: 1.55;
}
/* Services slider: fixed card sizing + custom controls */
.svc-grid::-webkit-scrollbar { display: none; width: 0; height: 0; }
.svc-grid.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.svc-arrow:hover { transform: translateY(-50%) scale(1.04); background: var(--color-accent); color: var(--color-black); }
.svc-arrow-prev { left: max(18px, calc(var(--side-pad) - 38px)); }
.svc-arrow-next { right: max(18px, calc(var(--side-pad) - 38px)); }
/* Premium map: integrated left panel, square map edges, polygon coverage */
.map-panel-title {
  font-size: 11px;
  color: rgba(255,255,255,0.46);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  letter-spacing: .18em;
}
.map-search-input,
.legend-item,
.map-active-addr,
.map-active-zone,
.map-fee-line,
.tag { font-family: var(--font-body); }
.legend-zone,
.legend-zone-desc { font-family: var(--font-mono); }
.map-route-btn {
  border-radius: 13px;
  padding: 12px 14px;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: transform 0.2s, filter .2s;
  margin-top: 4px;
  background: var(--color-accent);
  color: var(--color-black);
  font-weight: 700;
}
.leaflet-control-zoom a { border: 0 !important; background: rgba(255,255,255,0.94) !important; color: #000 !important; }
.leaflet-overlay-pane path.route-glow {
  filter: drop-shadow(0 0 10px rgba(62,207,169,0.76));
  animation: routeDash 1.2s linear infinite;
}
.leaflet-overlay-pane path.route-halo { filter: drop-shadow(0 0 18px rgba(62,207,169,0.50)); }
@keyframes routeDash {
  to { stroke-dashoffset: -44; }
}
.hq-map-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 16px;
  box-shadow: 0 0 0 8px rgba(62,207,169,0.18), 0 6px 22px rgba(0,0,0,0.48);
}
/* Footer wordmark: no hover, muted, aligned to footer rhythm */
.hero-badge,
.sec-eyebrow,
.svc-tag,
.map-panel-title,
.map-panel-eyebrow,
.footer-bottom span,
.footer-bottom a,
.drawer-nav a span,
.rev-date,
.rev-source,
.map-search-note,
.map-helper {
  font-family: var(--font-small);
}
.navbar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  align-items: center;
  pointer-events: none;
  --nav-bg: var(--color-canvas);
  --nav-border: rgba(0,0,0,0.28);
  --nav-text: var(--color-black);
  --nav-muted: rgba(0,0,0,0.74);
  top: 6px;
  width: calc(100% - 12px);
  max-width: none;
  min-height: clamp(66px, 4.9vw, 88px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  border-radius: 14px;
  box-shadow: none;
  filter: none;
  transition: background .22s ease, border-color .22s ease, color .22s ease;
  --nav-hover-bg: #000000;
  --nav-hover-text: #ffffff;
}
.nav-link {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: 0 clamp(22px, 2vw, 52px);
  border-radius: 0;
  color: var(--nav-muted);
  font-weight: 600;
  letter-spacing: -0.03em;
  background: transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color .28s cubic-bezier(.2,.8,.2,1), transform .28s cubic-bezier(.2,.8,.2,1);
}
.nav-link:hover,
.nav-link:focus-visible { transform: none; color: var(--nav-hover-text); background: transparent; }
.navbar.on-dark {
  --nav-pill-bg: #181818;
  --nav-pill-border: rgba(255,255,255,0.10);
  --nav-bg: #000000;
  --nav-border: rgba(255,255,255,0.20);
  --nav-text: #ffffff;
  --nav-muted: rgba(255,255,255,0.82);
  --nav-hover-bg: rgba(255,255,255,.92);
  --nav-hover-text: #000000;
}
.features-sec { padding-top: var(--section-pad); }
.svc-slider-shell { position: relative; margin-top: clamp(64px, 4vw, 104px); padding-bottom: clamp(74px, 5vw, 108px); }
.svc-grid {
  display: flex;
  gap: clamp(20px, 2vw, 52px);
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  touch-action: pan-x;
  margin-top: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding: 0 var(--side-pad) 8px;
  align-items: stretch;
  padding-bottom: 0;
}
.svc-card {
  background: #e9e9e9;
  border-radius: clamp(32px, 3vw, 72px);
  overflow: hidden;
  display: grid;
  color: var(--color-black);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  min-width: 0;
  max-width: none;
  transform-origin: center center;
  scroll-snap-align: center;
  flex: 0 0 min(1360px, calc(100vw - (var(--side-pad) * 2) - 40px));
  width: min(1360px, calc(100vw - (var(--side-pad) * 2) - 40px));
  height: clamp(430px, 28vw, 610px);
  min-height: 0;
  grid-template-columns: minmax(420px, .98fr) minmax(520px, 1.02fr);
  transform: none;
}
.svc-img {
  overflow: hidden;
  background: #d9d9d9;
  min-height: 0;
  height: 100%;
}
.svc-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-black);
  padding: clamp(34px, 3.2vw, 72px);
  gap: clamp(12px, .8vw, 22px);
}
.svc-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--color-black);
  font-size: clamp(46px, 3.6vw, 94px);
  max-width: 12ch;
}
.svc-body p {
  color: rgba(0,0,0,0.68);
  line-height: 1.55;
  letter-spacing: -0.03em;
  font-size: clamp(16px, .46vw + 13px, 21px);
  max-width: 680px;
}
.svc-slider-controls {
  position: absolute;
  left: var(--side-pad);
  right: var(--side-pad);
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  pointer-events: none;
}
.svc-arrow {
  z-index: 6;
  top: 50%;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: clamp(22px, 1.4vw, 34px);
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  position: static;
  transform: none;
  pointer-events: auto;
  width: clamp(50px, 3vw, 68px);
  height: clamp(50px, 3vw, 68px);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: var(--color-white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.svc-arrow:hover,
.svc-arrow:focus-visible {
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-2px);
}
/* Clean service-area checker */
.map-canvas-wrap { position: relative; min-width: 0; overflow: hidden; }
#map {
  overflow: hidden;
  border-radius: 0;
  font-family: var(--font-body);
  grid-column: auto;
  grid-row: auto;
  height: 100%;
  min-height: clamp(680px, 48vw, 980px);
  width: 100%;
  background: #0b0b0b;
}
.map-panel {
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  left: 0;
  right: auto;
  top: 0;
  bottom: 0;
  inset: auto;
  width: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font-body);
  grid-column: auto;
  grid-row: auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.4vw, 28px);
  height: auto;
  max-height: none;
  padding: clamp(22px, 1.7vw, 34px);
  overflow: visible;
  border-right: 1px solid rgba(255,255,255,.11);
  background: linear-gradient(180deg, rgba(13,13,13,.99), rgba(3,3,3,.99));
}
.map-panel-header h3 {
  margin-top: 9px;
  font-family: var(--font-display);
  font-size: clamp(38px, 3vw, 62px);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: var(--color-white);
}
.map-panel-header p {
  margin-top: 12px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.map-panel-eyebrow,
.map-panel-title {
  display: block;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.map-search-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin: 0;
}
.map-search-input {
  width: 100%;
  letter-spacing: -0.02em;
  outline: none;
  transition: border-color 0.2s, background .2s;
  min-height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.075);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.14);
  padding: 0 16px;
  font-size: 14px;
  font-family: var(--font-body);
}
.map-search-input:focus { background: rgba(255,255,255,0.10); border-color: color-mix(in srgb, var(--color-accent), white 10%); }
.map-search-btn {
  right: 12px;
  top: 50%;
  font-size: 17px;
  line-height: 1;
  position: static;
  transform: none;
  min-height: 52px;
  border-radius: 14px;
  padding: 0 18px;
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-body);
  font-weight: 800;
}
.map-search-wrap.is-loading .map-search-btn::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.26);
  border-top-color: #000;
  animation: mapSpin .7s linear infinite;
}
@keyframes mapSpin {
  to { transform: rotate(360deg); }
}
.map-search-note,
.map-helper {
  margin-top: -10px;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .01em;
}
.map-result-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: clamp(18px, 1.35vw, 26px);
  background: rgba(255,255,255,.065);
  color: var(--color-white);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.map-result-card.is-success {
  border-color: color-mix(in srgb, var(--color-accent), transparent 54%);
  background: color-mix(in srgb, var(--color-accent), transparent 90%);
}
.map-result-card.is-custom,
.map-result-card.is-error { border-color: rgba(255,107,95,.38); }
.map-result-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  font-family: var(--font-small);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.map-result-card h4 { font-size: clamp(20px, 1vw, 26px); letter-spacing: -.035em; color: var(--color-white); }
.map-result-card p {
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -.02em;
}
.map-result-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 16px;
}
.map-result-list div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  align-items: baseline;
}
.map-result-list dt {
  color: rgba(255,255,255,.38);
  font-family: var(--font-small);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.map-result-list dd { color: rgba(255,255,255,.86); font-size: 13px; font-weight: 650; }
.map-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.map-primary-cta,
.map-secondary-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.025em;
}
.map-primary-cta { background: var(--color-accent); color: #000; }
.map-secondary-cta { background: rgba(255,255,255,.09); color: var(--color-white); border: 1px solid rgba(255,255,255,.12); }
.map-route-summary,
.map-popular-areas { display: flex; flex-direction: column; gap: 12px; }
.map-route-cards { display: grid; gap: 8px; }
.map-route-card {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.045);
  text-align: left;
  color: var(--color-white);
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}
.map-route-card:hover,
.map-route-card:focus-visible,
.map-route-card.active {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.17);
  transform: translateY(-1px);
}
.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--route-color);
  box-shadow: 0 0 20px var(--route-color);
}
.route-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.route-card-body strong { font-size: 14px; letter-spacing: -.02em; }
.route-card-body span { color: rgba(255,255,255,.58); font-size: 12px; }
.route-card-body em {
  color: rgba(255,255,255,.38);
  font-style: normal;
  font-size: 11px;
  line-height: 1.35;
}
.map-tags-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 210px;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
}
.tag {
  transition: background 0.2s, color 0.2s, transform .2s, border-color .2s;
  text-align: center;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.065);
  color: rgba(255,255,255,.78);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: -.01em;
  padding: 9px 12px;
  border-radius: 999px;
}
.tag:hover,
.tag:focus-visible,
.tag.active { background: var(--color-accent); color: #000; border-color: var(--color-accent); }
.map-more-btn {
  align-self: flex-start;
  color: rgba(255,255,255,.62);
  border-bottom: 1px solid rgba(255,255,255,.24);
  font-size: 13px;
}
.map-base-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 500;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,.56);
  color: rgba(255,255,255,.65);
  font-family: var(--font-small);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.map-base-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: 4px solid var(--color-accent);
  box-shadow: 0 0 0 7px color-mix(in srgb, var(--color-accent), transparent 80%), 0 0 26px color-mix(in srgb, var(--color-accent), transparent 42%);
}
.selected-map-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--dot, var(--color-accent));
  box-shadow: 0 0 0 8px rgba(255,255,255,.13), 0 0 28px var(--dot, var(--color-accent));
}
.leaflet-overlay-pane path.coverage-zone-active {
  filter: drop-shadow(0 0 20px color-mix(in srgb, var(--color-accent), transparent 52%));
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.footer-bottom span,
.footer-bottom a { font-size: clamp(11px, .18vw + 10px, 14px); letter-spacing: .01em; }
.faq-sec { background: var(--color-canvas); }
/* Header CTA: thinner button, no offset hover, section-aware hover color */
.btn-book {
  background: var(--color-black);
  color: var(--color-white);
  font-size: clamp(15px, 0.25vw + 13px, 19px);
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
  align-self: center;
  min-height: calc(100% - 14px);
  margin: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 10px 10px 0px;
  box-shadow: none;
  padding: 0 clamp(16px, 1.25vw, 34px);
  transform: none;
  transition: background .22s cubic-bezier(.2,.8,.2,1), color .22s cubic-bezier(.2,.8,.2,1), border-color .22s cubic-bezier(.2,.8,.2,1);
}
.btn-book:hover,
.btn-book:focus-visible {
  background: var(--color-accent);
  color: var(--color-black);
  transform: none;
  filter: none;
  opacity: 1;
}
.navbar.on-dark .btn-book { background: var(--color-accent); color: var(--color-black); }
.navbar.on-dark .btn-book:hover,
.navbar.on-dark .btn-book:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
  transform: none;
  filter: none;
}
/* Nav hover fill: square, tight, reference-like */
.nav-link::before {
  content: '';
  position: absolute;
  z-index: -1;
  background: var(--nav-hover-bg);
  opacity: 0;
  transition: opacity .28s cubic-bezier(.2,.8,.2,1), transform .28s cubic-bezier(.2,.8,.2,1);
  inset: 4px;
  border-radius: 0;
  transform: scaleX(.92) scaleY(.96);
  transform-origin: center;
}
.nav-link:hover::before,
.nav-link:focus-visible::before { opacity: 1; transform: scale(1); }
/* Footer wordmark: plain white, full-width balance, no clipping */
.footer-wordmark:hover .footer-wordmark-text {
  color: transparent;
  -webkit-text-stroke: 1px var(--color-white);
  transform: scaleX(1.045) translateX(-.01em);
}
.footer-bottom {
  padding: clamp(24px, 2.2vw, 48px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-top-color: rgba(255,255,255,.08);
}
/* Premium map preview + full-view app */
.locations-map-full {
  width: calc(100% - (var(--side-pad) * 2));
  max-width: min(var(--max), calc(100% - 32px));
  margin: clamp(52px, 3.4vw, 92px) var(--side-pad) 0;
  display: grid;
  grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
  min-height: clamp(680px, 48vw, 980px);
  background: #070707;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 68px);
  box-shadow: 0 24px 90px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.28);
  transition: border-radius .34s cubic-bezier(.2,.8,.2,1), transform .34s cubic-bezier(.2,.8,.2,1), box-shadow .34s cubic-bezier(.2,.8,.2,1);
}
.locations-map-full.is-map-preview .map-panel,
.locations-map-full.is-map-preview #map,
.locations-map-full.is-map-preview .leaflet-control-container,
.locations-map-full.is-map-preview .map-base-label {
  pointer-events: none !important;
}
.locations-map-full.is-map-preview .map-panel,
.locations-map-full.is-map-preview .map-canvas-wrap {
  filter: blur(8px) saturate(.92) brightness(.72);
  transform: scale(1.015);
  transition: filter .28s ease, transform .28s ease;
}
.map-expand-btn,
.map-full-close {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--color-accent);
  color: var(--color-black);
  font-weight: 800;
  letter-spacing: -.03em;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.map-full-close {
  position: absolute;
  z-index: 56;
  right: clamp(14px, 1.5vw, 28px);
  top: clamp(14px, 1.5vw, 28px);
  display: none;
  background: rgba(255,255,255,.94);
  color: #000;
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 14px 44px rgba(0,0,0,.35);
}
.map-full-close:hover,
.map-full-close:focus-visible { background: var(--color-accent); }
.locations-map-full.is-fullview .map-panel,
.locations-map-full.is-fullview .map-canvas-wrap {
  filter: none;
  transform: none;
  pointer-events: auto;
}
.locations-map-full.is-fullview::after,
.locations-map-full.is-fullview .map-preview-overlay { display: none; }
body.map-fullview-open { overflow: hidden; }
body.map-fullview-open .navbar { opacity: 0; pointer-events: none; transform: translate(-50%, -18px); }
/* Leaflet attribution: plain text only */
.leaflet-control-attribution {
  right: 10px !important;
  bottom: 10px !important;
  border-radius: 8px !important;
  max-width: calc(100% - 24px);
  z-index: 700 !important;
  background: transparent !important;
  color: rgba(255,255,255,.72) !important;
  padding: 0 10px 8px 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
  font-family: var(--font-small) !important;
  font-size: 11px !important;
  letter-spacing: -.02em !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.75);
}
.leaflet-container .leaflet-control-attribution { background: transparent !important; }
.leaflet-overlay-pane path.coverage-zone {
  filter: drop-shadow(0 0 10px rgba(62,207,169,0.08));
  transition: fill-opacity .22s ease, opacity .22s ease, stroke-width .22s ease;
  vector-effect: non-scaling-stroke;
}
.locations-map-full.is-map-preview #map {
  filter: blur(8px) saturate(.92) brightness(.72);
  transform: scale(1.015);
  transform-origin: center;
}
/* Make the preview feel like text floating over the map, not a modal card. */
.locations-map-full.is-map-preview .map-canvas-wrap,
.locations-map-full.is-map-preview #map { width: 100%; height: 100%; }
.map-preview-overlay {
  position: absolute;
  z-index: 28;
  justify-items: center;
  inset: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.3vw, 22px);
  padding: clamp(28px, 5vw, 72px) var(--side-pad);
  text-align: center;
  color: var(--color-white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.map-preview-eyebrow {
  text-transform: uppercase;
  font-family: var(--font-small);
  font-size: clamp(10px, .18vw + 9px, 12px);
  letter-spacing: .22em;
  color: rgba(255,255,255,.58);
}
.map-preview-overlay p {
  max-width: 36rem;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(16px, .55vw + 13px, 22px);
  line-height: 1.5;
  text-wrap: balance;
}
.map-expand-btn {
  margin-top: clamp(8px, 1vw, 16px);
  min-height: 54px;
  padding: 0 clamp(22px, 2vw, 34px);
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-black);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(62,207,169,.22);
  transform: translateZ(0);
}
.map-expand-btn:hover,
.map-expand-btn:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateZ(0);
}
/* Simple, predictable wordmark layout. No scaling tricks, no right overlap. */
.footer-wordmark:hover .footer-wordmark-text,
.footer-wordmark:hover .footer-wordmark-logo img {
  color: var(--color-white);
  -webkit-text-stroke: 0 transparent;
  transform: none;
  opacity: 1;
}
/* Make ShineRight home behave like the other nav links. */
.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  font-weight: 700;
  font-size: clamp(20px, 0.62vw + 15px, 28px);
  line-height: 1;
  white-space: nowrap;
  min-height: inherit;
  padding: 0 clamp(10px, 1.7vw, 24px);
  border-right: 1px solid var(--nav-border);
  color: var(--nav-text);
  gap: 12px;
  font-family: var(--font-brand);
  letter-spacing: -0.055em;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color .28s cubic-bezier(.2,.8,.2,1);
}
.logo::before {
  content: '';
  position: absolute;
  inset: 4px;
  z-index: -1;
  background: var(--nav-hover-bg, #000);
  border-radius: 10px 0px 0px 10px;
  opacity: 0;
  transform: scaleX(.92) scaleY(.96);
  transform-origin: center;
  transition: opacity .28s cubic-bezier(.2,.8,.2,1), transform .28s cubic-bezier(.2,.8,.2,1);
}
.logo:hover,
.logo:focus-visible { color: var(--nav-hover-text, #fff); outline: none; }
.logo:hover::before,
.logo:focus-visible::before { opacity: 1; transform: scale(1); }
.navbar:not(.on-dark) .logo:hover .logo-mark img,
.navbar:not(.on-dark) .logo:focus-visible .logo-mark img {
  filter: brightness(0) invert(1);
}
.navbar.on-dark .logo:hover .logo-mark img,
.navbar.on-dark .logo:focus-visible .logo-mark img { filter: none; }
/* Center the map preview CTA over the map canvas area and keep it minimal. */
.map-preview-overlay h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(54px, 7.8vw, 138px);
  line-height: .88;
  letter-spacing: -.045em;
  text-wrap: balance;
  max-width: min(780px, 12ch);
}
/* Full-view edge artifact fix: lock the document and force the app to own the viewport. */
html.map-fullview-lock,
body.map-fullview-open { width: 100%; overflow: hidden; background: #050505; }
.locations-map-full.is-fullview .map-canvas-wrap,
.locations-map-full.is-fullview #map,
.locations-map-full.is-fullview .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  background: #050505 !important;
}
.locations-map-full.is-fullview #map {
  height: 100svh;
  filter: none;
  transform: none;
  min-height: 100dvh;
}
/* Visible close control, offset from Leaflet zoom buttons. */
.locations-map-full.is-fullview .map-full-close {
  position: fixed;
  top: max(18px, env(safe-area-inset-top));
  right: max(86px, calc(env(safe-area-inset-right) + 86px));
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  font-weight: 850;
  letter-spacing: -0.03em;
  opacity: 1;
  visibility: visible;
}
.locations-map-full.is-fullview .map-full-close:hover,
.locations-map-full.is-fullview .map-full-close:focus-visible {
  background: var(--color-accent);
  color: var(--color-black);
  outline: none;
}
/* Leaflet attribution: one line, no box, bigger/bolder. */
.leaflet-control-attribution,
.leaflet-container .leaflet-control-attribution {
  background: transparent !important;
  color: rgba(255,255,255,.94) !important;
  font-family: var(--font-small) !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  width: max-content !important;
  max-width: none !important;
  padding: 0 14px 12px 0 !important;
  margin: 0 !important;
  letter-spacing: -0.02em !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.78) !important;
  box-shadow: none !important;
  border: 0 !important;
}
.leaflet-control-attribution a {
  color: rgba(255,255,255,.94) !important;
  font-weight: 850 !important;
  text-decoration: none !important;
}
/* Footer wordmark: stable, centered, no right overlap, no descender clipping. */
/* ─────────────────────────────────────────
   READY FIXES: nav spacing, map centering/performance, result copy, footer brand lockup
───────────────────────────────────────── */
.navbar .nav-actions { align-items: stretch; }
.navbar .nav-actions > .btn-book {
  align-self: stretch;
  height: auto;
  min-height: 0;
  margin: 4px;
  padding-top: 0;
  padding-bottom: 0;
}
.locations-map-full.is-map-preview {
  display: block;
  min-height: clamp(440px, 34vw, 620px);
  max-height: none;
  grid-template-columns: 1fr;
  place-items: stretch;
}
.locations-map-full.is-map-preview .map-panel { display: none; }
.locations-map-full.is-map-preview .map-canvas-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  filter: none;
  transform: none;
}
.locations-map-full.is-map-preview #map,
.locations-map-full.is-map-preview .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  filter: blur(7px) saturate(.95) brightness(.58) !important;
  transform: scale(1.018) translateZ(0) !important;
  transform-origin: center !important;
  will-change: transform, filter !important;
}
.locations-map-full.is-map-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 18;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(62,207,169,.20), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,.56));
}
.locations-map-full.is-map-preview .map-preview-overlay {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  inset: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 22px);
  padding: clamp(32px, 5vw, 86px) clamp(24px, 7vw, 120px);
  text-align: center;
  pointer-events: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.locations-map-full.is-map-preview .map-preview-overlay > * { pointer-events: auto; margin-left: auto; margin-right: auto; }
.locations-map-full.is-map-preview .map-preview-overlay h3 {
  max-width: min(820px, 11.5ch);
  margin: 0;
  font-size: clamp(48px, 5.6vw, 104px);
  line-height: .88;
  letter-spacing: -.045em;
}
.locations-map-full.is-map-preview .map-preview-overlay p { max-width: 38rem; margin: 0; }
.locations-map-full.is-map-preview .map-expand-btn { margin-top: clamp(8px, 1vw, 18px); transform: translateZ(0); }
.locations-map-full.is-fullview {
  position: fixed;
  inset: 0;
  z-index: 3000;
  margin: 0;
  max-height: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100dvw;
  height: 100dvh;
  min-height: 100dvh;
  max-width: none;
  overflow: hidden;
  background: #050505;
  display: grid;
  grid-template-columns: clamp(360px, 27vw, 500px) minmax(0, 1fr);
  grid-template-rows: 1fr;
}
.locations-map-full.is-fullview .map-panel {
  max-height: 100svh;
  height: 100svh;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,.10);
  border-top: 0;
  border-radius: 0;
  grid-column: 1;
  grid-row: 1;
}
.locations-map-full.is-fullview .map-canvas-wrap {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  filter: none;
  transform: none;
}
.locations-map-full.is-fullview #map,
.locations-map-full.is-fullview .leaflet-container {
  width: 100% !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  filter: none !important;
  transform: none !important;
  will-change: auto !important;
}
.leaflet-overlay-pane canvas,
.leaflet-tile-pane,
.leaflet-marker-pane { will-change: transform; transform: translateZ(0); }


/* Final dark-navbar hover text correction */
.navbar.on-dark .logo:hover,
.navbar.on-dark .logo:focus-visible,
.navbar.on-dark .nav-link:hover,
.navbar.on-dark .nav-link:focus-visible,
.navbar.on-dark .nav-drop-btn:hover,
.navbar.on-dark .nav-drop-btn:focus-visible {
  color: var(--color-black);
}
/* WordPress admin bar offset — only affects logged-in view */
body.admin-bar .navbar { top: calc(6px + 32px); }
@media (min-width: 1500px) {
  .rw-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1200px) {
  .feats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .navbar { grid-template-columns: auto 1fr auto; }
  .map-panel { width: min(380px, calc(100% - 36px)); }
}
@media (max-width: 1180px) {
  .navbar { grid-template-columns: auto 1fr auto; }
  .nav-link { padding: 0 clamp(16px, 1.35vw, 26px); }
  .footer-wordmark-logo { width: clamp(78px, 15vw, 180px); }
  .footer-wordmark-text { font-size: clamp(64px, 14vw, 180px); transform: scaleX(1.02); }
  .locations-map-full.is-fullview { grid-template-columns: minmax(320px, 400px) minmax(0, 1fr); }
}
@media (max-width: 1100px) {
  .svc-card {
    height: auto;
    grid-template-columns: 1fr;
    flex-basis: min(620px, calc(100vw - (var(--side-pad) * 2)));
    width: min(620px, calc(100vw - (var(--side-pad) * 2)));
  }
  .svc-img { height: clamp(260px, 36vw, 420px); }
  .locations-map-full { grid-template-columns: minmax(320px, 380px) minmax(0,1fr); }
}
@media (max-width: 1024px) {
  :root { --side-pad: clamp(28px, 5vw, 80px); --section-pad: clamp(76px, 10vw, 120px); --radius-xl: 4.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { max-width: 100%; }
  .stat-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item { padding: 0 0 42px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .stat-item + .stat-item { padding-top: 42px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .svc-card { width: min(86vw, 900px); min-width: min(86vw, 900px); grid-template-columns: 1fr; }
  .svc-img { min-height: 320px; order: -1; }
  .sel-options { height: 520px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; padding-bottom: clamp(140px, 18vw, 220px); }
  .hero-img-placeholder { width: min(920px, 86vw); }
  .hero-visual {
    display: flex;
    max-width: 720px;
    margin-bottom: clamp(-150px, -14vw, -80px);
    min-height: clamp(430px, 62vw, 680px);
  }
}
@media (max-width: 900px) {
  .navbar {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 66px;
    grid-template-columns: 1fr auto;
    border-radius: 16px;
  }
  .logo { border-right: 0; padding: 0 16px; }
  .nav-center, .navbar > .nav-actions > .btn-book { display: none; }
  .nav-actions { border-left: 0; }
  .btn-menu { display: inline-flex; }
  .hero { padding-top: 112px; overflow: hidden; }
  .hero-visual {
    margin-left: 0;
    margin-bottom: -48px;
    justify-content: center;
    min-height: 330px;
  }
  .hero-img-placeholder { width: 112vw; }
  .hero-img-placeholder img { transform: scale(1.18) translate(-2%, 4%); }
  .black-stack-shell { margin-top: 0; padding-left: 16px; padding-right: 16px; }
  .svc-card { flex-basis: min(84vw, 520px); width: min(84vw, 520px); grid-template-columns: 1fr; }
  .svc-img { min-height: 280px; }
  .svc-arrow { top: auto; bottom: -72px; transform: none; }
  .svc-arrow:hover { transform: scale(1.04); }
  .svc-arrow-prev { left: var(--side-pad); }
  .svc-arrow-next { right: var(--side-pad); }
  #services { padding-bottom: calc(var(--section-pad) + 44px); }
  .locations-map-full {
    margin-left: var(--side-pad);
    margin-right: var(--side-pad);
    display: flex;
    flex-direction: column;
  }
  #map { height: clamp(420px, 82vw, 620px); }
  .map-panel {
    width: 100%;
    height: auto;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
  }
}
@media (max-width: 860px) {
  .nav-center, .navbar > .nav-actions .btn-book { display: none; }
  .navbar {
    width: calc(100% - 24px);
    top: 12px;
    grid-template-columns: 1fr auto;
    padding: 0;
  }
  .btn-menu { display: flex; }
  .logo { min-height: 54px; }
}
@media (max-width: 782px) {
  body.admin-bar .navbar { top: calc(6px + 46px); }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .wrap { padding-left: var(--side-pad); padding-right: var(--side-pad); }
  .hero-inner { padding-left: var(--side-pad); padding-right: var(--side-pad); gap: 40px; }
  .hero h1 { font-size: clamp(58px, 17vw, 86px); }
  .black-stack-shell, .grey-stack-shell { padding-left: 16px; padding-right: 16px; }
  .svc-grid { padding-left: var(--side-pad); padding-right: var(--side-pad); scroll-snap-type: x mandatory; }
  .svc-card { min-width: calc(100vw - (var(--side-pad) * 2)); width: calc(100vw - (var(--side-pad) * 2)); border-radius: 34px; }
  .svc-body { padding: 32px; }
  .svc-img { min-height: 260px; }
  .feats-grid, .rw-grid { grid-template-columns: 1fr; }
  .sel-header { padding: 0 var(--side-pad); }
  .sel-options {
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 12px;
    padding-left: var(--side-pad);
    padding-right: var(--side-pad);
  }
  .sel-opt {
    min-width: 82vw;
    max-width: 82vw;
    height: 340px;
    flex: 0 0 82vw;
  }
  .sel-opt.active { flex: 0 0 82vw; }
  .sel-opt:not(.active) .sel-info { display: block; }
  .map-tags-row { grid-template-columns: 1fr 1fr; max-height: 150px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-logo-placeholder { grid-template-columns: 1fr; }
  .rev-card { width: clamp(280px, 80vw, 380px); }
  .navbar { width: 100%; top: 0; padding: 10px 16px; }
  .nav-center { background: transparent; border: 0; }
  .hero { padding-top: 104px; overflow: hidden; padding-bottom: 96px; }
  .hero-visual {
    display: flex;
    margin: 20px 0 -60px;
    min-height: 320px;
    justify-content: center;
  }
  .hero-img-placeholder { width: 112vw; aspect-ratio: 4 / 3; }
  .hero-img-placeholder img { transform: scale(1.16) translateY(4%); }
  .black-stack-shell { margin-top: -36px; }
  .stat-band { padding: 72px 0; }
  .stat-grid { gap: 0; }
  .stat-item { min-height: auto; padding: 0 0 42px; }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { padding-right: 0; }
  .footer-brand-slogan { font-size: clamp(56px, 18vw, 96px); }
  :root { --radius-xl: 3rem; --side-pad: 20px; }
  .locations-map-full {
    width: calc(100% - 24px);
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
    border-radius: 28px;
  }
  .map-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    position: relative;
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,.10);
  }
  .map-panel-header h3 { font-size: clamp(34px, 11vw, 48px); }
  #map { border-radius: 28px 28px 0 0; min-height: 430px; height: 430px; }
  .map-result-list div { grid-template-columns: 1fr; gap: 3px; }
  .map-search-wrap { grid-template-columns: 1fr; }
  .map-search-btn { width: 100%; }
  .svc-slider-shell { padding-bottom: 86px; }
  .svc-slider-controls { justify-content: flex-start; }
  .svc-body h3 { font-size: clamp(42px, 14vw, 68px); }
  .btn-book { padding: 0 18px; }
  .locations-map-full.is-fullview #map { height: 46svh; min-height: 280px; }
  .map-full-close {
    right: 12px;
    top: 12px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
  }
  .map-preview-overlay { align-content: center; border-radius: 22px; padding: 32px 24px; }
  .map-preview-overlay h3 { font-size: clamp(42px, 12vw, 68px); }
  .map-preview-overlay p { font-size: 15px; max-width: 24rem; }
  .locations-map-full.is-fullview .map-full-close {
    top: 12px;
    right: 78px;
    min-height: 44px;
    padding: 0 16px;
  }
  .footer-wordmark {
    align-items: center;
    grid-template-columns: var(--footer-logo-column, clamp(52px, 19vw, 86px)) minmax(0, 1fr);
    gap: var(--footer-wordmark-gap, clamp(12px, 3vw, 18px));
  }
  .navbar .nav-actions > .btn-book { margin: 4px; }
  .locations-map-full.is-map-preview { min-height: min(520px, 68vh); border-radius: 30px; }
  .locations-map-full.is-map-preview .map-preview-overlay { padding: 32px 24px; }
  .locations-map-full.is-map-preview .map-preview-overlay h3 { font-size: clamp(42px, 12vw, 68px); }
  .locations-map-full.is-fullview {
    overflow: hidden;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 46dvh) minmax(0, 54dvh);
  }
  .locations-map-full.is-fullview .map-canvas-wrap {
    grid-column: 1;
    grid-row: 1;
    height: 46dvh;
    min-height: 280px;
  }
  .locations-map-full.is-fullview #map,
  .locations-map-full.is-fullview .leaflet-container {
    height: 46dvh !important;
    min-height: 280px !important;
  }
  .locations-map-full.is-fullview .map-panel {
    border-top: 1px solid rgba(255,255,255,.12);
    border-right: 0;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
    grid-column: 1;
    grid-row: 2;
    height: 54dvh;
    max-height: 54dvh;
  }
  .footer-wordmark-wrap {
    --footer-lockup-height: clamp(52px, 13.4vw, 88px);
    --footer-lockup-gap: clamp(10px, 2.8vw, 18px);
    padding: 34px 20px 38px;
  }
  .footer-wordmark-inner {
    --footer-lockup-logo: clamp(56px, 18vw, 92px);
    --footer-lockup-gap: clamp(10px, 3vw, 18px);
    --footer-lockup-text: clamp(48px, 14vw, 88px);
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .footer-wordmark-logo { width: clamp(52px, 18vw, 92px); height: calc(var(--footer-lockup-height) * 1.05); max-width: 24vw; }
  .footer-wordmark-text {
    transform: scaleX(1.01);
    padding-bottom: .22em;
    font-size: var(--footer-lockup-height);
    line-height: .9;
    letter-spacing: -.076em;
  }
}
@media (max-width: 540px) {
  .logo-text { font-size: 19px; }
  .logo-mark { height: 36px; }
  .drawer { width: 100%; }
  .stat-item { padding-left: 0; padding-right: 0; }
  .footer-wordmark { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-wordmark-wrap { opacity: .28; }
}
@media (max-width: 520px) {
  .footer-wordmark { flex-direction: row; align-items: center; }
  .footer-wordmark-logo { width: 52px; }
  .footer-wordmark-text { font-size: clamp(46px, 16vw, 78px); }
}
@media (max-width: 480px) {
  :root { --side-pad: 16px; }
  .drawer { width: min(100%, 340px); }
  .logo-text { font-size: 19px; }
  .map-tags-row { grid-template-columns: 1fr; }
  .footer-wordmark { flex-direction: column; align-items: flex-start; }
  .footer-wordmark-wrap { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 430px) {
  .map-preview-overlay { width: calc(100% - 28px); }
  .footer-wordmark-inner {
    --footer-lockup-logo: clamp(46px, 16vw, 64px);
    --footer-lockup-gap: 10px;
    --footer-lockup-text: clamp(40px, 14vw, 62px);
  }
  .footer-wordmark-wrap { --footer-lockup-height: clamp(40px, 13vw, 62px); --footer-lockup-gap: 10px; }
  .footer-wordmark-logo { width: 44px; max-width: 22vw; }
  .footer-wordmark-text { font-size: clamp(40px, 15.8vw, 66px); letter-spacing: -.078em; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
  .rev-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .nav-link,
  .nav-link::before,
  .map-route-card,
  .tag,
  .leaflet-overlay-pane path.coverage-zone {
    transition: none !important;
  }
  .locations-map-full,
  .map-preview-overlay,
  .map-expand-btn,
  .map-full-close { transition: none !important; }
}


/* ── DEFAULT WORDPRESS PAGES ── */
.default-page {
  background: var(--color-canvas);
  min-height: 100vh;
}

.default-page-hero {
  padding: clamp(150px, 12vw, 260px) 0 clamp(48px, 5vw, 110px);
}

.default-page-hero .sec-title {
  margin-bottom: 0;
}

.default-page-content {
  padding: 0 0 clamp(96px, 8vw, 180px);
}

.page-body {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(18px, 0.5vw + 15px, 24px);
  line-height: 1.65;
  letter-spacing: -0.025em;
  color: var(--color-graphite);
}

.page-body > * + * {
  margin-top: 1.25em;
}

.page-body h2,
.page-body h3,
.page-body h4 {
  font-family: var(--font-display);
  color: var(--color-black);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.page-body h2 {
  font-size: clamp(46px, 4vw, 96px);
}

.page-body h3 {
  font-size: clamp(34px, 3vw, 72px);
}

.page-body a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-body ul,
.page-body ol {
  padding-left: 1.25em;
}

.page-body ul {
  list-style: disc;
}

.page-body ol {
  list-style: decimal;
}


/* ── LENIS SMOOTH SCROLL ── */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ──────────────────────────────────────────
   HOMEPAGE UX — BATCH 1
   Compact trust, package comparison, add-ons
────────────────────────────────────────── */
.black-section-stack--secondary {
  border-radius: 0;
}

/* Compact trust strip */
.trust-strip {
  background: var(--color-black);
  padding: clamp(34px, 3vw, 72px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-item {
  min-width: 0;
  padding: 0 clamp(24px, 2.4vw, 64px);
  border-right: 1px solid rgba(255,255,255,0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; border-right: 0; }
.trust-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 2vw, 54px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.035em;
  color: var(--color-white);
  text-transform: uppercase;
}
.trust-label {
  max-width: 28ch;
  font-size: clamp(13px, .28vw + 11px, 17px);
  line-height: 1.45;
  color: rgba(255,255,255,.58);
  letter-spacing: -.02em;
}

/* Three-package purchasing decision */
.packages-sec {
  padding-top: clamp(96px, 7.5vw, 176px);
  padding-bottom: clamp(104px, 8vw, 190px);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.4vw, 38px);
  margin-top: clamp(62px, 5vw, 116px);
  align-items: stretch;
}
.package-card {
  min-width: 0;
  min-height: clamp(650px, 47vw, 900px);
  padding: clamp(28px, 2.4vw, 58px);
  border-radius: clamp(28px, 2.2vw, 56px);
  background: #ededed;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}

.package-card--featured {
  background: var(--color-mint);
  transform: translateY(clamp(-18px, -1.5vw, -34px));
}
.package-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.package-index,
.package-tier,
.package-badge,
.package-meta dt,
.package-note {
  font-family: var(--font-small);
}
.package-index {
  font-size: clamp(12px, .25vw + 10px, 16px);
  color: rgba(0,0,0,.46);
  letter-spacing: .04em;
}
.package-tier,
.package-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: clamp(10px, .18vw + 9px, 13px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.package-tier {
  background: rgba(0,0,0,.07);
  color: rgba(0,0,0,.62);
}
.package-badge {
  background: var(--color-black);
  color: var(--color-white);
}
.package-title {
  position: relative;
  z-index: 1;
  margin-top: clamp(52px, 4vw, 92px);
  font-family: var(--font-display);
  font-size: clamp(58px, 4.65vw, 116px);
  font-weight: 700;
  line-height: .84;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.package-best {
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 2vw, 46px);
  max-width: 38ch;
  font-size: clamp(16px, .4vw + 13px, 21px);
  line-height: 1.5;
  color: rgba(0,0,0,.68);
}
.package-best strong { color: var(--color-black); }
.package-meta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(24px, 1.8vw, 38px) 0;
  margin: clamp(28px, 2vw, 46px) 0;
  border-top: 1px solid rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(0,0,0,.14);
}
.package-meta div { min-width: 0; }
.package-meta dt {
  margin-bottom: 6px;
  font-size: clamp(10px, .18vw + 9px, 13px);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(0,0,0,.46);
}
.package-meta dd {
  font-family: var(--font-display);
  font-size: clamp(26px, 1.75vw, 44px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.package-inclusions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-bottom: clamp(34px, 2.6vw, 58px);
}
.package-inclusions li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(14px, .32vw + 12px, 18px);
  line-height: 1.45;
  color: rgba(0,0,0,.68);
}
.package-inclusions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-black);
}
.package-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: auto;
  padding: 17px 20px;
  border-radius: var(--radius-btn);
  background: var(--color-black);
  color: var(--color-white);
  font-size: clamp(14px, .3vw + 12px, 18px);
  font-weight: 700;
  letter-spacing: -.025em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.package-cta:hover,
.package-cta:focus-visible {
  transform: translateY(-2px);
  background: var(--color-accent);
  color: var(--color-black);
}
.package-note {
  margin: clamp(38px, 3vw, 68px) auto 0;
  max-width: 58ch;
  color: rgba(255,255,255,.58);
  text-align: center;
  font-size: clamp(12px, .25vw + 10px, 16px);
  line-height: 1.6;
  letter-spacing: -.02em;
}


/* Result captions now lead with the outcome. */
.rw-caption strong { color: var(--color-black); }

@media (max-width: 1180px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item { padding: 28px 34px; }
  .trust-item:first-child { padding-left: 34px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-item:last-child { padding-right: 34px; }
  .package-grid { grid-template-columns: 1fr; max-width: 860px; margin-left: auto; margin-right: auto; }
  .package-card { min-height: 0; }
  .package-card--featured { transform: none; }
  .package-title { font-size: clamp(62px, 9vw, 108px); }
}

@media (max-width: 768px) {
  .trust-strip { padding: 20px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .trust-item:last-child { border-bottom: 0; }
  .trust-value { font-size: clamp(32px, 10vw, 48px); }
  .package-grid { margin-top: 52px; }
  .package-card { padding: 28px 24px; border-radius: 30px; }
  .package-title { margin-top: 46px; font-size: clamp(58px, 18vw, 86px); }
  .package-meta { grid-template-columns: 1fr; }
  .specialty-selector .sel-opt:not(.active) .sel-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(34px, 10vw, 52px);
    white-space: normal;
  }
  .specialty-selector .sel-opt:not(.active) .sel-kicker,
  .specialty-selector .sel-opt:not(.active) .sel-desc,
  .specialty-selector .sel-opt:not(.active) .sel-meta {
    display: inline-flex;
  }
  .specialty-selector .sel-label { align-items: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  .package-card,
  .package-card--featured,
  .package-cta { transform: none !important; transition: none !important; }
}


/* ─────────────────────────────────────────
   FOOTER — integrated oversized wordmark
───────────────────────────────────────── */

.footer-ghost-stage {
  position: relative;
  min-height: clamp(280px, 25vw, 560px);
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-ghost-wordmark {
  position: absolute;
  z-index: 0;
  left: -0.035em;
  bottom: -0.17em;

  font-family: var(--font-brand);
  font-size: clamp(230px, 37vw, 760px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.085em;
  white-space: nowrap;

  color: rgba(255,255,255,0.055);

  pointer-events: none;
  user-select: none;
}

.footer-ghost-meta {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
}

.footer-ghost-stage .footer-bottom {
  border-top: 0;
  padding: clamp(24px, 2.2vw, 48px) 0;

  color: rgba(255,255,255,0.38);
}

.footer-ghost-stage .footer-bottom a {
  transition: color 0.2s ease;
}

.footer-ghost-stage .footer-bottom a:hover,
.footer-ghost-stage .footer-bottom a:focus-visible {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .footer-ghost-stage {
    min-height: clamp(230px, 58vw, 380px);
  }

  .footer-ghost-wordmark {
    left: -0.025em;
    bottom: -0.12em;
    font-size: clamp(170px, 50vw, 380px);
    line-height: 0.74;
  }
}

/* Final cascade lock: these selectors intentionally follow the legacy footer
   rules retained above while the landing page is being consolidated. */
.site-footer .footer-conversion {
  padding: clamp(136px, 12vw, 250px) 0 clamp(90px, 8vw, 170px);
  background:
    radial-gradient(circle at 72% 30%, rgba(62,207,169,.22), transparent 32%),
    #050606;
}

.site-footer .footer-conversion__grid { display: block; }
.site-footer .footer-conversion__headline { max-width: none; }
.site-footer .footer-conversion__headline h2 {
  max-width: 8.4ch;
  font-size: clamp(108px, 13.5vw, 300px);
  line-height: .76;
}
.site-footer .footer-conversion__panel {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(280px, 1fr);
  gap: clamp(30px, 4vw, 88px);
  max-width: none;
  padding-top: 0;
  border-top: 0;
}
.site-footer .footer-conversion__actions { margin-top: 0; }
.site-footer .footer-cta-button { background: #3ecfa9; }
.site-footer .footer-core {
  padding: 0;
  background: #080909;
  border-top: 0;
}
.site-footer .footer-legal {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 26px var(--side-pad);
  border-top: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 1180px) and (min-width: 901px) {
  .process-journey {
    grid-template-columns: minmax(0, 1fr) clamp(220px, 24vw, 320px) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 52px);
  }
}

@media (max-width: 980px) {
  .site-footer .footer-conversion__grid { display: block; }
  .site-footer .footer-social-group { grid-column: auto; }
}

@media (max-width: 900px) {
  .process-journey {
    grid-template-columns: clamp(72px, 16vw, 108px) minmax(0, 1fr);
    column-gap: clamp(20px, 5vw, 42px);
  }
  .process-road { top: 16vh; height: 66vh; min-height: 430px; }
  .process-road__lane { display: none; }
  .site-footer .footer-conversion__panel { grid-template-columns: 1fr; }
  .site-footer .footer-social-group { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .site-footer .footer-conversion { padding-top: 102px; }
  .site-footer .footer-conversion__headline h2 { font-size: clamp(76px, 23vw, 116px); }
  .site-footer .footer-legal { padding-left: 20px; padding-right: 20px; }
}

/* SHINERIGHT REBUILT COMPONENTS — authoritative final cascade. */
.site-footer { margin: 0; padding: 0; background: #050606; border: 0; }
.black-section-stack .process-sec.process-horizontal { padding: 0; overflow: visible; background: #e5e7eb; }
.site-footer .footer-conversion {
  padding: clamp(92px, 9vw, 180px) 0 clamp(100px, 10vw, 210px);
  background: radial-gradient(ellipse at 50% 110%, rgba(62,207,169,.28), transparent 50%), radial-gradient(circle at 20% 35%, rgba(62,207,169,.1), transparent 26%), linear-gradient(155deg, #06100d, #030605 62%, #07120f);
}
.site-footer .footer-conversion__actions { display: flex; margin-top: clamp(38px, 3.5vw, 66px); }
.site-footer .footer-wordmark-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: clamp(124px, 19vw, 430px);
  padding: clamp(38px, 4vw, 80px) clamp(12px, 1.2vw, 26px) 0;
  overflow: hidden;
  color: #fff;
  background: #050606;
}
.site-footer .footer-wordmark-stage span {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(62px, 16.1vw, 390px);
  line-height: .76;
  letter-spacing: -.075em;
  text-align: center;
  transform: none;
}
.site-footer .footer-core { padding: 0; background: #080909; border-top: 1px solid rgba(255,255,255,.1); }

@media (min-width: 901px) {
  .specialty-showcase { --stack-sticky-top: clamp(150px, 22svh, 250px); --stack-base-top: 0px; }
  .treatment-stack::after { height: clamp(360px, 58svh, 680px); }
  .treatment-stack-item { height: 79svh; min-height: 650px; }
  .treatment-stack-card-shell { height: clamp(620px, 67svh, 780px); }
  .treatment-stack-card { top: 0; height: 100%; min-height: 620px; }
  .treatment-stack-card__copy { padding: clamp(38px, 5.2svh, 74px) 0 clamp(42px, 5.6svh, 82px); }
  .treatment-stack-card__process { margin-top: clamp(18px, 1.55vw, 30px); line-height: 1.65; }
}

@media (min-width: 901px) and (max-height: 780px) {
  .specialty-showcase { --stack-sticky-top: clamp(112px, 18svh, 150px); }
  .treatment-stack-item { height: 84svh; min-height: 540px; }
  .treatment-stack-card-shell { height: clamp(540px, 76svh, 630px); }
  .treatment-stack-card { min-height: 540px; }
  .treatment-stack-card__copy { padding: 24px 0 28px; }
}

@media (max-width: 900px) {
  .black-section-stack .process-sec.process-horizontal { padding: 0; }
  .site-footer .footer-conversion { padding: 100px 0 clamp(100px, 10vw, 150px); }
  .site-footer .footer-conversion__actions { display: flex; }
  .site-footer .footer-wordmark-stage span { font-size: 16vw; }
}

@media (max-width: 640px) {
  .site-footer .footer-conversion { padding: 86px 0 104px; }
  .site-footer .footer-conversion__actions { flex-direction: column; margin-top: 38px; }
  .site-footer .footer-wordmark-stage { min-height: 104px; padding: 36px 8px 0; }
  .site-footer .footer-wordmark-stage span { font-size: 15.8vw; }
}

/* ── August 13 component lock ───────────────────────────────────────────── */

.package-card--featured .package-cta:hover,
.package-card--featured .package-cta:focus-visible {
  color: var(--color-black);
  background: var(--color-white);
}

/* Every treatment enters with the same shell animation. Previous cards remain
   fixed in their settled position instead of being nudged upward. */
@media (min-width: 901px) {
  .treatment-stack-card,
  .treatment-stack-card-shell { transform-origin: top center; }
}

/* Desktop process: light motion field above a deep black horizontal story. */
.black-section-stack .process-sec.process-horizontal,
.process-sec.process-horizontal {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: #080909;
  border: 0;
}

.process-horizontal__runway {
  position: relative;
  height: 500svh;
  margin: 0;
  background: #080909;
}

.process-horizontal__stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: 43% 57%;
  width: 100%;
  height: 100svh;
  min-height: 680px;
  margin: 0;
  overflow: hidden;
  background: #080909;
  border: 0;
}

.process-horizontal__motion-zone {
  position: relative;
  z-index: 2;
  min-height: 0;
  overflow: hidden;
  background: #e5e7eb;
}

.process-horizontal__motion-zone::before,
.process-horizontal__motion-zone::after { display: none; content: none; }

.process-horizontal__ghost {
  position: absolute;
  z-index: 1;
  bottom: -.04em;
  left: 0;
  color: rgba(0,0,0,.055);
  font-family: var(--font-display);
  font-size: clamp(118px, 13.5vw, 300px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.04em;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}

.process-horizontal__vehicle {
  position: absolute;
  z-index: 4;
  bottom: -7%;
  left: 0;
  width: clamp(220px, 21vw, 470px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.24));
  will-change: transform;
}

.process-horizontal__points {
  position: relative;
  z-index: 3;
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: clamp(66px, 8svh, 112px) 0 clamp(62px, 8svh, 116px);
  overflow: hidden;
  color: var(--color-white);
  background: #080909;
  border: 0;
}

.process-horizontal__track {
  display: flex;
  align-items: stretch;
  gap: clamp(46px, 5vw, 116px);
  width: max-content;
  min-height: 100%;
  padding: 0 var(--side-pad);
  will-change: transform;
}

.process-intro-card,
.process-point {
  flex: 0 0 clamp(330px, 28vw, 570px);
  width: clamp(330px, 28vw, 570px);
  min-height: clamp(270px, 33svh, 430px);
  margin: 0;
  padding: clamp(30px, 3vw, 58px) 0;
  opacity: 1;
  transform: none;
  transition: none;
}

.process-intro-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(34px, 4vw, 84px);
}

.process-intro-card h2 {
  max-width: 7ch;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(74px, 7vw, 152px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.048em;
  text-transform: uppercase;
}

.process-intro-card p {
  max-width: 36ch;
  margin-top: clamp(28px, 3vw, 54px);
  color: rgba(255,255,255,.6);
  font-size: clamp(16px, .38vw + 13px, 21px);
  line-height: 1.55;
}

.process-point {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(34px, 4vw, 84px);
  border: 0;
  border-left: 1px solid rgba(255,255,255,.1);
}

.process-point:first-of-type { padding-left: clamp(34px, 4vw, 84px); border-left: 1px solid rgba(255,255,255,.1); }

.process-point__marker {
  position: static;
  display: grid;
  place-items: center;
  width: clamp(54px, 4vw, 76px);
  height: clamp(54px, 4vw, 76px);
  margin: 0 0 clamp(30px, 3vw, 52px);
  padding: clamp(12px, 1vw, 18px);
  color: var(--color-black);
  background: var(--process-accent);
  border: 0;
  border-radius: 18px;
}

.process-point__marker img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-point__number {
  margin-bottom: 12px;
  color: rgba(255,255,255,.35);
  font-family: var(--font-small);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-point__kicker {
  display: block;
  color: var(--process-accent);
  font-family: var(--font-small);
  font-size: clamp(9px, .15vw + 8px, 11px);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-point h3 {
  margin-top: 16px;
  color: var(--color-white);
  font-size: clamp(25px, 1.55vw, 38px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.process-point p {
  max-width: 32ch;
  margin-top: 18px;
  color: rgba(255,255,255,.58);
  font-size: clamp(14px, .25vw + 12px, 17px);
  line-height: 1.55;
}

.process-point.is-active,
.process-point:not(.is-active) { opacity: 1; transform: none; }

.process-horizontal__road,
.process-horizontal__road-line,
.process-horizontal__road-dash { display: none !important; }

.black-section-stack--secondary,
.black-section-stack--secondary .features-sec {
  margin-top: 0;
  background: var(--color-black);
  border-top: 0;
}

/* Conversion areas use the same restrained solid-black surface as the site. */
.site-footer .footer-conversion {
  background: #050606;
  border: 0;
}
.site-footer .footer-conversion::before,
.site-footer .footer-conversion::after { display: none !important; content: none !important; }

/* SVG textLength makes the wordmark reliably occupy the available width while
   retaining enough vertical room for the g descender. */
.site-footer .footer-wordmark-stage {
  display: block;
  width: 100%;
  min-height: 0;
  padding: clamp(34px, 4vw, 78px) clamp(8px, .8vw, 18px) clamp(22px, 2.2vw, 48px);
  overflow: visible;
  color: var(--color-white);
  background: #050606;
}

.footer-wordmark-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.footer-wordmark-svg text {
  fill: var(--color-white);
  font-family: var(--font-brand);
  font-size: 204px;
  font-weight: 800;
  letter-spacing: -.065em;
}

@media (max-width: 900px) {
  .black-section-stack .process-sec.process-horizontal,
  .process-sec.process-horizontal { background: #080909; }

  .process-horizontal__runway { height: auto; background: #080909; }

  .process-horizontal__stage {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: clamp(78px, 22vw, 112px) minmax(0, 1fr);
    grid-template-rows: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #080909;
  }

  .process-horizontal__motion-zone {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    min-height: 100%;
    overflow: visible;
    background: #080909;
  }

  .process-horizontal__ghost { display: none; }

  .process-horizontal__vehicle {
    position: sticky;
    top: 24vh;
    left: auto;
    bottom: auto;
    width: clamp(180px, 53vw, 250px);
    max-width: none;
    height: auto;
    margin: clamp(150px, 20vh, 230px) 0 0 calc(clamp(180px, 53vw, 250px) * -.34);
    transform: rotate(90deg) !important;
    transform-origin: center;
    filter: drop-shadow(0 16px 20px rgba(0,0,0,.42));
  }

  .process-horizontal__points {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding: clamp(92px, 14vw, 150px) var(--side-pad) clamp(110px, 18vw, 180px) clamp(22px, 5vw, 48px);
    overflow: visible;
    background: #080909;
  }

  .process-horizontal__track {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    transform: none !important;
  }

  .process-intro-card,
  .process-point,
  .process-point:first-of-type {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: clamp(58px, 12vw, 100px) 0;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.11);
    opacity: 1;
    transform: none;
  }

  .process-intro-card { padding-top: 0; border-top: 0; }
  .process-intro-card h2 { font-size: clamp(62px, 15vw, 104px); }
  .process-intro-card p { margin-top: 30px; font-size: clamp(15px, 3.8vw, 19px); }
  .process-point__marker { width: 58px; height: 58px; margin-bottom: 34px; border-radius: 15px; }
  .process-point h3 { font-size: clamp(28px, 7vw, 42px); }
  .process-point p { font-size: clamp(15px, 3.6vw, 18px); }

  .site-footer .footer-wordmark-stage {
    padding: 34px 6px 24px;
    overflow: visible;
  }
}

@media (max-width: 420px) {
  .process-horizontal__stage { grid-template-columns: 76px minmax(0, 1fr); }
  .process-horizontal__vehicle {
    width: 190px;
    margin-left: -64px;
  }
  .process-horizontal__points { padding-right: 18px; padding-left: 18px; }
  .process-intro-card h2 { font-size: clamp(54px, 15vw, 68px); }
  .process-point h3 { font-size: 28px; }
  .footer-wordmark-svg text { font-size: 198px; }
}

@media (prefers-reduced-motion: reduce) and (min-width: 901px) {
  .process-horizontal__runway { height: auto; }
  .process-horizontal__stage { position: relative; height: auto; min-height: 850px; }
  .process-horizontal__track { width: 100%; transform: none !important; }
  .process-intro-card,
  .process-point { flex: 1 1 0; width: auto; min-width: 0; }
  .process-horizontal__vehicle { transform: translateX(10vw) !important; }
}

/* Final cascade lock for the rebuilt components. */
.site-footer { margin: 0; padding: 0; background: #050606; border: 0; }
.black-section-stack .process-sec.process-horizontal { padding: 0; overflow: visible; background: #e5e7eb; }
.site-footer .footer-conversion {
  padding: clamp(92px, 9vw, 180px) 0 clamp(100px, 10vw, 210px);
  background:
    radial-gradient(ellipse at 50% 110%, rgba(62,207,169,.28), transparent 50%),
    radial-gradient(circle at 20% 35%, rgba(62,207,169,.1), transparent 26%),
    linear-gradient(155deg, #06100d, #030605 62%, #07120f);
}
.site-footer .footer-conversion__actions { display: flex; margin-top: clamp(38px, 3.5vw, 66px); }
.site-footer .footer-wordmark-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: clamp(124px, 19vw, 430px);
  padding: clamp(38px, 4vw, 80px) clamp(12px, 1.2vw, 26px) 0;
  overflow: hidden;
  color: #fff;
  background: #050606;
}
.site-footer .footer-wordmark-stage span {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(62px, 16.1vw, 390px);
  line-height: .76;
  letter-spacing: -.075em;
  text-align: center;
  transform: none;
}
.site-footer .footer-core { padding: 0; background: #080909; border-top: 1px solid rgba(255,255,255,.1); }

@media (min-width: 901px) {
  .specialty-showcase { --stack-sticky-top: clamp(150px, 22svh, 250px); --stack-base-top: 0px; }
  .treatment-stack::after { height: clamp(360px, 58svh, 680px); }
  .treatment-stack-item { height: 79svh; min-height: 650px; }
  .treatment-stack-card-shell { height: clamp(620px, 67svh, 780px); }
  .treatment-stack-card { top: 0; height: 100%; min-height: 620px; }
  .treatment-stack-card__copy { padding: clamp(38px, 5.2svh, 74px) 0 clamp(42px, 5.6svh, 82px); }
  .treatment-stack-card__process { margin-top: clamp(18px, 1.55vw, 30px); line-height: 1.65; }
}

@media (min-width: 901px) and (max-height: 780px) {
  .specialty-showcase { --stack-sticky-top: clamp(112px, 18svh, 150px); }
  .treatment-stack-item { height: 84svh; min-height: 540px; }
  .treatment-stack-card-shell { height: clamp(540px, 76svh, 630px); }
  .treatment-stack-card { min-height: 540px; }
  .treatment-stack-card__copy { padding: 24px 0 28px; }
}

@media (max-width: 900px) {
  .black-section-stack .process-sec.process-horizontal { padding: 0; }
  .site-footer .footer-conversion { padding: 100px 0 clamp(100px, 10vw, 150px); }
  .site-footer .footer-conversion__actions { display: flex; }
  .site-footer .footer-wordmark-stage span { font-size: 16vw; }
}

@media (max-width: 640px) {
  .site-footer .footer-conversion { padding: 86px 0 104px; }
  .site-footer .footer-conversion__actions { flex-direction: column; margin-top: 38px; }
  .site-footer .footer-wordmark-stage { min-height: 104px; padding: 36px 8px 0; }
  .site-footer .footer-wordmark-stage span { font-size: 15.8vw; }
}

/* ── 2026 final refinement layer ─────────────────────────────────────────── */

/* Treatment deck: consistent geometry and a complete arrival for every card. */
@media (min-width: 901px) {
  .specialty-showcase {
    --stack-sticky-top: clamp(150px, 22svh, 250px);
    --stack-base-top: 0px;
  }

  .treatment-stack::after {
    display: block;
    height: clamp(360px, 58svh, 680px);
  }

  .treatment-stack-item {
    height: 79svh;
    min-height: 650px;
    align-items: flex-start;
  }

  .treatment-stack-card-shell {
    position: relative;
    width: 100%;
    max-width: min(var(--max), 1840px);
    height: clamp(620px, 67svh, 780px);
    transform-origin: top center;
    pointer-events: auto;
    will-change: transform;
  }

  .treatment-stack-card {
    top: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 620px;
  }

  .treatment-stack-card__content {
    padding: clamp(34px, 3vw, 62px);
  }

  .treatment-stack-card__copy {
    justify-content: center;
    overflow: visible;
    padding: clamp(38px, 5.2svh, 74px) 0 clamp(42px, 5.6svh, 82px);
  }

  .treatment-stack-card__eyebrow {
    display: block;
    flex: none;
    width: 100%;
    margin: 0 0 clamp(18px, 1.45vw, 28px);
    line-height: 1.45;
  }

  .treatment-stack-card__description {
    margin-top: clamp(24px, 2.1vw, 42px);
  }

  .treatment-stack-card__process {
    position: relative;
    z-index: 2;
    display: block;
    flex: none;
    width: 100%;
    max-width: 54ch;
    margin: clamp(18px, 1.55vw, 30px) 0 0;
    padding: 0;
    line-height: 1.65;
  }

  .treatment-stack-card__bottom {
    position: relative;
    z-index: 3;
    flex: none;
    margin: 0;
    padding-top: clamp(20px, 1.7vw, 32px);
  }

  .treatment-stack-card__visual {
    display: block;
    position: relative;
    min-height: 0;
  }

  .treatment-stack-card__media {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .treatment-stack-card__media img {
    position: absolute;
    inset: 0;
    padding: clamp(20px, 2.2vw, 48px);
    object-fit: contain;
    object-position: center;
  }
}

@media (min-width: 901px) and (max-height: 780px) {
  .specialty-showcase { --stack-sticky-top: clamp(112px, 18svh, 150px); }
  .treatment-stack-item { height: 84svh; min-height: 540px; }
  .treatment-stack-card-shell { height: clamp(540px, 76svh, 630px); }
  .treatment-stack-card { min-height: 540px; }
  .treatment-stack-card__content { padding: 28px 34px; }
  .treatment-stack-card__copy { padding: 24px 0 28px; }
  .treatment-stack-card__title { font-size: clamp(50px, 4.2vw, 88px); }
  .treatment-stack-card__description { margin-top: 17px; font-size: clamp(15px, .35vw + 13px, 19px); line-height: 1.42; }
  .treatment-stack-card__process { margin-top: 10px; line-height: 1.4; }
  .treatment-stack-card__bottom { padding-top: 13px; }
}

@media (max-width: 900px) {
  .treatment-stack-card-shell { width: 100%; }
  .treatment-stack-card__eyebrow,
  .treatment-stack-card__process { display: block; width: 100%; line-height: 1.55; }
  .treatment-stack-card__process { margin-top: 18px; }
  .treatment-stack-card__bottom { margin-top: 8px; }
}

/* Horizontal service route. Desktop pins for the journey; mobile is linear. */
.black-section-stack .process-horizontal {
  --process-accent: #3ecfa9;
  position: relative;
  z-index: 2;
  padding: 0;
  overflow: visible;
  color: var(--color-black);
  background: #e5e7eb;
}

.process-horizontal__runway {
  position: relative;
  height: 430svh;
}

.process-horizontal__stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-rows: 54% 46%;
  width: 100%;
  height: 100svh;
  min-height: 660px;
  overflow: hidden;
  background: #e5e7eb;
}

.process-horizontal__road-zone {
  position: relative;
  z-index: 2;
  min-height: 0;
  overflow: hidden;
  background: #e5e7eb;
}

.process-horizontal__intro {
  position: relative;
  z-index: 5;
  padding-top: clamp(76px, 8svh, 118px);
}

.process-horizontal__intro .sec-eyebrow,
.process-horizontal__intro .sec-title,
.process-horizontal__intro .sec-sub { color: var(--color-black) !important; }

.process-horizontal__intro .sec-eyebrow { opacity: .55; }
.process-horizontal__intro .sec-title {
  max-width: 7.5ch;
  margin-top: 12px;
  font-size: clamp(64px, 6.5vw, 142px);
  line-height: .82;
}
.process-horizontal__intro .sec-sub {
  max-width: 35ch;
  margin-top: 18px;
  color: rgba(0,0,0,.62) !important;
  font-size: clamp(15px, .32vw + 13px, 19px);
}

.process-horizontal__ghost {
  position: absolute;
  z-index: 1;
  right: -2vw;
  bottom: -0.11em;
  color: rgba(0,0,0,.055);
  font-family: var(--font-display);
  font-size: clamp(110px, 13vw, 290px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.04em;
  white-space: nowrap;
  pointer-events: none;
}

.process-horizontal__road {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
}

.process-horizontal__road-line {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: #101214;
}

.process-horizontal__road-dash {
  position: absolute;
  right: 0;
  bottom: 44%;
  left: 0;
  height: 2px;
  opacity: .2;
  background: repeating-linear-gradient(90deg, #101214 0 70px, transparent 70px 126px);
}

.process-horizontal__vehicle {
  position: absolute;
  z-index: 6;
  bottom: -7%;
  left: 0;
  width: clamp(220px, 21vw, 470px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0,0,0,.28));
  will-change: transform;
}

.process-horizontal__points {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 0;
  padding: clamp(62px, 6svh, 94px) var(--side-pad) clamp(36px, 4svh, 70px);
  color: var(--color-white);
  background: #080909;
  list-style: none;
}

.process-point {
  position: relative;
  min-width: 0;
  padding: 0 clamp(24px, 2.5vw, 58px);
  border-left: 1px solid rgba(255,255,255,.1);
  opacity: .3;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease;
}
.process-point:first-child { padding-left: 0; border-left: 0; }
.process-point:last-child { padding-right: 0; }
.process-point.is-active { opacity: 1; transform: translateY(0); }

.process-point__marker {
  position: absolute;
  top: calc(0px - clamp(62px, 6svh, 94px) - 24px);
  left: clamp(24px, 2.5vw, 58px);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #080909;
  background: #e5e7eb;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 50%;
}
.process-point:first-child .process-point__marker { left: 0; }
.process-point.is-active .process-point__marker { background: var(--process-accent); }
.process-point__icon { font-family: var(--font-small); font-size: 11px; font-weight: 600; }
.process-point__kicker {
  display: block;
  color: var(--process-accent);
  font-family: var(--font-small);
  font-size: clamp(9px, .15vw + 8px, 11px);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.process-point h3 {
  margin-top: 17px;
  color: var(--color-white);
  font-size: clamp(20px, 1.25vw, 30px);
  line-height: 1.04;
  letter-spacing: -.04em;
}
.process-point p {
  max-width: 30ch;
  margin-top: 16px;
  color: rgba(255,255,255,.56);
  font-size: clamp(13px, .22vw + 11px, 16px);
  line-height: 1.52;
}

/* Athena-inspired conversion stage and auto-fitting white wordmark. */
.site-footer { position: relative; background: #050606; }
.site-footer .footer-conversion {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 9vw, 180px) 0 clamp(100px, 10vw, 210px);
  background:
    radial-gradient(ellipse at 50% 110%, rgba(62,207,169,.28), transparent 50%),
    radial-gradient(circle at 20% 35%, rgba(62,207,169,.1), transparent 26%),
    linear-gradient(155deg, #06100d, #030605 62%, #07120f);
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer .footer-conversion::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background:
    linear-gradient(120deg, transparent 0 45%, rgba(62,207,169,.08) 45.2% 45.7%, transparent 46% 100%),
    repeating-radial-gradient(circle at 50% 120%, transparent 0 46px, rgba(255,255,255,.025) 47px 48px);
}
.site-footer .footer-conversion::after { display: none; }

.footer-conversion__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-conversion__logo {
  display: grid;
  place-items: center;
  width: clamp(92px, 8vw, 156px);
  aspect-ratio: 1;
  margin-bottom: clamp(34px, 3vw, 60px);
  padding: clamp(18px, 1.5vw, 28px);
  background: var(--color-accent);
  border-radius: 30%;
  transform: rotate(-5deg);
}
.footer-conversion__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(5deg);
}
.footer-conversion__inner .footer-kicker { color: var(--color-accent); }
.site-footer .footer-conversion__inner h2 {
  max-width: 12ch;
  margin-top: clamp(22px, 2vw, 38px);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(72px, 8.4vw, 190px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.048em;
  text-transform: uppercase;
}
.footer-conversion__lead {
  max-width: 50ch;
  margin-top: clamp(26px, 2.4vw, 46px);
  color: rgba(255,255,255,.66);
  font-size: clamp(16px, .4vw + 13px, 21px);
  line-height: 1.55;
}
.site-footer .footer-conversion__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: clamp(38px, 3.5vw, 66px);
}
.site-footer .footer-cta-button,
.site-footer .footer-cta-link {
  display: inline-flex;
  justify-content: space-between;
  min-height: 62px;
  width: auto;
  min-width: clamp(220px, 16vw, 310px);
  padding: 10px 14px 10px 24px;
  border-radius: 999px;
}
.site-footer .footer-cta-button { background: var(--color-accent); }
.site-footer .footer-cta-link {
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.26);
}
.site-footer .footer-cta-link span:last-child {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.site-footer .footer-wordmark-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: clamp(124px, 19vw, 430px);
  padding: clamp(38px, 4vw, 80px) clamp(12px, 1.2vw, 26px) 0;
  overflow: hidden;
  color: var(--color-white);
  background: #050606;
}
.site-footer .footer-wordmark-stage span {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-brand);
  font-size: clamp(62px, 16.1vw, 390px);
  font-weight: 800;
  line-height: .76;
  letter-spacing: -.075em;
  text-align: center;
  white-space: nowrap;
  transform: none;
}

.site-footer .footer-core { padding: 0; background: #080909; border-top: 1px solid rgba(255,255,255,.1); }
.site-footer .footer-socials { margin-top: 0; }

@media (max-width: 900px) {
  .process-horizontal__runway { height: auto; }
  .process-horizontal__stage {
    position: relative;
    display: block;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }
  .process-horizontal__road-zone {
    min-height: 600px;
    padding-bottom: 180px;
  }
  .process-horizontal__intro { padding-top: clamp(92px, 15vw, 140px); }
  .process-horizontal__intro .sec-title { font-size: clamp(62px, 17vw, 112px); }
  .process-horizontal__ghost { bottom: .1em; font-size: clamp(88px, 22vw, 170px); }
  .process-horizontal__road { height: 155px; }
  .process-horizontal__vehicle {
    right: auto;
    bottom: 12px;
    left: 50%;
    width: min(70vw, 390px);
    transform: translateX(-50%) !important;
  }
  .process-horizontal__points {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 74px;
    padding-bottom: 74px;
  }
  .process-point {
    min-height: 245px;
    padding: 34px clamp(22px, 5vw, 42px);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: none;
    opacity: 1;
  }
  .process-point:nth-child(odd) { padding-left: 0; border-left: 0; }
  .process-point:nth-child(even) { padding-right: 0; }
  .process-point:nth-child(-n+2) { border-top: 0; }
  .process-point__marker { position: static; width: 44px; height: 44px; margin-bottom: 24px; background: var(--process-accent); }
  .site-footer .footer-conversion { padding-top: 100px; }
  .site-footer .footer-conversion__inner h2 { font-size: clamp(68px, 15vw, 120px); }
  .site-footer .footer-wordmark-stage span { font-size: 16vw; }
}

@media (max-width: 640px) {
  :root { --side-pad: 20px; --section-pad: 82px; }
  .process-horizontal__road-zone { min-height: 550px; }
  .process-horizontal__points { grid-template-columns: 1fr; padding-top: 52px; padding-bottom: 52px; }
  .process-point,
  .process-point:nth-child(even),
  .process-point:nth-child(odd) {
    min-height: 0;
    padding: 34px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 0;
  }
  .process-point:first-child { border-top: 0; }
  .process-point h3 { font-size: 26px; }
  .site-footer .footer-conversion { padding: 86px 0 104px; }
  .footer-conversion__logo { width: 92px; }
  .site-footer .footer-conversion__inner h2 { font-size: clamp(58px, 17vw, 92px); }
  .footer-conversion__lead { font-size: 16px; }
  .site-footer .footer-conversion__actions { flex-direction: column; align-items: stretch; }
  .site-footer .footer-cta-button,
  .site-footer .footer-cta-link { width: 100%; min-width: 0; }
  .site-footer .footer-wordmark-stage { min-height: 104px; padding: 36px 8px 0; }
  .site-footer .footer-wordmark-stage span { font-size: 15.8vw; letter-spacing: -.075em; }
  .footer-core__main { grid-template-columns: 1fr; min-height: 0; }
  .footer-slogan-panel,
  .footer-links-panel { padding: 54px 20px; }
  .footer-link-columns { grid-template-columns: 1fr 1fr; gap: 44px 20px; }
  .footer-social-group { grid-column: 1 / -1; }
}

@media (max-width: 360px) {
  :root { --side-pad: 16px; }
  .navbar { padding-right: 12px; padding-left: 12px; }
  .navbar .logo-text { display: none; }
  .drawer { width: min(94vw, 340px); }
  .hero h1 { font-size: clamp(62px, 20vw, 76px); }
  .hero-actions { align-items: stretch; }
  .hero-actions a { width: 100%; justify-content: center; }
  .treatment-stack { padding: 0 12px; }
  .treatment-stack-card__content { padding: 24px 18px; }
  .treatment-stack-card__copy { padding: 42px 0 32px; }
  .treatment-stack-card__title { font-size: clamp(48px, 16vw, 58px); }
  .treatment-stack-card__description { font-size: 15px; }
  .treatment-stack-card__meta { font-size: 8px; }
  .treatment-stack-card__visual { min-height: 280px; }
  .process-horizontal__road-zone { min-height: 510px; padding-bottom: 150px; }
  .process-horizontal__intro .sec-title { font-size: 56px; }
  .process-horizontal__vehicle { width: 78vw; }
  .site-footer .footer-conversion__inner h2 { font-size: 54px; }
  .footer-slogan { font-size: 62px; }
  .footer-link-columns { grid-template-columns: 1fr; }
  .footer-social-group { grid-column: auto; }
  .footer-legal { padding-right: 16px !important; padding-left: 16px !important; }
}

/* ─────────────────────────────────────────
   FINAL REFINEMENT — stack, journey, footer
───────────────────────────────────────── */

/* Every active treatment settles at one shared point. Deck separation is
   applied only to cards that have already moved behind it. */
@media (min-width: 901px) {
  .specialty-showcase {
    --stack-sticky-top: clamp(230px, 27svh, 320px);
    --stack-base-top: 0px;
  }

  .treatment-stack::after {
    height: clamp(240px, 34svh, 430px);
  }

  .treatment-stack-item {
    height: 70svh;
    min-height: 520px;
  }

  .treatment-stack-card {
    top: var(--stack-base-top);
    height: clamp(500px, 56svh, 620px);
    min-height: 0;
  }
}

/* Light process canvas with an exactly centred three-lane road. */
.black-section-stack .process-sec {
  --process-accent: #3ecfa9;
  z-index: 1;
  overflow: visible;
  padding-bottom: 0;
  color: var(--color-black);
  background: #e5e7eb;
  border-bottom: 0;
}

.black-section-stack .process-sec .sec-eyebrow,
.black-section-stack .process-sec .sec-title,
.black-section-stack .process-sec .sec-sub {
  color: var(--color-black);
}

.black-section-stack .process-sec .sec-eyebrow { opacity: .58; }
.black-section-stack .process-sec .sec-sub { color: rgba(0,0,0,.68); }

.process-journey {
  grid-template-columns: minmax(0, 1fr) clamp(300px, 23vw, 460px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 88px);
}

.process-story { top: clamp(150px, 18vh, 230px); }

.process-story__meta span {
  color: rgba(0,0,0,.58);
  border-color: rgba(0,0,0,.2);
}

.process-rail {
  min-height: 100%;
  overflow: visible;
  background: #090a0a;
}

.process-road {
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #090a0a;
  box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}

.process-road__edge {
  width: 1px;
  background: rgba(255,255,255,.18);
}

.process-road__edge--left { left: 0; }
.process-road__edge--right { right: 0; }

.process-road__lane {
  position: absolute;
  top: -10%;
  bottom: -10%;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    var(--process-accent) 0 38px,
    transparent 38px 78px
  );
  opacity: .78;
}

.process-road__lane--left { left: 33.333%; }
.process-road__lane--right { left: 66.666%; }

.process-vehicle {
  top: clamp(30px, 6vh, 72px);
  width: 29%;
  min-width: 76px;
  transform: translateX(-50%);
}

.process-vehicle__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.5));
}

.process-vehicle__image:not([src]),
.process-vehicle__image[src=""] { display: none; }

.process-step {
  border-color: rgba(0,0,0,.14);
  opacity: .24;
}

.process-step.is-active { opacity: 1; }
.process-step__number { color: var(--process-accent); }
.process-step__kicker { color: rgba(0,0,0,.46); }
.process-step h3 { color: var(--color-black); }
.process-step p { color: rgba(0,0,0,.66); }

.black-section-stack .features-sec {
  position: relative;
  z-index: 4;
  margin-top: 0;
  background: var(--color-black);
}

/* Standalone logo and explicit wordmark bridge. */
.site-footer { background: var(--color-black); }

.footer-logo-standalone {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 50%;
  width: clamp(136px, 12vw, 244px);
  height: clamp(94px, 8vw, 164px);
  transform: translate(-50%, -50%);
}

.footer-logo-standalone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.footer-conversion {
  padding: clamp(136px, 12vw, 250px) 0 clamp(90px, 8vw, 170px);
  background:
    radial-gradient(circle at 72% 30%, rgba(62,207,169,.22), transparent 32%),
    #050606;
}

.footer-conversion__grid {
  display: block;
}

.footer-conversion__headline {
  max-width: none;
}

.footer-conversion__headline h2 {
  max-width: 8.4ch;
  margin-top: clamp(28px, 2.6vw, 54px);
  color: var(--color-white);
  font-size: clamp(108px, 13.5vw, 300px);
  line-height: .76;
}

.footer-conversion__details {
  display: grid;
  grid-template-columns: minmax(200px, .7fr) minmax(360px, 1fr);
  gap: clamp(48px, 8vw, 180px);
  align-items: start;
  margin-top: clamp(72px, 8vw, 160px);
  padding-top: clamp(26px, 2.4vw, 48px);
  border-top: 1px solid rgba(255,255,255,.18);
}

.footer-conversion__location {
  color: var(--color-white);
  font-size: clamp(24px, 2vw, 46px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.footer-conversion__panel {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(280px, 1fr);
  gap: clamp(30px, 4vw, 88px);
  padding-top: 0;
  border-top: 0;
}

.footer-conversion__panel > p {
  margin: 0;
}

.footer-conversion__actions { margin-top: 0; }
.footer-cta-button { background: #3ecfa9; }

.footer-wordmark-stage {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: clamp(46px, 5vw, 96px) var(--side-pad) clamp(34px, 3.6vw, 72px);
  color: #3ecfa9;
  background: #050606;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-wordmark-stage span {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(136px, 20.5vw, 470px);
  font-weight: 800;
  line-height: .73;
  letter-spacing: -.085em;
  white-space: nowrap;
}

/* Structured two-panel footer inspired by the supplied grid reference. */
.footer-core {
  padding: 0;
  overflow: hidden;
  background: #080909;
  border-top: 0;
}

.footer-core__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  min-height: clamp(560px, 44vw, 900px);
}

.footer-slogan-panel,
.footer-links-panel {
  padding: clamp(44px, 4.5vw, 96px) var(--side-pad);
}

.footer-slogan-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,.12);
}

.footer-slogan {
  color: var(--color-white);
  font-size: clamp(76px, 7.2vw, 164px);
  line-height: .88;
  letter-spacing: -.055em;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  margin-top: clamp(58px, 7vw, 140px);
}

.footer-contact-list a,
.footer-contact-list span {
  width: fit-content;
  color: rgba(255,255,255,.64);
  font-size: clamp(14px, .32vw + 12px, 19px);
}

.footer-links-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 76px);
}

.footer-social-group > a {
  display: inline-block;
  color: rgba(255,255,255,.64);
  font-size: clamp(14px, .3vw + 12px, 18px);
}

.footer-service-note {
  max-width: 34ch;
  margin-top: 70px;
  color: rgba(255,255,255,.5);
  font-size: clamp(17px, .6vw + 13px, 26px);
  line-height: 1.45;
}

.footer-legal {
  width: 100%;
  padding: 26px var(--side-pad);
  border-top: 1px solid rgba(255,255,255,.12);
}

@media (max-width: 1100px) {
  .process-journey {
    grid-template-columns: minmax(0, 1fr) clamp(220px, 24vw, 320px) minmax(0, 1fr);
    gap: clamp(24px, 3vw, 52px);
  }

  .footer-conversion__panel { grid-template-columns: 1fr; }
  .footer-core__main { grid-template-columns: 1fr; }
  .footer-slogan-panel { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 900px) {
  .black-section-stack .process-sec { padding-top: clamp(92px, 14vw, 140px); }

  .process-journey {
    grid-template-columns: clamp(72px, 16vw, 108px) minmax(0, 1fr);
    column-gap: clamp(20px, 5vw, 42px);
  }

  .process-story { grid-column: 1 / -1; }
  .process-rail { grid-column: 1; background: #090a0a; }
  .process-steps { grid-column: 2; }
  .process-road {
    top: 16vh;
    height: 66vh;
    min-height: 430px;
  }

  .process-road__lane { display: none; }
  .process-road::before {
    content: '';
    position: absolute;
    top: -10%;
    bottom: -10%;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to bottom, var(--process-accent) 0 34px, transparent 34px 68px);
  }

  .process-vehicle { width: 72%; }

  .footer-conversion__details { grid-template-columns: 1fr; }
  .footer-link-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-social-group { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-logo-standalone { width: 120px; height: 86px; }
  .footer-conversion { padding-top: 102px; }
  .footer-conversion__headline h2 { font-size: clamp(76px, 23vw, 116px); }
  .footer-conversion__details { margin-top: 62px; }
  .footer-conversion__panel { grid-template-columns: 1fr; }
  .footer-wordmark-stage { padding-left: 20px; padding-right: 20px; }
  .footer-wordmark-stage span { font-size: clamp(82px, 28vw, 160px); }
  .footer-slogan-panel,
  .footer-links-panel { padding: 46px 20px; }
  .footer-slogan { font-size: clamp(66px, 20vw, 98px); }
  .footer-link-columns { grid-template-columns: 1fr 1fr; gap: 42px 20px; }
  .footer-legal { padding-left: 20px; padding-right: 20px; }
}

/* ─────────────────────────────────────────
   PROCESS JOURNEY — responsive road layout
───────────────────────────────────────── */
@media (max-width: 1180px) {
  .process-journey {
    grid-template-columns: minmax(220px, .72fr) minmax(122px, .28fr) minmax(330px, 1fr);
    gap: clamp(28px, 3.8vw, 64px);
  }
  .process-story .sec-title { font-size: clamp(64px, 7vw, 106px); }
  .process-step h3 { font-size: clamp(56px, 6vw, 90px); }
}

@media (max-width: 900px) {
  .process-sec { padding-top: clamp(92px, 14vw, 140px); }
  .process-journey {
    grid-template-columns: clamp(78px, 18vw, 116px) minmax(0, 1fr);
    column-gap: clamp(22px, 5vw, 48px);
  }
  .process-story {
    position: relative;
    top: auto;
    grid-column: 1 / -1;
    padding-bottom: clamp(70px, 12vw, 110px);
  }
  .process-story .sec-title { font-size: clamp(64px, 13vw, 106px); }
  .process-story .sec-sub { max-width: 46ch; }
  .process-rail { grid-column: 1; grid-row: 2; }
  .process-road {
    top: 18vh;
    height: 62vh;
    min-height: 430px;
  }
  .process-road__edge--left { left: 12%; }
  .process-road__edge--right { right: 12%; }
  .process-vehicle { width: 90%; }
  .process-steps { grid-column: 2; grid-row: 2; }
  .process-step {
    min-height: 66vh;
    padding: 28px 0;
  }
  .process-step__copy { padding: clamp(40px, 10vh, 82px) 0; }
  .process-step h3 { font-size: clamp(48px, 12vw, 86px); }
}

@media (max-width: 520px) {
  .process-journey {
    grid-template-columns: 66px minmax(0, 1fr);
    column-gap: 18px;
  }
  .process-story .sec-title { font-size: clamp(60px, 18vw, 84px); }
  .process-story__meta { gap: 6px; }
  .process-story__meta span { padding: 7px 9px; font-size: 8px; }
  .process-road { min-height: 390px; }
  .process-road__line { width: 2px; background-size: auto; }
  .process-road__progress { display: none; }
  .process-step { min-height: 62vh; }
  .process-step h3 { font-size: clamp(46px, 15vw, 68px); }
  .process-step p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .process-step { opacity: 1; transform: none; transition: none; }
  .process-vehicle { transform: translateX(-50%) !important; }
}

/* ─────────────────────────────────────────
   INTEGRATED CONVERSION FOOTER
───────────────────────────────────────── */
.site-footer {
  position: relative;
  padding: 0;
  overflow: visible;
  color: var(--color-white);
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bridge-mark {
  position: absolute;
  z-index: 8;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: clamp(112px, 10vw, 196px);
  aspect-ratio: 1;
  padding: clamp(25px, 2.5vw, 48px);
  transform: translate(-50%, -50%) rotate(-7deg);
  background: var(--color-mint);
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 32% 68% 44% 56% / 52% 42% 58% 48%;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}
.footer-bridge-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(7deg);
}
.footer-conversion {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 11vw, 230px) 0 clamp(80px, 8vw, 170px);
  background:
    radial-gradient(circle at 74% 28%, rgba(62,207,169,.16), transparent 28%),
    var(--color-black);
}
.footer-conversion::before,
.footer-conversion::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.footer-conversion::before {
  width: clamp(360px, 48vw, 960px);
  aspect-ratio: 1;
  right: -18%;
  top: -40%;
}
.footer-conversion::after {
  width: clamp(260px, 32vw, 680px);
  aspect-ratio: 1;
  right: 2%;
  top: -20%;
}
.footer-conversion__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: end;
  gap: clamp(54px, 8vw, 180px);
}
.footer-kicker,
.footer-nav-title {
  color: rgba(255,255,255,.42);
  font-family: var(--font-small);
  font-size: clamp(9px, .16vw + 8px, 12px);
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-conversion__headline h2 {
  max-width: 8ch;
  margin-top: clamp(28px, 2.6vw, 54px);
  font-family: var(--font-display);
  font-size: clamp(92px, 10vw, 230px);
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.footer-conversion__panel {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.footer-conversion__panel > p {
  max-width: 38ch;
  color: rgba(255,255,255,.64);
  font-size: clamp(17px, .46vw + 13px, 22px);
  line-height: 1.58;
  letter-spacing: -.025em;
}
.footer-conversion__actions {
  display: grid;
  gap: 12px;
  margin-top: clamp(34px, 3vw, 58px);
}
.footer-cta-button,
.footer-cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-cta-button {
  min-height: clamp(82px, 6.5vw, 126px);
  padding: clamp(20px, 1.7vw, 32px);
  color: var(--color-black);
  background: var(--color-mint);
  border-radius: clamp(20px, 1.7vw, 32px);
  font-size: clamp(18px, .55vw + 14px, 25px);
  font-weight: 750;
  letter-spacing: -.035em;
  transition: background .25s ease, transform .25s ease;
}
.footer-cta-button span:last-child {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 50%;
  font-size: 22px;
  transition: transform .3s ease;
}
.footer-cta-button:hover,
.footer-cta-button:focus-visible { color: var(--color-black); background: var(--color-white); transform: translateY(-2px); }
.footer-cta-button:hover span:last-child,
.footer-cta-button:focus-visible span:last-child { transform: rotate(45deg); }
.footer-cta-link {
  min-height: 54px;
  padding: 0 6px;
  color: rgba(255,255,255,.58);
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: 14px;
  transition: color .2s ease, border-color .2s ease;
}
.footer-cta-link:hover,
.footer-cta-link:focus-visible { color: var(--color-white); border-color: rgba(255,255,255,.5); }
.footer-core {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 6vw, 130px) 0 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #070808;
  background-size: clamp(68px, 7vw, 138px) clamp(68px, 7vw, 138px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.site-footer .footer-wordmark {
  position: absolute;
  z-index: 0;
  left: -.04em;
  bottom: .04em;
  font-family: var(--font-brand);
  font-size: clamp(170px, 28vw, 590px);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.085em;
  white-space: nowrap;
  color: rgba(255,255,255,.035);
  pointer-events: none;
  user-select: none;
}
.footer-core__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(140px, .55fr)) minmax(200px, .8fr);
  gap: clamp(42px, 5vw, 110px);
  min-height: clamp(330px, 28vw, 560px);
  padding-bottom: clamp(72px, 8vw, 170px);
}
.footer-identity { max-width: 430px; }
.footer-name {
  display: inline-block;
  color: var(--color-white);
  font-family: var(--font-brand);
  font-size: clamp(42px, 3.4vw, 76px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.065em;
}
.footer-identity > p,
.footer-social-group > p {
  margin-top: 24px;
  color: rgba(255,255,255,.5);
  font-size: clamp(14px, .28vw + 12px, 18px);
  line-height: 1.55;
}
.footer-contact-list {
  display: grid;
  gap: 9px;
  margin-top: 34px;
}
.footer-contact-list a,
.footer-nav-group a {
  width: fit-content;
  color: rgba(255,255,255,.62);
  font-size: clamp(14px, .3vw + 12px, 18px);
  line-height: 1.4;
  transition: color .2s ease, transform .2s ease;
}
.footer-contact-list a:hover,
.footer-nav-group a:hover { color: var(--color-mint); transform: translateX(3px); }
.footer-nav-group { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-nav-group .footer-nav-title,
.footer-social-group .footer-nav-title { margin-bottom: 10px; }
.footer-socials { display: flex; gap: 8px; margin-top: 28px; }
.footer-socials span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  font-family: var(--font-small);
  font-size: 10px;
}
.footer-legal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-legal span,
.footer-legal a {
  color: rgba(255,255,255,.36);
  font-family: var(--font-small);
  font-size: clamp(9px, .16vw + 8px, 12px);
  letter-spacing: .02em;
}
.footer-legal a { justify-self: end; transition: color .2s ease; }
.footer-legal a:hover { color: var(--color-white); }

@media (max-width: 980px) {
  .footer-conversion__grid { grid-template-columns: 1fr; align-items: start; }
  .footer-conversion__panel { max-width: 680px; }
  .footer-conversion__headline h2 { font-size: clamp(86px, 17vw, 160px); }
  .footer-core__grid { grid-template-columns: 1.25fr repeat(2, .75fr); }
  .footer-social-group { grid-column: 2 / -1; }
}

@media (max-width: 640px) {
  .footer-bridge-mark { width: 104px; padding: 24px; }
  .footer-conversion { padding-top: 92px; }
  .footer-conversion__grid { gap: 52px; }
  .footer-conversion__headline h2 { font-size: clamp(70px, 21vw, 104px); }
  .footer-conversion__panel { padding-top: 24px; }
  .footer-core__grid { grid-template-columns: 1fr 1fr; gap: 48px 24px; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-social-group { grid-column: 1 / -1; }
  .footer-legal { grid-template-columns: 1fr; gap: 9px; }
  .footer-legal a { justify-self: start; }
  .site-footer .footer-wordmark { bottom: .18em; font-size: clamp(120px, 44vw, 240px); }
}

@media (max-width: 540px) {
  .footer-ghost-stage {
    min-height: 250px;
  }

  .footer-ghost-wordmark {
    bottom: 0.04em;
    font-size: clamp(150px, 48vw, 260px);
  }

  .footer-ghost-stage .footer-bottom {
    align-items: flex-start;
    padding: 22px 0;
    font-size: 11px;
  }
}

/* SHINERIGHT REBUILT COMPONENTS — authoritative final cascade. */
.site-footer { margin: 0; padding: 0; background: #050606; border: 0; }
.black-section-stack .process-sec.process-horizontal { padding: 0; overflow: visible; background: #e5e7eb; }
.site-footer .footer-conversion {
  padding: clamp(92px, 9vw, 180px) 0 clamp(100px, 10vw, 210px);
  background: radial-gradient(ellipse at 50% 110%, rgba(62,207,169,.28), transparent 50%), radial-gradient(circle at 20% 35%, rgba(62,207,169,.1), transparent 26%), linear-gradient(155deg, #06100d, #030605 62%, #07120f);
}
.site-footer .footer-conversion__actions { display: flex; margin-top: clamp(38px, 3.5vw, 66px); }
.site-footer .footer-wordmark-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: clamp(124px, 19vw, 430px);
  padding: clamp(38px, 4vw, 80px) clamp(12px, 1.2vw, 26px) 0;
  overflow: hidden;
  color: #fff;
  background: #050606;
}
.site-footer .footer-wordmark-stage span {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(62px, 16.1vw, 390px);
  line-height: .76;
  letter-spacing: -.075em;
  text-align: center;
  transform: none;
}
.site-footer .footer-core { padding: 0; background: #080909; border-top: 1px solid rgba(255,255,255,.1); }

@media (min-width: 901px) {
  .specialty-showcase { --stack-sticky-top: clamp(150px, 22svh, 250px); --stack-base-top: 0px; }
  .treatment-stack::after { height: clamp(360px, 58svh, 680px); }
  .treatment-stack-item { height: 79svh; min-height: 650px; }
  .treatment-stack-card-shell { height: clamp(620px, 67svh, 780px); }
  .treatment-stack-card { top: 0; height: 100%; min-height: 620px; }
  .treatment-stack-card__copy { padding: clamp(38px, 5.2svh, 74px) 0 clamp(42px, 5.6svh, 82px); }
  .treatment-stack-card__process { margin-top: clamp(18px, 1.55vw, 30px); line-height: 1.65; }
}

@media (min-width: 901px) and (max-height: 780px) {
  .specialty-showcase { --stack-sticky-top: clamp(112px, 18svh, 150px); }
  .treatment-stack-item { height: 84svh; min-height: 540px; }
  .treatment-stack-card-shell { height: clamp(540px, 76svh, 630px); }
  .treatment-stack-card { min-height: 540px; }
  .treatment-stack-card__copy { padding: 24px 0 28px; }
}

@media (max-width: 900px) {
  .black-section-stack .process-sec.process-horizontal { padding: 0; }
  .site-footer .footer-conversion { padding: 100px 0 clamp(100px, 10vw, 150px); }
  .site-footer .footer-conversion__actions { display: flex; }
  .site-footer .footer-wordmark-stage span { font-size: 16vw; }
}

@media (max-width: 640px) {
  .site-footer .footer-conversion { padding: 86px 0 104px; }
  .site-footer .footer-conversion__actions { flex-direction: column; margin-top: 38px; }
  .site-footer .footer-wordmark-stage { min-height: 104px; padding: 36px 8px 0; }
  .site-footer .footer-wordmark-stage span { font-size: 15.8vw; }
}
