/* Watsu Miami production — mockups/shared.css + mockups/stillwater-spa.css */
/* Shared production tokens from live watsumiami.com */
:root {
  --color-text: #193342;
  --color-muted: #4a6572;
  --color-accent: #2a7a8c;
  --color-bg: #f4f7f8;
  --color-white: #ffffff;
  --color-border: #d5e2e8;
  --font-serif: "Cinzel", Georgia, "Times New Roman", serif;
  --font-sans: "Open Sans", system-ui, sans-serif;
  --max: 72rem;
  --btn-radius: 999px;
  --btn-shadow: 0 4px 20px rgb(12 28 36 / 0.14);
  --btn-shadow-hover: 0 10px 32px rgb(12 28 36 / 0.22);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 17px;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--color-accent); }
a:hover { text-decoration: underline; }

.shell { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.site-nav .logo img { height: 48px; width: auto; }
.site-nav-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
}
.site-nav-panel a {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 500;
}
.site-nav-panel a:hover { color: var(--color-accent); }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.phone-link:hover { color: var(--color-accent); }
.phone-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.92;
}
.phone-text {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}
.site-nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav-toggle-btn {
  display: none;
}
.site-nav-toggle-icon {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background 0.2s ease;
}
.site-nav-toggle-icon::before,
.site-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, top 0.25s ease;
}
.site-nav-toggle-icon::before { top: -7px; }
.site-nav-toggle-icon::after { top: 7px; }
.site-nav-toggle:checked + .site-nav-toggle-btn .site-nav-toggle-icon {
  background: transparent;
}
.site-nav-toggle:checked + .site-nav-toggle-btn .site-nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.site-nav-toggle:checked + .site-nav-toggle-btn .site-nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 800px) {
  .site-nav .inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0.35rem;
  }
  .site-nav-toggle-btn {
    grid-column: 1;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    background: var(--color-bg);
    color: inherit;
    cursor: pointer;
  }
  .site-nav-toggle-text { display: none; }
  .site-nav .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
  }
  .site-nav .logo img {
    height: 40px;
  }
  .site-nav .phone-link {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .site-nav-panel {
    grid-column: 1 / -1;
    grid-row: 2;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.25s ease,
      border-color 0.25s ease;
    padding: 0;
    border-top: 1px solid transparent;
  }
  .site-nav:has(.site-nav-toggle:checked) .site-nav-panel {
    max-height: 24rem;
    opacity: 1;
    pointer-events: auto;
    padding: 0.35rem 0 0.85rem;
    border-top-color: var(--color-border);
  }
  .site-nav-panel a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  .site-nav-panel a:last-child { border-bottom: 0; }
}

.section { padding: clamp(3rem, 7vw, 4.5rem) 0; }
.section--white { background: var(--color-white); }
.section--cream { background: #f8f6f2; }
.section--testimonials {
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
  border-bottom: 1px solid var(--color-border);
}
.section--testimonials .testimonial-grid {
  margin-top: 1.5rem;
}
.google-reviews {
  margin-top: 2rem;
  text-align: center;
}
.google-reviews__badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.35rem;
  border: 1px solid var(--color-border);
  background: #fff;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.google-reviews__badge:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgb(25 51 66 / 0.1);
  text-decoration: none;
}
.google-reviews__logo {
  display: flex;
  flex-shrink: 0;
}
.google-reviews__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  color: #fdd835;
}
.google-reviews__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left;
  line-height: 1.3;
}
.google-reviews__text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}
.google-reviews__text span {
  font-size: 0.85rem;
  color: var(--color-muted);
}
.section h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.section .lead { color: var(--color-muted); max-width: 52rem; margin-bottom: 1.25rem; }

.btn-primary {
  display: inline-block;
  background: var(--color-text);
  color: var(--color-white) !important;
  padding: 0.85rem 1.6rem;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--color-accent); }

.modality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
@media (max-width: 768px) { .modality-grid { grid-template-columns: repeat(2, 1fr); } }
.modality-grid figure { margin: 0; }
.modality-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.modality-grid figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  padding: 0.4rem 0.25rem;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 700px) { .facility-grid { grid-template-columns: 1fr; } }
.facility-grid figure { margin: 0; background: var(--color-white); border: 1px solid var(--color-border); }
.facility-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.facility-grid figcaption { padding: 0.65rem; text-align: center; font-size: 0.85rem; color: var(--color-muted); }

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-grid blockquote {
  background: #f8f6f2;
  border: 1px solid var(--color-border);
  padding: 1.25rem 1.35rem;
  font-style: italic;
  color: var(--color-muted);
  font-size: 0.95rem;
  height: 100%;
}
.testimonial-grid cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.85rem;
}

.site-footer {
  background: var(--color-text);
  color: #d8e8ec;
  padding: clamp(3rem, 7vw, 3.5rem) 0;
  text-align: center;
}
.site-footer h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
}
.site-footer a { color: #9fd4e0; font-weight: 600; font-size: 1.15rem; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer p { opacity: 0.85; font-size: 0.9rem; margin-top: 0.85rem; }
.site-footer p.site-footer__phone {
  margin-top: 1.5rem;
}
.site-footer p.site-footer__meta {
  margin-top: 1.25rem;
}
.site-footer__meta a {
  font-size: 1.05rem;
  font-weight: 400;
}
.site-footer__meta a:not(:last-child)::after {
  content: "·";
  padding: 0 0.85em;
  opacity: 0.65;
  pointer-events: none;
}
.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}
.site-footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 50%;
  color: #d8e8ec;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.site-footer__social a:hover {
  color: #fff;
  border-color: rgb(255 255 255 / 0.45);
  background: rgb(255 255 255 / 0.08);
}
.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.7;
}
.site-footer__credit {
  margin: 0.9rem 0 0;
  font-size: 0.75rem;
  opacity: 0.55;
}
.site-footer__credit a {
  font-size: inherit;
  font-weight: 400;
  color: #9fd4e0;
}
.site-footer__credit a:hover {
  color: #fff;
}

/* Spa homepage system — shared by Stillwater variants */

.site-nav--spa {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgb(12 28 36 / 0.94);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}
.site-nav--spa .inner { padding: 0.85rem 0; }
.site-nav--spa .logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.15);
}
.site-nav--spa .site-nav-panel a {
  color: rgb(200 220 228);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-nav--spa .site-nav-panel a:hover { color: #fff; }
.site-nav--spa .phone-link,
.site-nav--spa .phone-text {
  color: #fff;
}
.site-nav--spa .phone-text {
  font-size: 0.9rem;
}
.site-nav--spa .phone-link:hover {
  color: #fff;
  opacity: 0.85;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero .hero-photo {
  position: absolute;
  left: 0;
  top: -12%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center center;
  transform: translate3d(0, var(--hero-parallax, 0), 0);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero-photo {
    top: 0;
    height: 100%;
    transform: none;
    will-change: auto;
  }
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(12 28 36 / 0.55) 0%,
    rgb(12 28 36 / 0.15) 40%,
    rgb(12 28 36 / 0.35) 100%
  );
}
.hero .hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 7rem 0 4.5rem;
  color: #f4f9fa;
}
.hero .hero-eyebrow {
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.92;
  margin-bottom: 0.75rem;
}
.hero .hero-pre,
.hero .hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.95;
  margin-bottom: 0.5rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 9vw, 5.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0.25rem 0 1rem;
  text-shadow: 0 4px 40px rgb(0 0 0 / 0.35);
}
.hero .hero-loc {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.hero .hero-tag {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36rem;
  opacity: 0.92;
  margin-bottom: 2rem;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.95rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.2s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }
  .btn:hover,
  .btn:active {
    transform: none;
  }
}
.btn--light {
  background: linear-gradient(165deg, #fff 0%, #eef6f8 48%, #e3eff2 100%);
  color: var(--color-text);
  border-color: rgb(255 255 255 / 0.75);
  box-shadow:
    var(--btn-shadow),
    inset 0 1px 0 rgb(255 255 255 / 0.95);
}
.btn--light:hover {
  background: linear-gradient(165deg, #fff 0%, #f5fafb 100%);
  color: var(--color-text);
  border-color: #fff;
  box-shadow:
    var(--btn-shadow-hover),
    inset 0 1px 0 #fff;
}
.btn--ghost {
  color: #fff;
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.2);
}
.btn--ghost:hover {
  color: #fff;
  background: rgb(255 255 255 / 0.2);
  border-color: rgb(255 255 255 / 0.9);
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.28);
}
.hero .btn--light,
.spa-section--deep .btn--light {
  color: var(--color-text);
  box-shadow:
    0 6px 28px rgb(0 0 0 / 0.28),
    var(--btn-shadow),
    inset 0 1px 0 rgb(255 255 255 / 0.95);
}
.hero .btn--light:hover,
.spa-section--deep .btn--light:hover {
  color: var(--color-text);
  box-shadow:
    0 12px 36px rgb(0 0 0 / 0.32),
    var(--btn-shadow-hover),
    inset 0 1px 0 #fff;
}

.spa-section {
  padding: clamp(4rem, 10vw, 6rem) 0;
}
.spa-section--cream { background: #f8f6f2; }
.spa-section--white { background: #fff; }
.spa-section--deep {
  background: #152a35;
  color: #dce8ec;
}
.spa-section--deep h2 { color: #fff; }
.spa-section--deep .prose p { color: #b8cdd4; }
.spa-section--deep a:not(.btn) { color: #9fd4e0; }

.book-banner {
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
.book-banner .section-eyebrow {
  color: #9fd4e0;
}
.book-cta {
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 2.75rem);
  text-align: center;
  background: rgb(255 255 255 / 0.06);
  color: #dce8ec;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 12px 34px rgb(0 0 0 / 0.25);
}
.book-banner .book-cta {
  background: rgb(255 255 255 / 0.08);
}
.book-cta .section-eyebrow {
  color: #9fd4e0;
  margin-bottom: 0.35rem;
}
.book-cta__sub {
  margin: 0 auto 1rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.25;
  color: #8fa8b3;
  opacity: 0.92;
}
.book-cta__lead {
  margin: 0 auto 2rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #b8cdd4;
}
.book-cta__lead a {
  color: #9fd4e0;
  font-weight: 600;
  text-decoration: none;
}
.book-cta__lead a:hover {
  color: #fff;
  text-decoration: underline;
}
.book-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1rem;
}
.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgb(42 122 140 / 0.35);
}
.btn--accent:hover {
  background: #236878;
  border-color: #236878;
  color: #fff;
  box-shadow: 0 8px 28px rgb(42 122 140 / 0.4);
}
.btn--outline {
  color: #fff;
  background: transparent;
  border-color: var(--color-accent);
  box-shadow: none;
}
.btn--outline:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 24px rgb(42 122 140 / 0.3);
}
@media (max-width: 520px) {
  .book-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .book-cta__actions .btn {
    width: 100%;
  }
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.spa-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 22ch;
}
.spa-section h2.wide { max-width: none; }
.book-cta h2.wide {
  color: #fff;
  margin: 0 auto 0.15rem;
  line-height: 1.1;
  max-width: none;
}

.prose { font-size: 1.05rem; line-height: 1.8; }
.prose p {
  color: var(--color-muted);
  margin-bottom: 1.35rem;
  max-width: 46rem;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--color-text); font-weight: 600; }

.pull-quote {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.65vw, 1.1rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--color-accent);
  margin: 2rem 0;
  max-width: none;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-accent);
  text-align: center;
  text-transform: none;
  font-variant: normal;
}
@media (max-width: 767px) {
  .pull-quote {
    font-size: 1.0625rem;
    line-height: 1.5;
  }
  .testimonial-grid blockquote {
    font-size: 1.05rem;
  }
  .testimonial-feature blockquote {
    font-size: 1.25rem;
  }
}

.who-for {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  font-family: var(--font-sans);
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.who-for__inner {
  text-align: center;
}
.who-for .pull-quote {
  margin-top: clamp(3.5rem, 7vw, 5rem);
}
.who-for .section-eyebrow {
  margin-bottom: 0.65rem;
}
.who-for h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 4.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto;
  max-width: none;
  white-space: normal;
  text-wrap: balance;
}
.who-for__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 2rem;
  margin: clamp(2.25rem, 5vw, 3rem) 0 0;
  padding: 0;
}
.who-for__item {
  display: flex;
  justify-content: center;
  min-width: 0;
  padding: 0 0.75rem;
}
.who-for__item:nth-child(odd) {
  border-right: 1px solid var(--color-border);
}
.who-for__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: min(100%, 11.5rem);
}
.who-for__icon {
  display: block;
  width: clamp(3.25rem, 16vw, 4.5rem);
  height: clamp(3.25rem, 16vw, 4.5rem);
  flex-shrink: 0;
  object-fit: contain;
  object-position: center center;
}
.who-for__stack p {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
}
@media (min-width: 769px) {
  .who-for h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    white-space: nowrap;
  }
  .who-for__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2.5rem;
  }
  .who-for__item {
    padding: 0 0.75rem;
    border-right: none;
  }
  .who-for__item:not(:nth-child(3n)) {
    border-right: 1px solid var(--color-border);
  }
  .who-for__stack {
    width: min(100%, 12rem);
    gap: 0.75rem;
  }
  .who-for__icon {
    width: clamp(4.5rem, 10vw, 6.5rem);
    height: clamp(4.5rem, 10vw, 6.5rem);
  }
  .who-for__stack p {
    font-size: 0.9rem;
  }
}
@media (min-width: 1025px) {
  .who-for__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: 0;
  }
  .who-for__item {
    padding: 0 0.5rem;
  }
  .who-for__item:not(:nth-child(3n)) {
    border-right: 1px solid var(--color-border);
  }
  .who-for__item:last-child {
    border-right: none;
  }
  .who-for__stack {
    width: min(100%, 10.5rem);
    gap: 1rem;
  }
  .who-for__icon {
    width: 3.75rem;
    height: 3.75rem;
  }
  .who-for__stack p {
    font-size: clamp(0.72rem, 0.9vw, 0.8125rem);
    font-weight: 600;
    text-wrap: balance;
  }
}

.benefit-item {
  padding: 1.75rem 0;
  border-top: 1px solid var(--color-border);
}
.benefit-item:first-child { border-top: none; padding-top: 0; }
.benefit-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}
.benefit-item p {
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 44rem;
}
.benefits-cta {
  margin: 2.5rem 0 0;
  text-align: center;
}
.spa-section--deep .benefits-cta {
  margin-top: 3rem;
}

.testimonial-feature {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}
.testimonial-feature blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--color-text);
  margin-bottom: 1rem;
}
.testimonial-feature cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.image-break {
  line-height: 0;
  max-height: 11rem;
  overflow: hidden;
}
.image-break img {
  display: block;
  width: 100%;
  height: 11rem;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 640px) {
  .image-break {
    max-height: 16rem;
  }
  .image-break img {
    height: 16rem;
  }
}
@media (min-width: 1024px) {
  .image-break {
    max-height: 26.25rem;
  }
  .image-break img {
    height: 26.25rem;
  }
}

.split-spa {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .split-spa { grid-template-columns: 1fr 1fr; }
  .split-spa--reverse { direction: rtl; }
  .split-spa--reverse > * { direction: ltr; }
}

.retreat-panel {
  background: #152a35;
  color: #dce8ec;
  padding: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .retreat-panel { grid-template-columns: 1fr 1fr; } }
.retreat-panel h2 { color: #fff; font-family: var(--font-serif); font-size: 1.75rem; margin-bottom: 1rem; }
.retreat-panel p { color: #b8cdd4; margin-bottom: 1rem; line-height: 1.75; }
.retreat-panel .btn--light { margin-top: 0.5rem; }
.retreat-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Warm brown retreat (Composite D, Sanctuary-style) */
.retreat-panel--warm {
  background: #e8dfd0;
  color: var(--color-text);
}
.retreat-panel--warm h2 { color: var(--color-text); }
.retreat-panel--warm p { color: var(--color-muted); }
.retreat-panel--warm a { color: var(--color-accent); }
.retreat-panel--warm .btn--light {
  background: #f5f0e8;
  color: var(--color-text);
}

/* Theme: matched header/footer bar, contained banners, float healing */
body.theme {
  --bar-bg: #193342;
}

.site-nav--bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bar-bg) !important;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  backdrop-filter: none;
}
.site-nav--bar .logo img {
  height: 44px;
  filter: brightness(1.15);
}
.site-nav--bar .site-nav-panel a {
  color: rgb(200 220 228);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}
.site-nav--bar .site-nav-panel a:hover { color: #fff; }
.site-nav--bar .phone-link,
.site-nav--bar .phone-text {
  color: #fff;
  text-decoration: none;
}
.site-nav--bar .phone-text {
  font-weight: 600;
}
.site-nav--bar .phone-link:hover {
  color: #fff;
  opacity: 0.85;
}
@media (max-width: 800px) {
  .site-nav--spa .phone-link,
  .site-nav--bar .phone-link {
    color: #fff;
  }
  .site-nav--spa .site-nav-toggle-btn,
  .site-nav--bar .site-nav-toggle-btn {
    color: #fff;
    border-color: rgb(255 255 255 / 0.22);
    background: rgb(255 255 255 / 0.08);
  }
  .site-nav--spa:has(.site-nav-toggle:checked) .site-nav-panel,
  .site-nav--bar:has(.site-nav-toggle:checked) .site-nav-panel {
    border-top-color: rgb(255 255 255 / 0.12);
  }
  .site-nav--spa .site-nav-panel a,
  .site-nav--bar .site-nav-panel a {
    border-bottom-color: rgb(255 255 255 / 0.1);
  }
}

body.theme .site-footer {
  background: var(--bar-bg);
}

.prose--full p {
  max-width: none;
}

.healing-flow::after {
  content: "";
  display: table;
  clear: both;
}
.healing-flow .healing-float {
  float: right;
  width: min(360px, 42%);
  margin: 0.15rem 0 1.25rem 2rem;
  box-shadow: 0 8px 28px rgb(25 51 66 / 0.14);
}
.healing-flow h2.wide { max-width: none; }

body.theme .benefits-grid {
  display: grid;
  gap: 0 3rem;
}
@media (min-width: 900px) {
  body.theme .benefits-grid { grid-template-columns: 1fr 1fr; }
}
body.theme .spa-section--deep .benefit-item {
  border-color: rgb(255 255 255 / 0.12);
}
body.theme .spa-section--deep .benefit-item h3 { color: #fff; }
body.theme .spa-section--deep .benefit-item p {
  color: #b8cdd4;
  max-width: none;
}
body.theme .spa-section--deep .prose p { max-width: none; }

/* Hero: title top, loc/tag/CTAs pinned to image bottom */
body.theme .hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100dvh;
}
body.theme .hero .hero-photo {
  object-position: center center;
}
body.theme .hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgb(12 28 36 / 0.5) 0%,
    rgb(12 28 36 / 0.12) 38%,
    rgb(12 28 36 / 0.2) 62%,
    rgb(12 28 36 / 0.72) 100%
  );
}
body.theme .hero .hero-inner {
  flex: 1 1 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: clamp(5rem, 14vh, 7rem) 1rem clamp(2.5rem, 8vh, 5rem);
}
body.theme .hero .hero-head {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  margin: 0;
}
body.theme .hero .hero-head > * {
  margin: 0;
}
body.theme .hero .hero-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0;
}
body.theme .hero .hero-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
body.theme .hero .hero-eyebrow {
  letter-spacing: 0.24em;
}
body.theme .hero .hero-pre,
body.theme .hero .hero-sub {
  line-height: 1.6;
  max-width: 22em;
  text-wrap: balance;
}
body.theme .hero h1 {
  font-size: clamp(2.5rem, 7.5vw, 4.75rem);
  line-height: 1.22;
  letter-spacing: 0.06em;
  max-width: 14em;
  text-wrap: balance;
}
body.theme .hero .hero-title-block h1 {
  margin: 0;
  padding-bottom: 0.9rem;
}
body.theme .hero .hero-title-block .hero-sub {
  margin: 0;
}
body.theme .hero .hero-title-block .hero-sub + .hero-sub {
  margin-top: 0.35rem;
}
body.theme .hero .hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding-bottom: clamp(0.75rem, 2vh, 1.25rem);
}
body.theme .hero .hero-loc {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.06em;
  max-width: 20em;
  text-wrap: balance;
}
body.theme .hero .hero-actions {
  margin-top: 0.75rem;
  padding-top: 0;
  justify-content: center;
}
@media (max-width: 640px) {
  body.theme .hero .hero-actions {
    flex-wrap: nowrap;
    width: 100%;
    max-width: 22rem;
    gap: 0.5rem;
  }
  body.theme .hero .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 2.85rem;
    padding: 0.8rem 0.65rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
}
/* Retreat: same blue band as benefits, content in .shell */
body.theme .retreat-in-shell {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  body.theme .retreat-in-shell {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
body.theme .retreat-in-shell h2 {
  color: #fff;
  margin-bottom: 1rem;
}
body.theme .retreat-in-shell p {
  color: #b8cdd4;
  line-height: 1.75;
  margin-bottom: 1rem;
}
body.theme .retreat-in-shell a:not(.btn) { color: #9fd4e0; }
body.theme .retreat-in-shell img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

body.theme .practitioner {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 560px) {
  body.theme .practitioner { grid-template-columns: 220px 1fr; }
}
body.theme .practitioner img {
  width: 220px;
  max-width: 100%;
}
