/* ==========================================================================
   Ghassan Osteopathy Wellness Care — design system
   Locked for the public site. Preview: design-preview.html.
   ========================================================================== */

:root {
  --navy-950: #0b141e;
  --navy-900: #152638;
  --navy-800: #1d3448;
  --navy-700: #2a465c;
  --navy-rgb: 21, 38, 56;
  --sage-800: #394c4a;
  --sage-700: #55685a;
  --sage-600: #647660;
  --sage-100: #e8eee9;
  --sage-on-navy: #c5d4c8;
  --navy-ink: #e6ebe8;
  --navy-muted: #b5c0ba;
  --cta: #c74b0a;
  --cta-hover: #a33e09;
  --cta-on: #ffffff;
  --cta-rgb: 199, 75, 10;
  --cta-soft: #fff4eb;
  --sand-50: #f6f3ed;
  --mist-50: #eef1ef;
  --white: #ffffff;
  --ink: #101010;
  --ink-soft: #4a5652;
  --line: #d5dcd8;
  --star: #e6b325;
  --danger: #b42318;
  --ok: #2f7d5a;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-logo-tag: "Figtree", "Segoe UI", system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1.0625rem;
  --text-lg: clamp(1.15rem, 1.05rem + 0.4vw, 1.25rem);
  --display-sm: clamp(1.25rem, 1.12rem + 0.55vw, 1.6rem);
  --display-md: clamp(1.85rem, 1.25rem + 2.6vw, 3.1rem);
  --display-lg: clamp(2.85rem, 1.55rem + 5.2vw, 5.35rem);

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-body: 1.65;
  --track-body: 0.02em;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 7rem;

  --wrap: 72rem;
  --wrap-narrow: 42rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --r-sm: 0.4rem;
  --r-md: 0.75rem;
  --r-lg: 1.25rem;
  --r-full: 999px;

  --shadow-sm: 0 1px 2px rgba(var(--navy-rgb), 0.06);
  --shadow-md: 0 10px 30px rgba(var(--navy-rgb), 0.08);
  --shadow-lg: 0 24px 60px rgba(var(--navy-rgb), 0.14);

  --header-h: 5.25rem;
  --header-h-compact: 3.9rem;
  --ease: 160ms ease;
  --focus: 0 0 0 3px rgba(var(--cta-rgb), 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  letter-spacing: var(--track-body);
  color: var(--ink);
  background: var(--white);
  font-feature-settings: "ss01" on, "kern" on;
}

img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--sage-800); text-underline-offset: 0.18em; }
a:hover { color: var(--sage-800); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip {
  position: absolute;
  left: var(--space-4);
  top: -4rem;
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  z-index: 100;
}
.skip:focus { top: var(--space-4); }

.wrap {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.wrap--narrow { width: min(var(--wrap-narrow), 100% - var(--gutter) * 2); }

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-700);
  margin: 0 0 var(--space-3);
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 560;
  letter-spacing: -0.012em;
  line-height: var(--leading-tight);
  color: var(--navy-900);
  margin: 0 0 var(--space-4);
}

h1, .display-lg { font-size: var(--display-lg); letter-spacing: -0.022em; line-height: 1.05; }
h2, .display-md {
  font-size: var(--display-md);
  max-width: 26ch;
}
h3, .display-sm { font-size: var(--display-sm); font-weight: 500; letter-spacing: 0; }

.lede {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0 0 var(--space-6);
}

.muted { color: var(--ink-soft); }
.small { font-size: var(--text-sm); }
.center { text-align: center; }
.center h2,
.center .display-md,
.center .lede { margin-inline: auto; }

.stack > * + * { margin-top: var(--space-4); }
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.section {
  padding-block: var(--space-8);
}
.section:has(.hero) {
  padding-top: 0;
  padding-bottom: var(--space-7);
}
@media (min-width: 900px) {
  .section:has(.hero) {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.section--sand { background: var(--sand-50); }
.section--mist { background: var(--mist-50); }
.section--navy {
  background: var(--navy-900);
  color: var(--navy-ink);
}
.section--navy h1,
.section--navy h2 { color: var(--white); }
.section--navy .lede,
.section--navy .muted { color: var(--navy-muted); }
.section--navy .eyebrow { color: var(--sage-on-navy); }
.section--navy .card h3 { color: var(--navy-900); }
.section--navy .card .eyebrow { color: var(--sage-700); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: var(--space-7) 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.btn:hover { text-decoration: none; }
.btn:focus-visible {
  outline: 3px solid rgba(var(--cta-rgb), 0.4);
  outline-offset: 2px;
}

.btn--primary,
.btn--primary:link,
.btn--primary:visited {
  background: var(--cta);
  color: var(--cta-on);
}
.btn--primary:hover,
.btn--primary:focus-visible,
.btn--primary:active {
  background: var(--cta-hover);
  color: var(--cta-on);
}

.btn--navy,
.btn--navy:link,
.btn--navy:visited {
  background: var(--navy-900);
  color: var(--white);
}
.btn--navy:hover,
.btn--navy:focus-visible,
.btn--navy:active {
  background: var(--navy-800);
  color: var(--white);
}

.btn--ghost,
.btn--ghost:link,
.btn--ghost:visited {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn--ghost:hover,
.btn--ghost:focus-visible,
.btn--ghost:active {
  background: var(--navy-900);
  color: var(--white);
}

.btn--light,
.btn--light:link,
.btn--light:visited {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}
.btn--light:hover,
.btn--light:focus-visible,
.btn--light:active {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-900);
}

.btn--text,
.btn--text:link,
.btn--text:visited {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
  font-weight: 600;
}
.btn--text::after {
  content: "→";
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  translate: 0 0.04em;
  transition: transform 220ms ease;
}
.btn--text:hover,
.btn--text:focus-visible {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn--text:hover::after,
.btn--text:focus-visible::after {
  transform: translateX(0.28em);
}
@media (prefers-reduced-motion: reduce) {
  .btn--text::after { transition: none; }
  .btn--text:hover::after,
  .btn--text:focus-visible::after { transform: none; }
}

.section--navy .btn--text,
.section--navy .btn--text:link,
.section--navy .btn--text:visited,
.site-footer .btn--text,
.site-footer .btn--text:link,
.site-footer .btn--text:visited {
  color: var(--sage-on-navy);
  border-color: var(--sage-on-navy);
}
.section--navy .btn--text:hover,
.section--navy .btn--text:focus-visible,
.site-footer .btn--text:hover,
.site-footer .btn--text:focus-visible {
  color: var(--white);
  border-color: var(--white);
}
.section--navy .card .btn--text,
.section--navy .card .btn--text:link,
.section--navy .card .btn--text:visited {
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.section--navy .card .btn--text:hover,
.section--navy .card .btn--text:focus-visible {
  color: var(--navy-900);
  border-color: var(--navy-900);
}

.btn--full { width: 100%; }

.icon-external {
  width: 1.05em;
  height: 1.05em;
  display: inline-block;
  vertical-align: 0.15em;
  margin-left: 0.12em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 799px) {
  .btn:not(.btn--text) {
    min-height: 3rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    gap: 0.3rem;
  }
  .hero .cluster,
  .site-footer__cta .cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    align-items: stretch;
  }
  .hero .cluster > .btn:not(.btn--text),
  .site-footer__cta .cluster > .btn:not(.btn--text) {
    width: 100%;
    min-width: 0;
  }
  .btn-phone { display: none; }
  .btn-phone-short { display: inline; }
  .sticky-cta {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.5rem var(--gutter);
  }
  .sticky-cta .btn:not(.btn--text) {
    width: 100%;
    min-height: 3rem;
    padding-inline: 0.65rem;
    font-size: 0.9375rem;
  }
}

/* ----- Header / nav ----- */
html.is-header-compact { --header-h: var(--header-h-compact); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 240ms ease;
}
.site-header.is-compact { box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--space-4);
  transition: min-height 240ms ease;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy-900);
  min-width: 0;
}
.logo:hover { color: var(--navy-900); }
.logo img {
  display: block;
  height: 2.85rem;
  width: auto;
  max-width: min(62vw, 14.75rem);
  object-fit: contain;
  object-position: left center;
  background: transparent;
  transition: height 240ms ease, max-width 240ms ease;
}
@media (min-width: 700px) {
  .logo img {
    height: 3.2rem;
    max-width: 17.5rem;
  }
}
html.is-header-compact .logo img {
  height: 2.2rem;
  max-width: min(54vw, 12rem);
}
@media (min-width: 700px) {
  html.is-header-compact .logo img {
    height: 2.4rem;
    max-width: 13.25rem;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
}
.nav a {
  position: relative;
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--sage-800); }
.nav a[aria-current="page"] {
  color: var(--sage-700);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.28em;
}
.nav-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--navy-900);
  position: relative;
  transition: transform var(--ease), top var(--ease), background var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span,
.nav-toggle.is-open span {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before,
.nav-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after,
.nav-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
.site-header .btn--header { display: none; }
@media (min-width: 720px) {
  .site-header .btn--header { display: inline-flex; }
}
html.is-header-compact .site-header .btn--header {
  min-height: 2.5rem;
  padding: 0.45rem 1.05rem;
}
html.is-header-compact .nav-toggle {
  width: 2.45rem;
  height: 2.45rem;
}
@media (max-width: 1099px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "logo cta menu";
    align-items: center;
    align-content: center;
    column-gap: var(--space-3);
    row-gap: 0;
  }
  .site-header__inner:has(.nav.is-open) {
    grid-template-areas:
      "logo cta menu"
      "nav nav nav";
    grid-template-rows: var(--header-h) auto;
    align-content: start;
  }
  .logo {
    grid-area: logo;
    min-width: 0;
  }
  .site-header .btn--header { grid-area: cta; }
  .nav-toggle { grid-area: menu; }
  .nav.is-open {
    grid-area: nav;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.75rem 0 1.15rem;
  }
  .nav.is-open a {
    display: block;
    padding: 1rem 1rem;
    border-radius: var(--r-md);
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--navy-900);
  }
  .nav.is-open a:hover,
  .nav.is-open a:focus-visible {
    background: var(--sand-50);
    color: var(--navy-900);
  }
  .nav.is-open a[aria-current="page"] {
    background: var(--sand-50);
    color: var(--navy-900);
    text-decoration: none;
  }
}
@media (min-width: 1100px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after,
  .site-header,
  .site-header__inner,
  .logo img { transition: none; }
}

/* ----- Hero ----- */
.hero {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
.hero > :first-child {
  padding-top: var(--space-6);
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 0.92fr 1.08fr;
    gap: var(--space-7);
    align-items: stretch;
  }
  .hero > :first-child {
    padding-block: var(--space-7);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.hero__photo {
  position: relative;
}
.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--r-md);
}
@media (min-width: 900px) {
  .hero__photo {
    min-height: 100%;
  }
  .hero__photo img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 50% 28%;
  }
}
.hero__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow var(--ease), transform var(--ease);
}
.hero__badge:hover,
.hero__badge:focus-visible {
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--navy-900);
}
.stars { color: var(--star); letter-spacing: 0.08em; font-size: 1.15rem; line-height: 1; }

/* ----- Cards ----- */
.grid {
  display: grid;
  gap: var(--space-5);
}
.grid-3 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: var(--space-2); }
.card p { margin: 0; color: var(--ink-soft); }
.card--photo img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: var(--space-4);
}
.card--photo h3:last-child { margin-bottom: 0; }
@media (max-width: 699px) {
  .card--photo img { height: 14rem; }
}

.who {
  display: grid;
  gap: var(--space-6);
}
.who__item { min-width: 0; }
.who__item h3 {
  margin: 0.85rem 0 0;
}
.who__media img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  display: block;
  border-radius: var(--r-md);
}
.who__media::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin-top: 0.85rem;
  background: var(--sage-700);
}
@media (min-width: 700px) {
  .who {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
  }
  .who__item {
    flex: 1 1 0;
  }
  .who__media img { height: 22rem; }
}
.card--map {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card--map .card__body { padding: 1.25rem 1.15rem 1.35rem; }
.card--map .card__body .btn { margin-top: 0; }
.card--map .card__body .cluster {
  margin-top: var(--space-4);
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.card--map .card__body .btn--primary {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.card--map .card__body .btn--text {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  min-height: auto;
  padding: 0.55rem 0.75rem;
}
@media (min-width: 700px) {
  .grid-3:has(.card--map) { grid-template-columns: 1fr; }
}
@media (min-width: 860px) {
  .grid-3:has(.card--map) { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .grid-3:has(.card--map) { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 359px) {
  .card--map .card__body { padding-inline: 0.9rem; }
  .card--map .card__body .btn--primary {
    padding: 0.5rem 0.7rem;
    font-size: 0.84rem;
  }
  .card--map .card__body .btn--text { font-size: 0.84rem; }
}

#form,
#contact-form,
#reviews { scroll-margin-top: 5.5rem; }
.form.is-targeted {
  box-shadow: 0 0 0 3px rgba(var(--cta-rgb), 0.35), var(--shadow-md);
}

.map {
  height: 12.75rem;
  background: var(--mist-50);
  position: relative;
}
.map.leaflet-container {
  background: var(--sage-100);
  font-family: var(--font-body);
}
.map .leaflet-tile-pane {
  filter: saturate(0.28) hue-rotate(98deg) contrast(1.06) brightness(0.97);
}
.map .leaflet-control-attribution {
  background: rgba(246, 243, 237, 0.88);
  color: var(--ink-soft);
  font-size: 0.62rem;
  letter-spacing: 0.01em;
  max-width: 70%;
}
.map .leaflet-control-attribution a { color: var(--sage-800); }
.map .leaflet-control-zoom a {
  color: var(--navy-900);
  border-bottom-color: var(--line);
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
}
.map .leaflet-bar {
  border: 0;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.leaflet-div-icon.map-pin {
  background: transparent;
  border: 0;
}
.map-pin__mark {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.35rem auto 0;
  background: var(--cta);
  border: 2.5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(var(--navy-rgb), 0.28);
  animation: pin-pulse 2.4s ease-out infinite;
}
.map-pin--area .map-pin__mark {
  background: var(--sage-700);
  animation: none;
}

@keyframes pin-pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--cta-rgb), 0.45), 0 4px 12px rgba(var(--navy-rgb), 0.28); }
  70% { box-shadow: 0 0 0 12px rgba(var(--cta-rgb), 0), 0 4px 12px rgba(var(--navy-rgb), 0.28); }
  100% { box-shadow: 0 0 0 0 rgba(var(--cta-rgb), 0), 0 4px 12px rgba(var(--navy-rgb), 0.28); }
}

@media (prefers-reduced-motion: reduce) {
  .map-pin__mark { animation: none; }
}

.proof {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-6) 0;
}
@media (min-width: 720px) {
  .proof { grid-template-columns: repeat(4, 1fr); text-align: center; }
}
.proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 1.8rem + 2.2vw, 3.35rem);
  font-weight: 560;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--navy-900);
}
.proof span {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.list-check li {
  padding-left: 1.6rem;
  position: relative;
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  background: var(--sage-700);
}

.concerns {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
@media (min-width: 800px) {
  .concerns {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
  }
}
.concerns li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-height: 4.5rem;
  padding: 0.9rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy-900);
}
.concerns li::before {
  content: "";
  flex: 0 0 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 1px;
  background: var(--sage-700);
}

/* ----- Reviews ----- */
.reviews { margin-bottom: 2.5rem; }
.reviews__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.reviews__nav { display: flex; gap: 0.4rem; }
.reviews__btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.reviews__btn:hover:not(:disabled) {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}
.reviews__btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.reviews__dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.reviews__dot {
  width: 1.5rem;
  height: 0.28rem;
  padding: 0;
  border: 0;
  border-radius: var(--r-full);
  background: var(--line);
  cursor: pointer;
  transition: background var(--ease), width var(--ease);
}
.reviews__dot.is-active {
  width: 2.15rem;
  background: var(--cta);
}
.reviews__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
  container-type: inline-size;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews__viewport::-webkit-scrollbar { display: none; }
.reviews__track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
}
@media (prefers-reduced-motion: reduce) {
  .reviews__viewport { scroll-behavior: auto; }
  .reviews__dot { transition: none; }
}
.reviews__track .review {
  flex: 0 0 100cqi;
  min-width: 0;
  scroll-snap-align: start;
}
@media (min-width: 800px) {
  .reviews__track .review {
    flex: 0 0 calc((100cqi - 1rem) / 3);
  }
}
.reviews__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
}
.reviews__expand { display: none; }

.review {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  border: 1px solid var(--line);
}
.review .stars {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.review p {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 0.96rem + 0.25vw, 1.15rem);
  font-weight: 480;
  line-height: 1.5;
  letter-spacing: 0.012em;
  color: var(--navy-900);
  margin: 0 0 var(--space-4);
}
.review footer {
  margin-top: auto;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.review--rating {
  background: transparent;
  border: 0;
  box-shadow: none;
  justify-content: center;
  padding-inline: var(--space-4);
}
.review--rating .stars {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.review--rating .review__score {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2.1rem + 2vw, 3.6rem);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 var(--space-3);
}
.review--rating p:not(.review__score) {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: var(--track-body);
  color: var(--ink);
}

/* ----- FAQ ----- */
.faq:not(.tools-list) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
}
.faq:not(.tools-list) details {
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
  border-radius: var(--r-md);
  background: var(--white);
  transition: background 200ms ease, border-color 200ms ease;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.6rem;
  padding: 1rem 1rem;
  margin: 0;
  border-radius: var(--r-md);
  line-height: 1.4;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  touch-action: manipulation;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq.tools-list summary:hover,
.faq.tools-list details[open] summary {
  background: var(--sand-50);
}
@media (hover: hover) {
  .faq:not(.tools-list) details:hover,
  .faq:not(.tools-list) details:focus-within {
    background: var(--sand-50);
    border-color: var(--line);
  }
}
.faq:not(.tools-list) details[open],
.faq:not(.tools-list) details.is-closing {
  background: var(--sand-50);
  border-color: var(--line);
}
.faq:not(.tools-list) details[open] summary,
.faq:not(.tools-list) details[open] summary:hover,
.faq:not(.tools-list) details.is-closing summary {
  background: transparent;
}
.faq summary::after {
  content: "+";
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--cta);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  overflow: visible;
  transition: transform 220ms ease, background 200ms ease, border-color 200ms ease;
}
.faq details[open] summary::after,
.faq details.is-closing summary::after {
  content: "+";
  transform: rotate(45deg);
  background: var(--cta-soft);
  border-color: var(--cta);
}
.faq__panel {
  overflow: hidden;
  transition: height 280ms ease;
}
.faq__panel p {
  margin: 0 0 1.35rem;
  padding: 0.25rem 3rem 0.15rem 1rem;
  color: var(--ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .faq:not(.tools-list) details,
  .faq summary::after,
  .faq__panel { transition: none; }
}

/* ----- Form ----- */
.form {
  display: grid;
  gap: var(--space-4);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.field { display: grid; gap: 0.4rem; }
.field label,
.field legend {
  font-weight: 650;
  font-size: var(--text-sm);
}
.field legend { margin-bottom: 0.15rem; }
.field .hint { font-size: var(--text-xs); color: var(--ink-soft); font-weight: 400; }
.field .req {
  color: var(--cta);
  font-weight: 700;
  margin-left: 0.15em;
}
.form-req-note {
  margin: 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  font-size: var(--text-xs);
  color: var(--ink-soft);
  line-height: 1.4;
}
.form-req-note .req {
  color: var(--cta);
  font-weight: 700;
  margin-right: 0.2em;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.field input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]),
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.85rem;
  background: var(--white);
  min-height: 3rem;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-800);
  box-shadow: var(--focus);
  outline: none;
}

.locations {
  display: grid;
  gap: var(--space-3);
}
.choices {
  display: grid;
  gap: var(--space-3);
}
@media (min-width: 640px) {
  .choices { grid-template-columns: 1fr 1fr; }
}
.loc {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 400;
}
.loc:has(input:checked),
.loc:has(input:focus-visible) {
  border-color: var(--cta);
  background: var(--cta-soft);
}
.loc input {
  width: auto;
  min-width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  accent-color: var(--cta);
}
.loc input:focus,
.loc input:focus-visible {
  outline: none;
  box-shadow: none;
}
.loc__name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
}
.loc__addr {
  display: block;
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.form-progress {
  display: none;
  gap: 0.45rem;
}
.form.is-progressive .form-progress { display: grid; }
.form-progress__status {
  font-size: var(--text-sm);
  font-weight: 650;
  color: var(--navy-900);
}
.form-progress__bar {
  display: block;
  height: 4px;
  background: var(--line);
  border-radius: var(--r-full);
  overflow: hidden;
}
.form-progress__fill {
  display: block;
  height: 100%;
  width: 33%;
  background: var(--sage-700);
  border-radius: inherit;
  transition: width 240ms ease;
}
.form.is-progressive .form-step:not(.is-active) { display: none; }
.form-step {
  display: grid;
  gap: var(--space-4);
}
.form-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.form.is-progressive .form-nav [data-next] { margin-left: auto; }
.form-nav [data-back],
.form-nav [data-next] { display: none; }
.form.is-progressive .form-nav [data-back],
.form.is-progressive .form-nav [data-next] { display: inline-flex; }
.form.is-progressive .form-nav [data-next].btn--primary,
.form.is-progressive .form-step .btn--primary.btn--full {
  min-width: 10rem;
}
.form.is-progressive [data-method-field] { display: none; }
.form.is-progressive [data-method-field].is-visible { display: grid; }

.choice {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
  padding: 1.15rem 0.9rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  font-weight: 400;
  color: var(--navy-900);
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.choice:has(input:checked),
.choice:has(input:focus-visible) {
  border-color: var(--cta);
  background: var(--cta-soft);
}
.choice:has(input:focus-visible) {
  box-shadow: var(--focus);
}
.choice__icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--r-full);
  background: var(--sage-100);
  color: var(--sage-800);
}
.choice:has(input:checked) .choice__icon {
  background: var(--white);
  color: var(--navy-900);
}
.choice__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.choice__name {
  display: block;
  font-weight: 650;
  font-size: 1rem;
}
.choice__hint {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

/* ----- Footer / sticky ----- */
.close-quote {
  background: var(--mist-50);
  padding-bottom: 21.5rem;
}
.close-quote blockquote {
  margin: 0;
  max-width: 38rem;
}
.close-quote .stars { margin-bottom: 0.65rem; }
.close-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 0.95vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--navy-900);
  margin: 0 0 1rem;
}
.close-quote blockquote footer {
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.close-quote blockquote footer a {
  font-weight: 600;
  white-space: nowrap;
}
.close-quote blockquote footer .icon-external {
  vertical-align: 0.12em;
  margin-left: 0.15em;
}

.site-footer {
  background: var(--navy-950);
  color: var(--navy-muted);
  padding: var(--space-8) 0 var(--space-6);
}
.site-footer--lift { padding-top: 0; }
.site-footer--lift > .wrap { display: flow-root; }
.site-footer a:not(.btn):not(.site-footer__reviews):not(.site-footer__phone):not(.site-footer__email):not(.site-footer__social) {
  color: var(--navy-ink);
  text-decoration: none;
}
.site-footer a:not(.btn):not(.site-footer__reviews):not(.site-footer__phone):not(.site-footer__email):not(.site-footer__social):hover {
  color: var(--cta);
}
.site-footer h3 { color: var(--white); font-size: 1.15rem; margin-bottom: var(--space-3); }
.site-footer .eyebrow { color: var(--sage-on-navy); }
.site-footer .btn--primary,
.site-footer .btn--primary:link,
.site-footer .btn--primary:visited,
.site-footer .btn--primary:hover,
.site-footer .btn--primary:focus-visible {
  color: var(--cta-on);
}
.site-footer .btn--light,
.site-footer .btn--light:link,
.site-footer .btn--light:visited {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.site-footer .btn--light:hover,
.site-footer .btn--light:focus-visible,
.site-footer .btn--light:active {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-900);
}

.site-footer__cta {
  margin-top: -18.5rem;
  margin-bottom: var(--space-7);
  background: var(--sand-50);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.35rem);
  box-shadow: var(--shadow-lg);
}
.site-footer__cta .eyebrow { color: var(--sage-700); }
.site-footer__cta h2 { color: var(--navy-900); margin-bottom: 0.55rem; }
.site-footer__cta .lede {
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
}

.site-footer__contact {
  padding-bottom: var(--space-7);
  margin-bottom: var(--space-7);
  border-bottom: 1px solid var(--navy-800);
}
.site-footer__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.25rem);
  font-weight: 560;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--white);
  text-decoration: none;
  margin: 0 0 var(--space-3);
}
.site-footer__phone:hover { color: var(--cta); }
.site-footer__email {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  margin-bottom: var(--space-3);
}
.site-footer__email:hover { color: var(--cta); }
.site-footer__note {
  margin: 0 0 var(--space-5);
  max-width: 28rem;
}

.site-footer__grid {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr 1.35fr; }
}

.site-footer__reviews {
  display: block;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--navy-muted);
  text-decoration: none;
}
.site-footer__reviews:hover {
  color: var(--navy-ink);
}
.site-footer__reviews .stars {
  margin-bottom: 0.4rem;
}
.site-footer__reviews strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2rem);
  font-weight: 560;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}
.site-footer__reviews:hover strong { color: var(--white); }
.site-footer__reviews span {
  display: block;
  color: var(--navy-muted);
}
.site-footer__reviews:hover span { color: var(--navy-ink); }

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid var(--navy-800);
}
.site-footer small {
  display: block;
  margin: 0;
  color: var(--navy-muted);
}
.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.site-footer__social {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--navy-muted);
  background: none;
  border: 0;
  border-radius: 0;
  text-decoration: none;
}
.site-footer__social:hover {
  color: var(--white);
  background: none;
  border: 0;
}
.site-footer__social svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}
.site-footer__social[aria-label="Facebook"] svg {
  width: 1.7rem;
  height: 1.7rem;
}

@media (min-width: 800px) {
  .btn-phone-short { display: none; }
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem var(--gutter) calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--line);
  z-index: 40;
  transition: transform 280ms ease, opacity 220ms ease;
}
@media (max-width: 799px) {
  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
  }
  body:has(.sticky-cta) {
    padding-bottom: calc(4.35rem + env(safe-area-inset-bottom, 0px));
  }
  body:has(.hero .cluster) .sticky-cta:not(.is-visible) {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }
}
@media (min-width: 800px) { .sticky-cta { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

@keyframes img-rise {
  from { opacity: 0; translate: 0 1.6rem; }
  to { opacity: 1; translate: 0 0; }
}
.will-rise {
  opacity: 0;
  translate: 0 1.6rem;
}
.is-rising {
  animation: img-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .will-rise { opacity: 1; translate: none; }
  .is-rising { animation: none; }
}

/* Preview-only helpers */
.swatch-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  gap: var(--space-4);
}
.swatch {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.swatch__chip { height: 5.2rem; }
.swatch__meta { padding: 0.7rem 0.8rem; font-size: 0.78rem; }
.swatch__meta strong { display: block; }
.type-sample { margin: 0 0 var(--space-5); }
.preview-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: var(--navy-900);
}
.preview-nav .wrap {
  display: flex;
  gap: 1rem;
  overflow: auto;
  padding: 0.7rem 0;
}
.preview-nav a {
  color: var(--navy-ink);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.preview-nav a:hover { color: var(--white); }

/* ----- Live site: inner pages ----- */
.page-hero { padding-block: var(--space-7); }
.page-hero h1 {
  margin-bottom: var(--space-4);
  max-width: var(--wrap-narrow);
}
.page-hero .lede {
  margin-bottom: var(--space-4);
  max-width: 38rem;
}
.page-hero .lede:last-child { margin-bottom: 0; }

.crumbs {
  margin: 0 0 var(--space-4);
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
}
.crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.crumbs li:not(:last-child)::after {
  content: "/";
  color: var(--line);
  font-weight: 400;
}
.crumbs a {
  color: var(--sage-800);
  text-decoration: none;
}
.crumbs a:hover {
  color: var(--navy-900);
  text-decoration: underline;
}
.crumbs [aria-current="page"] {
  color: var(--navy-900);
  font-weight: 600;
}

.split {
  display: grid;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1.08fr; }
  .split:has(.photo-bleed) { grid-template-columns: 0.92fr 1.18fr; }
  .split--flip .split__photo,
  .split--flip .photo-stack { order: -1; }
}
.split__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-md);
}
.split__photo--wide img { aspect-ratio: 4 / 3.15; }
.split--top { align-items: start; }

.obj-low { object-position: center 78%; }
.obj-top { object-position: center 18%; }
.obj-right { object-position: 82% center; }
.obj-left { object-position: 22% center; }

.photo-stack {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 0.55rem;
  align-items: start;
}
.photo-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
}
.photo-stack.photo-bleed img {
  border-radius: var(--r-md);
}
.photo-stack img:first-child {
  aspect-ratio: 3 / 4;
  margin-top: 2rem;
}
.photo-stack img:last-child {
  aspect-ratio: 4 / 5;
}
@media (max-width: 699px) {
  .photo-stack { gap: 0.4rem; }
  .photo-stack img:first-child { margin-top: 1.1rem; }
}

.photo-bleed,
.photo-bleed img {
  max-width: none;
  border-radius: 0;
  box-shadow: none;
}
.hero__photo.photo-bleed img,
.split__photo.photo-bleed img {
  aspect-ratio: 4 / 5.1;
}
@media (min-width: 900px) {
  .hero__photo.photo-bleed img {
    height: 100%;
    aspect-ratio: auto;
  }
}
@media (max-width: 899px) {
  .photo-bleed {
    width: calc(100% + (var(--gutter) * 2));
    max-width: none;
    margin-inline: calc(-1 * var(--gutter));
  }
  .hero__photo.photo-bleed img,
  .split__photo.photo-bleed img {
    aspect-ratio: 4 / 4.6;
  }
}
@media (min-width: 900px) {
  .hero__photo.photo-bleed,
  .split:not(.split--flip) .split__photo.photo-bleed,
  .tools-photos.photo-bleed {
    width: calc(100% + var(--gutter));
    margin-right: calc(-1 * var(--gutter));
  }
  .split--flip .photo-bleed {
    width: calc(100% + var(--gutter));
    margin-left: calc(-1 * var(--gutter));
  }
}

.tools {
  display: grid;
  gap: var(--space-7);
  align-items: start;
}
@media (min-width: 900px) {
  .tools {
    grid-template-columns: 0.92fr 1.08fr;
    gap: var(--space-8);
  }
}
.tools-photos {
  position: sticky;
  top: calc(var(--header-h) + 0.35rem);
  z-index: 3;
  height: auto;
  background: var(--white);
}
.tools-photos__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--mist-50);
}
.tools-photos__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(104%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.tools-photos__frame img.is-settled {
  transform: translateY(0);
}
.tools-photos img:first-child { object-position: 50% 58%; z-index: 1; }
.tools-photos img:nth-child(2) { object-position: 50% 40%; z-index: 2; }
.tools-photos img:nth-child(3) { object-position: 50% 70%; z-index: 3; }
@media (min-width: 900px) {
  .tools {
    align-items: start;
  }
  .tools-photos {
    top: calc(var(--header-h) + 1.5rem);
    z-index: 1;
    background: transparent;
  }
  .tools-photos__frame {
    aspect-ratio: 4 / 3.35;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tools-photos__frame img { transition: none; }
}
.tools-list summary {
  min-height: 3.05rem;
  padding: 0.65rem 1rem;
  border-radius: var(--r-sm);
}
.tools-list summary h3 {
  margin: 0;
  flex: 1;
  font-size: 1.2rem;
  font-weight: 560;
  line-height: 1.25;
  letter-spacing: -0.012em;
}
.tools-list .faq__panel p {
  padding-left: 1rem;
}
.tools .btn--text { margin-top: var(--space-5); }

.trio {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
.trio img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-md);
}
@media (max-width: 899px) {
  .trio__copy { order: -1; }
}
@media (min-width: 900px) {
  .trio {
    grid-template-columns: 0.88fr 1.2fr 0.88fr;
    gap: var(--space-6);
  }
  .trio__a { margin-top: 2.75rem; }
  .trio__b { margin-bottom: 2.75rem; }
}

.figure-wide {
  margin: var(--space-7) 0 0;
}
.figure-wide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-md);
}
.figure-wide.photo-bleed img {
  border-radius: 0;
}
@media (min-width: 900px) {
  .figure-wide.photo-bleed {
    width: calc(100% + (var(--gutter) * 2));
    margin-inline: calc(-1 * var(--gutter));
  }
}

.principles {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-6);
}
@media (min-width: 800px) {
  .principles { grid-template-columns: repeat(3, 1fr); }
}
.principle {
  padding: var(--space-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.principle__icon {
  display: inline-flex;
  color: var(--sage-700);
  margin-bottom: var(--space-3);
}
.principle__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.principle h3 { margin-bottom: var(--space-2); }
.principle p { margin: 0; color: var(--ink-soft); }

.stats {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
  margin-top: var(--space-7);
}
@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.trio .stats { grid-template-columns: 1fr 1fr; }
.stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  min-height: 10.5rem;
  padding: 1.25rem 1.1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.15rem + 1.5vw, 2.45rem);
  font-weight: 560;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  line-height: 1.05;
}
.stat strong::after {
  content: "";
  display: block;
  width: 1.65rem;
  height: 2px;
  margin-top: 0.85rem;
  background: var(--sage-700);
}
.stat span {
  display: block;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.4;
}

.steps { display: grid; gap: var(--space-5); }
.step {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: var(--space-4);
  align-items: start;
}
.step__num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 560;
  color: var(--cta);
  line-height: 1.1;
}
.step h3 { margin-bottom: var(--space-2); }
.step p { margin: 0; color: var(--ink-soft); }

.prose p { margin: 0 0 var(--space-4); max-width: 42rem; }
.prose p:last-child { margin-bottom: 0; }

.creds {
  margin: 0;
  padding-left: 1.15rem;
  max-width: none;
  display: grid;
  gap: 0.85rem 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .creds { grid-template-columns: 1fr 1fr; }
}
.creds li {
  margin: 0;
  padding: 0;
  color: var(--navy-900);
  line-height: 1.35;
}
.creds strong {
  display: block;
  font-weight: 600;
}
.creds span {
  display: block;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.4;
}

.cert-gallery {
  display: grid;
  gap: var(--space-4);
  margin: 0 0 var(--space-7);
}
.cert-gallery__images,
.cert-gallery__captions {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .cert-gallery__images,
  .cert-gallery__captions {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cert-gallery__images img {
  width: 100%;
  height: 11.5rem;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: var(--white);
}
@media (min-width: 900px) {
  .cert-gallery__images img { height: 13.5rem; }
}
.cert-gallery__captions p {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-900);
  text-align: center;
  line-height: 1.35;
}

.therapy {
  display: grid;
  gap: var(--space-6);
  align-items: start;
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--line);
}
.therapy:last-child { border-bottom: 0; }
@media (min-width: 800px) {
  .therapy { grid-template-columns: 0.9fr 1.1fr; gap: var(--space-7); }
  .therapy:nth-child(even) { grid-template-columns: 1.1fr 0.9fr; }
  .therapy:nth-child(even) > img { order: 1; }
}
.therapy > img {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 799px) {
  .therapy > img {
    width: calc(100% + (var(--gutter) * 2));
    max-width: none;
    margin-inline: calc(-1 * var(--gutter));
    aspect-ratio: 4 / 4.2;
  }
}
@media (min-width: 800px) {
  .therapy > img {
    width: calc(100% + var(--gutter));
    margin-left: calc(-1 * var(--gutter));
  }
  .therapy:nth-child(even) > img {
    margin-left: 0;
    margin-right: calc(-1 * var(--gutter));
  }
}
.therapy h2 { margin-bottom: var(--space-2); }
.therapy__lead {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: var(--display-sm);
  font-weight: 560;
  letter-spacing: -0.012em;
  line-height: var(--leading-snug);
  color: var(--navy-900);
}
.therapy-figure {
  margin: var(--space-5) 0 0;
}
.therapy-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: var(--r-md);
}
.therapy-figure figcaption {
  margin-top: 0.65rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.4;
}

.cta-band { text-align: center; }
.section--navy .site-footer__phone { color: var(--white); }
.section--navy .site-footer__phone:hover { color: var(--cta); }
.cta-band h2,
.cta-band .lede { margin-inline: auto; }
.cta-band .cluster { justify-content: center; }

.contact-aside {
  display: grid;
  gap: var(--space-5);
}
.contact-aside a {
  font-weight: 650;
  text-decoration: none;
}
.contact-layout {
  display: grid;
  gap: var(--space-7);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 0.85fr 1.15fr; }
}

.form-banner {
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  background: #fdecea;
  color: var(--danger);
  border: 1px solid #f0c4bf;
  margin: 0;
}
.form-banner[hidden] { display: none !important; }
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reviews--few .reviews__toolbar { display: none; }

.thanks {
  min-height: 60vh;
  display: grid;
  align-content: center;
}

.doc-banner {
  background: var(--navy-900);
  color: var(--navy-muted);
  padding: 0.75rem 0;
  font-size: var(--text-sm);
}
.doc-banner strong { color: var(--white); }
.doc h2 {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}
.doc h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.doc h3 { margin-top: var(--space-5); }
.doc blockquote {
  margin: 0 0 var(--space-5);
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--cta);
  background: var(--sand-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.doc blockquote p { margin: 0; color: var(--navy-900); font-weight: 600; }
.doc ul { margin: 0 0 var(--space-5); padding-left: 1.2rem; }
.doc li { margin-bottom: 0.4rem; }
.doc-toc {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 var(--space-7);
}
.doc-toc a { text-decoration: none; font-weight: 600; }
.pair {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
@media (min-width: 700px) {
  .pair { grid-template-columns: 1fr 1fr; }
}
.pair > div {
  padding: var(--space-4);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.pair .instead { background: var(--mist-50); color: var(--ink-soft); }
.pair .use { background: var(--cta-soft); }
.pair p { margin: 0; }

/* ----- Logo review ----- */
.logo-compare {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: var(--space-8);
}
@media (min-width: 800px) {
  .logo-compare { grid-template-columns: repeat(3, 1fr); }
}
.logo-compare a {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.25rem 1.35rem;
  background: var(--white);
  text-decoration: none;
  color: inherit;
}
.logo-compare a:hover { background: var(--sand-50); }
.logo-compare img {
  width: 100%;
  height: 5.5rem;
  object-fit: contain;
  object-position: left center;
}
.logo-compare .num {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-700);
}
.logo-board {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.logo-board h2 { margin-bottom: 0.15rem; }
.logo-board .lede { margin-bottom: var(--space-5); }
.logo-stages {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 800px) {
  .logo-stages { grid-template-columns: 1fr 1fr; }
}
.logo-stage {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 1.5rem 1.25rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--white);
}
.logo-stage--sand { background: var(--sand-50); }
.logo-stage--mist { background: var(--mist-50); }
.logo-stage--navy {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--navy-ink);
}
.logo-stage img {
  width: 100%;
  height: 6.5rem;
  object-fit: contain;
  object-position: left center;
}
.logo-stage--mark {
  justify-items: start;
}
.logo-stage--mark img {
  width: auto;
  height: 5.25rem;
  object-position: center;
}
.logo-stage figcaption,
.logo-stage p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.logo-stage--navy figcaption,
.logo-stage--navy p { color: var(--navy-muted); }
.logo-header-mock {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.65rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.logo-header-mock img {
  height: 2.6rem;
  width: auto;
  max-width: min(100%, 16rem);
  object-fit: contain;
}
.logo-sizes {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1.5rem;
}
.logo-sizes img {
  width: auto;
  object-fit: contain;
}
.logo-sizes .s { height: 1.5rem; }
.logo-sizes .m { height: 2.4rem; }
.logo-sizes .l { height: 3.4rem; }
