/* ============================================================
   805 Physical Therapy — Homepage concept showcase
   Mobile-first. Each .site--* is a self-contained theme.
   ============================================================ */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --page-bg: #e9edf0;
  --page-ink: #1f2933;
  --page-muted: #5b6b7a;
  --shadow-lg: 0 30px 60px -25px rgba(15, 33, 48, .35);
  --shadow-sm: 0 10px 30px -16px rgba(15, 33, 48, .45);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--page-ink);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------------------------- Showcase chrome ---------------------------- */
.showcase-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #d7dee4;
}
.showcase-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: .7rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.showcase-brand { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.showcase-brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: #0f766e;
  color: #fff;
  flex: none;
}
.showcase-brand__mark svg { width: 21px; height: 21px; }
.showcase-brand__text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.showcase-brand__title { font-weight: 800; font-size: .98rem; letter-spacing: -.01em; }
.showcase-brand__sub { font-size: .72rem; color: var(--page-muted); white-space: nowrap; }

.concept-jump { display: flex; gap: .35rem; }
.concept-jump a {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d3dbe2;
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
  color: var(--page-ink);
  transition: all .15s ease;
}
.concept-jump a:hover { background: #0f766e; color: #fff; border-color: #0f766e; }

.intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.3rem 1.5rem;
  text-align: center;
}
.intro__kicker {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
  color: #0f766e;
  margin: 0 0 .8rem;
}
.intro h1 {
  margin: 0 0 .9rem;
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.intro__lead { margin: 0 auto 1rem; color: #46535f; font-size: 1.05rem; max-width: 620px; }
.intro__note {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: var(--page-muted);
  background: #fff;
  border: 1px solid #d7dee4;
  padding: .5rem .85rem;
  border-radius: 999px;
}
.intro__chip {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: #5a6166;
  background: #d7dada;
  border: 1px dashed #aeb4b6;
  padding: .15rem .5rem;
  border-radius: 5px;
}

.concept-block {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
  scroll-margin-top: 70px;
}
.concept-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0 .25rem;
}
.concept-label__num {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  background: #0f172a;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  flex: none;
}
.concept-label__text { flex: 1 1 auto; min-width: 0; }
.concept-label__text h2 { margin: 0; font-size: 1.2rem; letter-spacing: -.01em; }
.concept-label__text p { margin: .1rem 0 0; color: var(--page-muted); font-size: .9rem; }
.concept-label__tag {
  flex: none;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #46535f;
  background: #fff;
  border: 1px solid #d3dbe2;
  padding: .35rem .7rem;
  border-radius: 999px;
}

/* The "browser" frame that wraps each mockup */
.mockup {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 33, 48, .08);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1rem;
  background: #eef1f4;
  border-bottom: 1px solid #dde3e8;
}
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #cdd5dc; }
.browser-bar .dot:nth-child(1) { background: #f0817a; }
.browser-bar .dot:nth-child(2) { background: #f5c451; }
.browser-bar .dot:nth-child(3) { background: #6fcf83; }
.browser-bar .url {
  margin-left: .6rem;
  font-size: .78rem;
  color: #7c8893;
  background: #fff;
  border: 1px solid #dde3e8;
  border-radius: 7px;
  padding: .22rem .9rem;
  flex: 1 1 auto;
  max-width: 320px;
  text-align: center;
}

.showcase-footer {
  text-align: center;
  padding: 2.5rem 1.3rem 3.5rem;
  color: var(--page-muted);
}
.showcase-footer p { margin: .25rem 0; }
.showcase-footer__note { font-size: .85rem; opacity: .85; }

/* ============================================================
   SITE (a single homepage mockup) — shared structure
   Theme variables are set on each .site--* modifier.
   ============================================================ */
.site {
  --maxw: 1120px;
  --radius: 16px;
  --font-head: "Inter", system-ui, sans-serif;

  position: relative;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
}
.site h1, .site h2, .site h3 { font-family: var(--font-head); letter-spacing: -.015em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: clamp(1.05rem, .95rem + .4vw, 1.25rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .85rem;
}

/* ---- Brand / logo placeholder ---- */
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: inherit; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--accent);
  color: var(--accent-ink);
  flex: none;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__name { font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; }
.brand__name strong { font-weight: 800; }
.brand__suffix { font-weight: 600; color: var(--muted); margin-left: .35em; font-size: .92em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: .62rem 1.15rem;
  font-size: .92rem;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .ic--arrow { width: 17px; height: 17px; }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 12px 24px -12px var(--accent-shadow, rgba(0,0,0,.35)); }
.btn--primary:hover { background: var(--accent-strong); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--border-strong, var(--border)); }
.btn--ghost:hover { background: var(--surface); }
.btn--lg { padding: .82rem 1.5rem; font-size: 1rem; white-space: normal; text-align: center; }

/* ---- Top nav ---- */
.site-nav {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--border);
  background: var(--nav-bg, var(--bg));
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.site-nav__links { display: none; gap: 2.6rem; }
.site-nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: .94rem;
  transition: color .15s ease;
}
.site-nav__links a:hover { color: var(--accent); }
.site-nav__cta { padding: .5rem 1.05rem; font-size: .88rem; }

/* ---- Mobile menu (hamburger) — appears below 860px; desktop nav unchanged ---- */
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: none; padding: 0;
  border: 0; border-radius: 10px; background: transparent; color: var(--fg);
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: var(--surface); }
.nav-toggle svg { width: 24px; height: 24px; }
.site-nav__menu-cta { display: none; }
.site-nav__links.is-open {
  display: flex; flex-direction: column; gap: 0;
  position: absolute; top: 100%; left: 0; right: 0; z-index: 30;
  padding: .35rem 1.25rem 1.1rem;
  background: var(--bg); border-bottom: 1px solid var(--border);
  box-shadow: 0 22px 44px -26px rgba(0, 0, 0, .5);
}
.site-nav__links.is-open a:not(.btn) { padding: .85rem .25rem; font-size: 1.02rem; color: var(--fg); border-bottom: 1px solid var(--border); }
.site-nav__links.is-open a:not(.btn):hover { color: var(--accent); }
.site-nav__links.is-open .site-nav__menu-cta { display: inline-flex; justify-content: center; margin-top: .85rem; }
@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav__links.is-open { position: static; flex-direction: row; padding: 0; background: none; border: 0; box-shadow: none; }
  .site-nav__links.is-open a:not(.btn) { padding: 0; border: 0; font-size: .94rem; }
  .site-nav__inner .brand { margin-left: 1.25rem; }   /* inset brand logo from the left edge (desktop only; mobile untouched) */
  .site-nav__cta { margin-right: 1.25rem; }            /* inset Request-a-Visit button from the right edge (desktop only) */
}

/* ---- Generic section heading ---- */
.section-head { max-width: 640px; margin-bottom: 2rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 0; font-size: clamp(1.7rem, 1.35rem + 1.6vw, 2.5rem); line-height: 1.15; }
.section-sub { margin: .65rem 0 0; color: var(--muted); font-size: 1.02rem; }

/* ---- Hero shared bits ---- */
.hero { position: relative; }
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 6.2vw, 2.9rem);
  line-height: 1.06;
}
.hero__sub { margin: 0 0 1.6rem; color: var(--muted); font-size: 1.1rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
}
.trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 600; color: var(--fg); }
.trust .ic--check { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */
.photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  text-align: center;
  padding: 1.25rem;
  color: #5c6166;
  background-color: #d6dadc;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.35) 0, rgba(255,255,255,.35) 12px, transparent 12px, transparent 24px);
  border: 2px dashed #aab1b5;
  border-radius: var(--radius);
  overflow: hidden;
}
.photo__icon { width: 34px; height: 34px; opacity: .5; }
.photo__tag { font-weight: 800; letter-spacing: .14em; font-size: .82rem; }
.photo__hint {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .75;
}
.photo--tall { aspect-ratio: 3 / 4; }
.photo--portrait { aspect-ratio: 4 / 5; }
.photo--wide { aspect-ratio: 16 / 9; }
.photo--visit { aspect-ratio: 4 / 3; }
.photo--square { aspect-ratio: 1 / 1; }
.photo--round { aspect-ratio: 1 / 1; border-radius: 50%; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 2.75rem 0; background: var(--bg); }
.service-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.service-card__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: .35rem;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 { margin: 0; font-size: 1.18rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .96rem; }
.service-card__meta {
  margin-top: auto;
  padding-top: .7rem;
  font-weight: 700;
  font-size: .86rem;
  color: var(--muted);
}
.service-card__meta--accent { color: var(--accent); }
.service-card--soon { opacity: .92; }
.service-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm);
}

.badge {
  display: inline-block;
  align-self: flex-start;
  margin: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 999px;
}
.badge--soon { background: var(--surface-2, rgba(0,0,0,.06)); color: var(--muted); border: 1px solid var(--border); }
.badge--member { background: var(--accent-soft); color: var(--accent); }
.badge--feature {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--accent);
  color: var(--accent-ink);
}

/* ============================================================
   "WHAT I HELP WITH" STRIP
   ============================================================ */
.help-strip { padding: 2.6rem 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.help-strip__inner { display: flex; flex-direction: column; gap: 1.1rem; }
.help-strip__text { display: flex; flex-direction: column; align-items: center; }
.help-strip__title { margin: 0 0 1.4rem; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); text-align: center; }
.help-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem;
}
@media (min-width: 720px) { .help-list { grid-template-columns: repeat(3, 1fr); } }
.help-list li {
  font-weight: 700;
  font-size: .95rem;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Two-column variant: title + pills left, photo right (stacks on mobile) */
.help-strip__inner--media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 860px) {
  .help-strip__inner--media {
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
  }
}
.help-strip__photo { width: 100%; }
.help-strip__photo.photo--visit { max-width: 480px; margin-left: auto; }

/* ============================================================
   TESTIMONIALS  (made deliberately prominent)
   ============================================================ */
.testimonials { padding: 2.75rem 0; background: var(--testi-bg, var(--bg)); }
.quote-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.quote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}
.quote__stars { display: flex; gap: .15rem; color: var(--star, #f6b73c); }
.quote__stars .ic--star { width: 18px; height: 18px; }
.quote blockquote {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--fg);
}
.quote blockquote::before { content: "\201C"; }
.quote blockquote::after { content: "\201D"; }
.quote__by { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  font-size: .92rem;
  flex: none;
}
.quote__person { display: flex; flex-direction: column; line-height: 1.25; }
.quote__person strong { font-size: .98rem; }
.quote__person span { font-size: .82rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--footer-bg, var(--surface)); border-top: 1px solid var(--border); padding-top: 3rem; }
.site-footer__inner { display: grid; gap: 1.8rem; grid-template-columns: 1fr; padding-bottom: 2rem; text-align: center; }
.site-footer__brand, .site-footer__contact, .site-footer__cta { display: flex; flex-direction: column; align-items: center; }
.site-footer__brand p { margin: .9rem 0 0; color: var(--muted); max-width: 38ch; }
.site-footer__contact h3, .site-footer__cta p { margin-top: 0; }
.site-footer__contact h3 { font-size: 1rem; margin-bottom: .8rem; }
.contact-line { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--fg); font-weight: 600; padding: .25rem 0; }
.contact-line:hover { color: var(--accent); }
.contact-line svg { width: 19px; height: 19px; color: var(--accent); flex: none; }
.site-footer__cta p { color: var(--muted); margin-bottom: 1rem; max-width: 34ch; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  justify-content: space-between;
  padding-top: 1.3rem;
  padding-bottom: 1.6rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
}

/* ============================================================
   HERO LAYOUTS (mobile-first; columns kick in at >=860px)
   ============================================================ */
/* 1 — portrait */
.hero--portrait { padding: 2.5rem 0 3rem; background: var(--hero-bg, var(--bg)); }
.hero--portrait__inner { display: grid; gap: 2rem; align-items: center; }
.hero--portrait .hero__media .photo { max-width: 420px; margin: 0 auto; width: 100%; }

/* 2 — full-bleed overlay */
.hero--overlay { min-height: 460px; display: flex; align-items: center; padding: 3rem 0; isolation: isolate; }
.hero--overlay .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  border: none;
  border-radius: 0;
  background-color: #3a4046;
  color: #cfd5da;
  justify-content: flex-end;
  padding-bottom: 1.4rem;
}
.hero--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(11,16,20,.9) 0%, rgba(11,16,20,.72) 45%, rgba(11,16,20,.35) 100%);
}
.hero--overlay .hero__content { color: #fff; max-width: 600px; }
.hero--overlay .hero__content .eyebrow { color: var(--accent-bright, #5eead4); }
.hero--overlay .hero__sub { color: rgba(255,255,255,.85); }
.hero--overlay .trust li { color: #fff; }
.hero--overlay .trust .ic--check { color: var(--accent-bright, #5eead4); }
.hero--overlay .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero--overlay .btn--ghost:hover { background: rgba(255,255,255,.12); }

/* 3 — editorial circle */
.hero--editorial { padding: 2.75rem 0 3.25rem; background: var(--hero-bg, var(--bg)); }
.hero--editorial__inner { display: grid; gap: 2rem; align-items: center; }
.hero--editorial .hero__media .photo { max-width: 300px; margin: 0 auto; width: 100%; }
.pullquote {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5.5vw, 2.9rem);
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 1.1rem;
  letter-spacing: -.01em;
}
.byline { font-style: italic; }

/* 4 — athletic */
.hero--athletic { padding: 2.75rem 0 3.25rem; background: var(--hero-bg, var(--bg)); overflow: hidden; }
.hero--athletic__inner { display: grid; gap: 2rem; align-items: center; }
.hero--athletic .hero__media .photo { max-width: 420px; margin: 0 auto; width: 100%; }

/* 5 — mobile-first */
.hero--mobile { padding: 2.5rem 0 3rem; background: var(--hero-bg, var(--bg)); }
.hero--mobile__inner { display: grid; gap: 2rem; align-items: center; }
.hero--mobile .hero__media .photo { width: 100%; }

/* 6 — warm split */
.hero--split { display: grid; grid-template-columns: 1fr; }
.hero--split__text { background: var(--hero-bg, var(--surface)); padding: 2.75rem 1.25rem; display: flex; align-items: center; }
.hero--split__text .hero__content { max-width: 540px; margin: 0 auto; width: 100%; }
.hero--split__media { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; padding: .6rem; background: var(--surface); }
.hero--split__media .photo { height: 100%; }
.hero--split__media .photo--portrait { aspect-ratio: auto; min-height: 220px; }
.hero--split__media .photo--visit { aspect-ratio: auto; min-height: 220px; }

/* ============================================================
   RESPONSIVE — tablet / desktop
   ============================================================ */
@media (min-width: 720px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__inner { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; align-items: center; }
}

@media (min-width: 860px) {
  .site-nav__links { display: flex; }

  .hero--portrait__inner { grid-template-columns: 1.05fr .95fr; gap: 3rem; }
  .hero--portrait .hero__media .photo { max-width: none; }

  .hero--editorial__inner { grid-template-columns: .8fr 1.2fr; gap: 3rem; }
  .hero--editorial .hero__media .photo { max-width: 360px; }

  .hero--athletic__inner { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
  .hero--athletic .hero__media .photo { max-width: none; }

  .hero--mobile__inner { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .hero--overlay { min-height: 540px; }

  .hero--split { grid-template-columns: 1fr 1fr; }
  .hero--split__text { padding: 3.5rem 2.5rem; }
  .hero--split__media { grid-template-columns: 1fr 1fr; padding: .8rem; gap: .8rem; }
  .hero--split__media .photo--portrait,
  .hero--split__media .photo--visit { min-height: 460px; }
}

@media (min-width: 1024px) {
  .concept-block { padding: 3rem 2rem; }
  .hero h1 { font-size: clamp(2.4rem, 3.4vw, 2.95rem); }
}

/* ============================================================
   THEME 1 — TEAL (clean & modern)
   ============================================================ */
.site--teal {
  --bg: #ffffff;
  --surface: #f1faf8;
  --surface-2: #e3f3f0;
  --fg: #0f2e2b;
  --muted: #51706c;
  --border: #dcece9;
  --accent: #0d9488;
  --accent-strong: #0f766e;
  --accent-soft: #d6f0ec;
  --accent-ink: #ffffff;
  --accent-shadow: rgba(13,148,136,.5);
  --hero-bg: #f3faf9;
  --star: #f6b73c;
}

/* ============================================================
   THEME 2 — SLATE (light site, dark cinematic hero)
   ============================================================ */
.site--slate {
  --bg: #ffffff;
  --surface: #f3f6f8;
  --surface-2: #e6edf1;
  --fg: #0f1c26;
  --muted: #51626f;
  --border: #e1e8ed;
  --accent: #0d9488;
  --accent-strong: #0f766e;
  --accent-soft: #d6f0ec;
  --accent-ink: #ffffff;
  --accent-bright: #5eead4;
  --accent-shadow: rgba(13,148,136,.5);
  --star: #f6b73c;
}
/* dark header bar that reads as part of the cinematic hero */
.site--slate .site-nav--onhero {
  background: #0b1014;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.site--slate .site-nav--onhero .brand,
.site--slate .site-nav--onhero .site-nav__links a { color: #fff; }
.site--slate .site-nav--onhero .site-nav__links a:hover { color: var(--accent-bright); }
.site--slate .site-nav--onhero .brand__mark { background: rgba(255,255,255,.16); color: #fff; }

/* ============================================================
   THEME 3 — EARTHY (warm magazine, serif)
   ============================================================ */
.site--earthy {
  --bg: #f8f1e7;
  --surface: #f1e6d6;
  --surface-2: #e7d8c2;
  --fg: #3b2c20;
  --muted: #7c6450;
  --border: #e4d3bc;
  --accent: #c0703f;
  --accent-strong: #a3592e;
  --accent-soft: #ecd8c5;
  --accent-ink: #ffffff;
  --accent-shadow: rgba(192,112,63,.45);
  --hero-bg: #f8f1e7;
  --star: #c0703f;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
}
.site--earthy .brand__name,
.site--earthy .section-head h2 { font-family: var(--font-head); }

/* ============================================================
   THEME 4 — ATHLETIC (fully dark, orange accent, condensed)
   ============================================================ */
.site--athletic {
  --bg: #0c0d10;
  --surface: #17191f;
  --surface-2: #21242b;
  --fg: #f4f5f7;
  --muted: #a4adba;
  --border: #2a2e37;
  --accent: #f97316;
  --accent-strong: #ea670c;
  --accent-soft: rgba(249,115,22,.16);
  --accent-ink: #ffffff;
  --accent-shadow: rgba(249,115,22,.5);
  --hero-bg: #0c0d10;
  --testi-bg: #101216;
  --star: #f97316;
  --font-head: "Oswald", "Inter", sans-serif;
}
.site--athletic h1,
.site--athletic .concept-label__num { letter-spacing: 0; }
.site--athletic .hero h1 { text-transform: uppercase; font-weight: 700; line-height: 1.02; }
.site--athletic .section-head h2 { text-transform: uppercase; font-weight: 600; }
.site--athletic .eyebrow { color: var(--accent); }
.site--athletic .btn--ghost { color: #fff; border-color: #3a3f49; }
.site--athletic .help-list li { background: var(--surface-2); }
/* dark photo placeholders so PHOTO HERE still reads */
.site--athletic .photo {
  background-color: #23262d;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0, rgba(255,255,255,.05) 12px, transparent 12px, transparent 24px);
  border-color: #3a3f49;
  color: #aeb6c0;
}
.site--athletic .badge--soon { background: var(--surface-2); color: var(--muted); }

/* ============================================================
   THEME 5 — BLUE (friendly, mobile-first)
   ============================================================ */
.site--blue {
  --bg: #ffffff;
  --surface: #eff6ff;
  --surface-2: #dfecfd;
  --fg: #0c2545;
  --muted: #56657d;
  --border: #dbe7f6;
  --accent: #2563eb;
  --accent-strong: #1d4ed8;
  --accent-soft: #dbe8fe;
  --accent-ink: #ffffff;
  --accent-shadow: rgba(37,99,235,.45);
  --hero-bg: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  --star: #f6b73c;
}

/* ============================================================
   THEME 6 — SPLIT (soft, welcoming, serif)
   ============================================================ */
.site--split {
  --bg: #fbf5f1;
  --surface: #f4e8e1;
  --surface-2: #ecdbd1;
  --fg: #3c2e2a;
  --muted: #836a61;
  --border: #ecddd4;
  --accent: #b06a5f;
  --accent-strong: #97564c;
  --accent-soft: #efddd6;
  --accent-ink: #ffffff;
  --accent-shadow: rgba(176,106,95,.4);
  --hero-bg: #f6ebe4;
  --star: #b06a5f;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
}
.site--split .brand__name { font-family: var(--font-head); }

/* ============================================================
   NEW COMPONENTS (rebuild with Sandy's real content)
   ============================================================ */

/* keep the brand suffix readable on concept 2's dark header */
.site--slate .site-nav--onhero .brand__suffix { color: rgba(255, 255, 255, .72); }

/* service / membership "learn more" links */
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .8rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--accent);
  text-decoration: none;
}
.service-card__link .ic--arrow { width: 15px; height: 15px; transition: transform .15s ease; }
.service-card__link:hover .ic--arrow { transform: translateX(3px); }

/* ---- Featured "Why one-on-one care" section ---- */
.why {
  padding: 3.5rem 0;
  background: var(--accent-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why__inner { display: grid; gap: 2rem; align-items: center; }
.why__text h2 { margin: 0 0 1rem; font-size: clamp(1.6rem, 3.8vw, 2.3rem); line-height: 1.12; }
.why__text p { margin: 0 0 1rem; color: var(--muted); font-size: 1.05rem; }
.why__points { list-style: none; margin: 0 0 1.6rem; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.why__points li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 600; color: var(--fg); }
.why__points .ic--check { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: .15rem; }
.why__media .photo { width: 100%; max-width: 380px; margin: 0 auto; }

/* ---- Repeating "Request a Visit" CTA band ---- */
.cta-band { padding: 3rem 0; background: var(--accent); color: var(--accent-ink); }
.cta-band__inner { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }
.cta-band__text h2 { margin: 0 0 .4rem; color: var(--accent-ink); font-size: clamp(1.4rem, 3.2vw, 2rem); line-height: 1.15; }
.cta-band__text p { margin: 0; color: rgba(255, 255, 255, .9); max-width: 48ch; }
.cta-band .btn--primary { background: #fff; color: var(--accent-strong); box-shadow: 0 12px 24px -14px rgba(0,0,0,.5); }
.cta-band .btn--primary:hover { background: rgba(255, 255, 255, .9); }

/* ---- Memberships / packages ---- */
.memberships { padding: 2.75rem 0; background: var(--bg); }
.membership-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.membership-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.membership-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.membership-card h3 { margin: .25rem 0 0; font-size: 1.15rem; }
.membership-card p { margin: 0; color: var(--muted); font-size: .96rem; }
.membership-card--soon { border-style: dashed; opacity: .92; }
.membership-note { text-align: center; margin: 1.7rem 0 0; color: var(--muted); }
.membership-note a { color: var(--accent); font-weight: 700; text-decoration: none; }
.membership-note a:hover { text-decoration: underline; }

/* ---- Cash-pay / superbill note ---- */
.paynote { padding: 1.4rem 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.paynote__inner { display: flex; gap: .8rem; align-items: flex-start; justify-content: center; max-width: 780px; margin: 0 auto; }
.paynote__inner svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: .15rem; }
.paynote p { margin: 0; font-size: .95rem; color: var(--muted); }
.paynote strong { color: var(--fg); }

/* ---- "What to expect on your first visit" (+ shared .prose) ---- */
.prose { max-width: 680px; margin-inline: auto; }
.prose p { margin: 0 0 1rem; color: var(--muted); font-size: 1.05rem; }
.prose h2 { margin: 1.6rem 0 .5rem; font-size: 1.3rem; }
.prose-list { margin: 0 0 1.1rem; padding-left: 1.3rem; color: var(--muted); font-size: 1.05rem; }
.prose-list li { margin: .35rem 0; }
.site-footer__bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.site-footer__bottom a:hover { color: var(--accent); }

.visit-steps {
  list-style: none;
  counter-reset: visit;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.visit-steps li {
  counter-increment: visit;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  text-align: left;
}
.visit-steps li::before {
  content: counter(visit);
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}
.visit-steps li > div { padding-top: .3rem; }
.visit-steps strong { color: var(--fg); }

/* scoped variant wins over the .prose p rule when the note is nested inside .prose */
.cashnote, .prose .cashnote {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: .92rem;
  color: var(--muted);
}

/* ---- FAQ accordion ---- */
.faq {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1.1rem;
  margin-bottom: .75rem;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--fg);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  line-height: 1;
  flex: none;
}
.faq details[open] summary::after { content: "\2212"; } /* minus sign */
.faq__a {
  margin: 0;
  padding: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Request-a-visit form (assembles a mailto: on submit — no backend) ---- */
.reqform-wrap { max-width: 680px; margin-inline: auto; }
.reqform-wrap .callout { margin-bottom: 1.4rem; }
.reqform {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.reqform__field { display: flex; flex-direction: column; gap: .35rem; }
.reqform label, .reqform legend { font-weight: 700; font-size: .9rem; color: var(--fg); }
.reqform__opt { font-weight: 600; color: var(--muted); }
.reqform input, .reqform textarea {
  width: 100%;
  font: inherit;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .7rem .85rem;
}
.reqform textarea { resize: vertical; min-height: 96px; }
.reqform input:focus, .reqform textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.reqform__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 560px) { .reqform__row { grid-template-columns: 1fr 1fr; } }
.reqform__visit { border: 0; margin: 0; padding: 0; min-width: 0; }
.reqform__visit legend { margin-bottom: .5rem; padding: 0; }
.reqform__radio {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .5rem;
  padding: .65rem .85rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.reqform__radio input { width: auto; accent-color: var(--accent); }
.reqform__error { margin: 0; font-weight: 700; color: var(--accent-strong); }
.reqform__note { margin: .4rem 0 0; font-size: .9rem; color: var(--muted); }
.reqform__note a { color: var(--accent); font-weight: 700; text-decoration: none; white-space: nowrap; }
.reqform__note a:hover { text-decoration: underline; }
/* Tappable day / time-of-day chip selectors (multi-select) */
.reqform__chips-label { font-weight: 700; font-size: .9rem; color: var(--fg); }
.reqform__chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 14px;
  font: inherit;
  font-weight: 600;
  font-size: .92rem;
  line-height: 1;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: color .12s ease, background .12s ease, border-color .12s ease;
}
.chip:hover { color: var(--fg); border-color: var(--accent); }
.chip[aria-pressed="true"] { color: var(--accent); background: var(--accent-soft); border-color: var(--accent); font-weight: 700; }
.chip:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* ---- Contact: Jane online-booking (primary) above the email request form (fallback) ---- */
.book-online { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.book-online__note { margin: 0; font-size: .9rem; color: var(--muted); }
.reqform-fallback__head { margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }

/* ---- Outcome-first testimonial line ---- */
.quote__result { margin: 0; font-weight: 800; font-size: 1rem; color: var(--accent); letter-spacing: -.01em; }
.quote__stars { font-size: 1.05rem; letter-spacing: .12em; color: var(--star, #f6b73c); line-height: 1; }

@media (min-width: 720px) {
  .membership-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 860px) {
  .why__inner { grid-template-columns: 1.2fr .8fr; gap: 3rem; }
  .why__media .photo { max-width: none; }
}

/* ===================== CURATED-HERO-VARIANTS (designs 5-8) ===================== */
/* 5 — Cinematic full-bleed overlay */
.hero--cinematic { position: relative; display: grid; place-items: center; min-height: clamp(360px, 52vh, 560px); isolation: isolate; padding: 3.5rem 0; overflow: hidden; }
.hero--cinematic__bg { position: absolute; inset: 0; z-index: -2; border: none; border-radius: 0; align-items: flex-start; justify-content: flex-start; padding: 1.2rem; }
.hero--cinematic::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,12,15,.5) 0%, rgba(8,12,15,.62) 45%, rgba(8,12,15,.82) 100%); }
.hero--cinematic .hero__content { text-align: center; max-width: 760px; margin: 0 auto; color: #fff; }
.hero--cinematic .hero__content .eyebrow { color: rgba(255,255,255,.85); }
.hero--cinematic .hero__content h1 { color: #fff; }
.hero--cinematic .hero__sub { color: rgba(255,255,255,.9); margin-left: auto; margin-right: auto; }
.hero--cinematic .hero__actions { justify-content: center; }
.hero--cinematic .trust { justify-content: center; }
.hero--cinematic .trust li { color: #fff; }
.hero--cinematic .trust .ic--check { color: var(--accent-bright, #5eead4); }
.hero--cinematic .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero--cinematic .btn--ghost:hover { background: rgba(255,255,255,.12); }

/* 6 — Diagonal split */
.hero--diagonal { display: grid; grid-template-columns: 1.05fr .95fr; min-height: clamp(360px, 50vh, 560px); background: var(--hero-bg, var(--bg)); }
.hero--diagonal__photo { position: relative; }
.hero--diagonal__photo .photo { position: absolute; inset: 0; border: none; border-radius: 0; clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%); }
.hero--diagonal__panel { display: flex; align-items: center; padding: clamp(1.75rem, 4vw, 3.25rem); }
.hero--diagonal__panel .hero__content { max-width: 34rem; }

/* 7 — Service mosaic */
.hero--mosaic { position: relative; min-height: clamp(420px, 58vh, 600px); }
.hero--mosaic__grid { position: absolute; inset: 0; display: grid; gap: 8px; grid-template-columns: 1.7fr 1fr; grid-template-rows: 1fr 1fr; grid-template-areas: "a b" "a c"; }
.hero--mosaic__grid .photo { border-radius: 0; }
.hero--mosaic .m-a { grid-area: a; } .hero--mosaic .m-b { grid-area: b; } .hero--mosaic .m-c { grid-area: c; }
.hero--mosaic__content { position: absolute; z-index: 3; left: 0; bottom: 0; margin: clamp(1rem, 3vw, 2rem); max-width: min(560px, 90%); background: linear-gradient(180deg, rgba(8,12,15,.55), rgba(8,12,15,.88)); color: #fff; padding: clamp(1.25rem, 3vw, 1.75rem); border-radius: 16px; box-shadow: var(--shadow-lg); }
.hero--mosaic__content .eyebrow { color: rgba(255,255,255,.85); }
.hero--mosaic__content h1 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.hero--mosaic__content .hero__sub { color: rgba(255,255,255,.9); }
.hero--mosaic__content .trust li { color: #fff; }
.hero--mosaic__content .trust .ic--check { color: var(--accent-bright, #5eead4); }
.hero--mosaic__content .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }

/* 8 — Off-center overlap */
.hero--offset { position: relative; padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vw, 4rem); background: var(--hero-bg, var(--bg)); }
.hero--offset__photo { position: relative; min-height: clamp(280px, 40vh, 460px); width: min(100%, 780px); margin-left: auto; border-radius: 18px; overflow: hidden; }
.hero--offset__photo .photo { position: absolute; inset: 0; border: none; border-radius: 18px; }
.hero--offset__panel { position: relative; z-index: 2; width: min(94%, 480px); margin-top: clamp(-90px, -7vw, -56px); margin-right: auto; background: var(--accent); color: var(--accent-ink); padding: clamp(1.4rem, 3.5vw, 2.2rem); border-radius: 18px; box-shadow: var(--shadow-lg); }
.hero--offset__panel .eyebrow { color: var(--accent-ink); opacity: .85; }
.hero--offset__panel h1 { color: var(--accent-ink); }
.hero--offset__panel .hero__sub { color: var(--accent-ink); opacity: .92; }
.hero--offset__panel .trust li { color: var(--accent-ink); }
.hero--offset__panel .trust .ic--check { color: var(--accent-ink); }
.hero--offset__panel .btn--primary { background: var(--bg); color: var(--accent-strong); }
.hero--offset__panel .btn--primary:hover { background: var(--surface); }
.hero--offset__panel .btn--ghost { color: var(--accent-ink); border-color: rgba(255,255,255,.5); }

@media (max-width: 820px) {
  .hero--diagonal { grid-template-columns: 1fr; }
  .hero--diagonal__photo { min-height: 220px; }
  .hero--diagonal__photo .photo { clip-path: none; }
  .hero--mosaic { min-height: 0; }
  .hero--mosaic__grid { position: relative; inset: auto; height: 280px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.3fr 1fr; }
  .hero--mosaic__content { position: relative; left: auto; bottom: auto; margin: 0; max-width: none; border-radius: 0; }
}
