/*
Theme Name: Enchanted Therapies & Hypnosis
Theme URI: https://enchantedtherapies.example
Author: Built for Colleen Picone, LCSW, CHT
Author URI: https://enchantedtherapies.example
Description: Custom theme for Enchanted Therapies & Hypnosis (Southington, CT). A calm, restorative forest-green and antique-gold brand for integrative psychotherapy, hypnotherapy, and holistic services.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: enchanted-therapies
*/

/* =============================================================
   Enchanted Therapies & Hypnosis — shared stylesheet
   Calm, restorative, clinically credible. Forest / sage / cream / gold.
   ============================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --forest-950: #0b382f;
  --forest-900: #103f35;
  --forest-800: #174c40;
  --forest-700: #1f5a4c;
  --sage-400: #9caf92;
  --sage-300: #b8c7b2;
  --sage-200: #d6dfd1;
  --sage-100: #e7eee3;
  --cream-100: #f7f2e9;
  --cream-200: #efe7d6;
  --ivory: #fffdf8;
  --gold-600: #a97f38;
  --gold-500: #bd9346;
  --gold-400: #caa65d;
  --gold-200: #e6d3a6;
  --ink: #173b33;
  --body: #34443f;
  --muted: #6c7a70;
  --border: #e6dccb;
  --border-forest: rgba(202, 166, 93, 0.35);

  --maxw: 1240px;
  --gutter: 72px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(16, 63, 53, 0.06);
  --shadow: 0 14px 40px rgba(16, 63, 53, 0.10);
  --shadow-card: 0 10px 30px rgba(16, 63, 53, 0.08);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --header-h: 84px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* contains off-canvas drawer without breaking sticky header */
}

img { max-width: 100%; display: block; }

a { color: var(--forest-800); text-decoration: none; }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.4em;
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
p { margin: 0 0 1em; }

/* ---------- Skip link & focus ---------- */
.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  background: var(--forest-900);
  color: var(--ivory);
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; color: var(--ivory); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 8vw, 112px); }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--cream { background: var(--cream-100); }
.section--ivory { background: var(--ivory); }
.center { text-align: center; }
.measure { max-width: 64ch; margin-inline: auto; }
.measure-sm { max-width: 52ch; margin-inline: auto; }

/* ---------- Eyebrow + section heading + botanical divider ---------- */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-600);
  margin: 0 0 1rem;
}
.section-head { max-width: 62ch; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section-head p { color: var(--body); font-size: 1.06rem; }

.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 14px auto 0; max-width: 220px; color: var(--gold-500);
}
.divider::before, .divider::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(to var(--dir, right), transparent, var(--gold-400));
}
.divider::before { --dir: left; }
.divider svg { width: 34px; height: 14px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold-500); color: #2c2410; box-shadow: 0 8px 20px rgba(189,147,70,.28); }
.btn--gold:hover { background: var(--gold-400); color: #2c2410; }

.btn--forest { background: var(--forest-900); color: var(--ivory); }
.btn--forest:hover { background: var(--forest-800); color: var(--ivory); }

.btn--sage { background: var(--sage-300); color: var(--forest-900); }
.btn--sage:hover { background: var(--sage-200); color: var(--forest-900); }

.btn--outline { background: transparent; border-color: var(--gold-400); color: var(--forest-900); }
.btn--outline:hover { background: rgba(189,147,70,.10); color: var(--forest-900); }

.btn--outline-light { background: transparent; border-color: rgba(230,211,166,.6); color: var(--ivory); }
.btn--outline-light:hover { background: rgba(255,255,255,.08); color: var(--ivory); }

.btn--ghost-sage { background: rgba(255,255,255,.14); border-color: rgba(214,223,209,.5); color: var(--ivory); }
.btn--ghost-sage:hover { background: rgba(255,255,255,.22); color: var(--ivory); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--forest-900);
  color: var(--cream-100);
  border-bottom: 1px solid rgba(202,166,93,.22);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(11,56,47,.28); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--cream-100); }
.brand:hover { color: var(--cream-100); }
.brand__mark { width: 34px; height: 40px; flex: none; color: var(--gold-400); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 600; letter-spacing: 0.16em;
  color: var(--ivory);
}
.brand__sub {
  font-family: var(--font-sans);
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sage-300); margin-top: 4px;
}

.primary-nav { display: flex; align-items: center; gap: 2px; }
.primary-nav a {
  position: relative;
  color: var(--cream-100);
  font-size: 0.9rem; font-weight: 500; white-space: nowrap;
  padding: 8px 10px; border-radius: 6px;
  transition: color .18s ease;
}
.primary-nav a:hover { color: var(--gold-200); }
.primary-nav a[aria-current="page"] { color: var(--ivory); }
.primary-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 0;
  height: 2px; background: var(--gold-400); border-radius: 2px;
}
.header-cta { margin-left: 8px; }

/* Mobile menu button */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid rgba(230,211,166,.4);
  border-radius: 10px; color: var(--cream-100); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150;
  visibility: hidden;
  overflow: clip; /* keep off-canvas panel from widening the page */
}
.mobile-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(11,56,47,.5);
  opacity: 0; transition: opacity .3s ease;
}
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(86vw, 360px);
  background: var(--forest-900);
  color: var(--cream-100);
  padding: 24px 26px 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { visibility: visible; }
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.mobile-nav__close {
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid rgba(230,211,166,.4);
  border-radius: 10px; color: var(--cream-100); cursor: pointer;
}
.mobile-nav__close svg { width: 22px; height: 22px; }
.mobile-nav a.m-link {
  display: block; color: var(--cream-100);
  font-size: 1.15rem; padding: 14px 6px;
  border-bottom: 1px solid rgba(202,166,93,.16);
}
.mobile-nav a.m-link[aria-current="page"] { color: var(--gold-200); }
.mobile-nav .btn { margin-top: 22px; }

/* ---------- Hero: full-width ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  background-size: cover; background-position: center right;
  color: var(--ivory);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,50,42,.92) 0%, rgba(11,50,42,.7) 34%, rgba(11,50,42,.15) 62%, rgba(11,50,42,0) 82%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 80px; max-width: var(--maxw); }
.hero__inner > * { max-width: 600px; }
.hero h1 { color: var(--ivory); }
.hero p { color: rgba(255,253,248,.9); font-size: 1.15rem; max-width: 34ch; margin-bottom: 2rem; }

/* ---------- Split hero ---------- */
.split-hero { background: var(--forest-900); color: var(--ivory); }
.split-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
.split-hero__copy { padding: clamp(56px, 6vw, 96px) clamp(24px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.split-hero__copy .eyebrow { color: var(--gold-400); }
.split-hero__copy h1 { color: var(--ivory); }
.split-hero__copy p { color: rgba(255,253,248,.85); max-width: 40ch; margin-bottom: 2rem; }
.split-hero__media {
  background-size: cover; background-position: center;
  min-height: 420px;
}

/* botanical accents flanking green sections */
.leaf-accent { position: absolute; color: var(--gold-400); opacity: .5; pointer-events: none; }

/* ---------- Whole-person intro ---------- */
.intro-band { position: relative; overflow: hidden; }
.intro-band .leaf-side { position: absolute; top: 40px; width: 150px; color: var(--gold-400); opacity: .35; }
.intro-band .leaf-side.left { left: 0; }
.intro-band .leaf-side.right { right: 0; transform: scaleX(-1); }

/* ---------- Pathway cards (two big) ---------- */
.pathways { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 28px; }
.pathway {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: clamp(36px, 4vw, 52px);
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center;
}
.pathway--forest { background: var(--forest-900); color: var(--cream-100); }
.pathway--forest h3 { color: var(--ivory); }
.pathway--forest p { color: rgba(247,242,233,.82); }
.pathway--sage { background: var(--sage-300); color: var(--forest-900); }
.pathway--sage h3 { color: var(--forest-900); }
.pathway--sage p { color: var(--forest-800); }
.pathway__icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 18px;
  border: 1.5px solid var(--gold-400); color: var(--gold-400);
}
.pathway--sage .pathway__icon { border-color: var(--gold-600); color: var(--gold-600); }
.pathway__icon svg { width: 38px; height: 38px; }
.pathway h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: .5rem; }
.pathway p { max-width: 34ch; margin-bottom: 1.6rem; }
.pathway .btn { margin-top: auto; }
.pathway .leaf-bg { position: absolute; bottom: -10px; left: -10px; width: 150px; opacity: .16; pointer-events: none; }
.pathway--forest .leaf-bg { color: var(--gold-200); }
.pathway--sage .leaf-bg { color: var(--forest-800); opacity: .12; }

/* ---------- Icon card grid (support areas) ---------- */
.icon-grid { display: grid; gap: 22px; }
.icon-grid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.icon-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.icon-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.icon-card__icon { width: 54px; height: 54px; color: var(--forest-700); }
.icon-card__icon svg { width: 100%; height: 100%; }
.icon-card__label { font-family: var(--font-serif); font-size: 1.18rem; color: var(--ink); line-height: 1.2; }

/* inline icon row variant (holistic potential support) */
.icon-row { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; }
.icon-row .cell {
  text-align: center; padding: 16px 8px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.icon-row .cell:last-child { border-right: none; }
.icon-row .cell svg { width: 46px; height: 46px; color: var(--forest-700); }
.icon-row .cell span { font-family: var(--font-serif); font-size: 1.06rem; color: var(--ink); line-height: 1.2; }

/* ---------- Service cards (holistic, with description + action) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.service-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .18s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card__icon {
  width: 68px; height: 68px; border-radius: 50%;
  border: 1.5px solid var(--gold-400); color: var(--gold-600);
  display: grid; place-items: center; margin-bottom: 16px;
}
.service-card__icon svg { width: 36px; height: 36px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.service-card p { color: var(--body); font-size: .96rem; margin-bottom: 1.4rem; }
.service-card .btn { margin-top: auto; }

/* ---------- Treatment approach (deep green, outlined cards) ---------- */
.approach { position: relative; background: var(--forest-900); color: var(--cream-100); overflow: hidden; }
.approach h2 { color: var(--ivory); }
.approach .section-head p { color: rgba(247,242,233,.8); }
.approach__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; position: relative; z-index: 2; }
.approach-card {
  border: 1px solid rgba(202,166,93,.4);
  border-radius: var(--radius-sm);
  padding: 30px 22px; text-align: center;
  background: rgba(255,255,255,.02);
  display: flex; flex-direction: column; align-items: center;
}
.approach-card__icon { width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid var(--gold-400); color: var(--gold-400); display: grid; place-items: center; margin-bottom: 16px; }
.approach-card__icon svg { width: 32px; height: 32px; }
.approach-card h3 { color: var(--ivory); font-size: 1.28rem; }
.approach-card p { color: rgba(247,242,233,.72); font-size: .92rem; margin: 0; }
.approach .leaf-side { position: absolute; top: 50%; transform: translateY(-50%); width: 150px; color: var(--gold-400); opacity: .3; z-index: 1; }
.approach .leaf-side.left { left: 0; }
.approach .leaf-side.right { right: 0; transform: translateY(-50%) scaleX(-1); }

/* ---------- Feature panel (HMR, hypnotherapy) ---------- */
.feature { position: relative; overflow: hidden; }
.feature--sage { background: var(--sage-100); }
.feature--forest { background: var(--forest-900); color: var(--cream-100); }
.feature--forest h2 { color: var(--ivory); }
.feature__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 48px; align-items: center; }
.feature__grid.reverse { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.feature__copy .eyebrow { color: var(--gold-600); }
.feature--forest .feature__copy .eyebrow { color: var(--gold-400); }
.feature--forest .feature__copy p { color: rgba(247,242,233,.82); }
.feature__art { display: grid; place-items: center; }
.feature .leaf-side { position: absolute; width: 130px; color: var(--gold-500); opacity: .3; top: 40px; }
.feature--forest .leaf-side { color: var(--gold-400); }
.feature .leaf-side.right { right: 0; transform: scaleX(-1); }
.feature .leaf-side.left { left: 0; }

.benefit-row { display: flex; gap: 30px; margin: 22px 0 26px; }
.benefit { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.benefit__icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gold-400); color: var(--gold-400); display: grid; place-items: center; }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit span { font-size: .92rem; color: rgba(247,242,233,.9); font-weight: 500; }

/* ripple illustration */
.ripple { width: min(360px, 100%); aspect-ratio: 1; }

/* HMR full-bleed illustrated background sections */
.hmr-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.hmr-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
}
.hmr-bg--right::before {
  background: linear-gradient(to left, rgba(247,242,233,.92) 0%, rgba(247,242,233,.7) 34%, rgba(247,242,233,.15) 60%, rgba(247,242,233,0) 78%);
}
.hmr-bg--left::before {
  background: linear-gradient(to right, rgba(247,242,233,.92) 0%, rgba(247,242,233,.7) 34%, rgba(247,242,233,.15) 60%, rgba(247,242,233,0) 78%);
}
.hmr-bg .container { position: relative; z-index: 2; }
.hmr-bg__panel { max-width: 500px; }
.hmr-bg--right .hmr-bg__panel { margin-left: auto; }
.hmr-bg__panel .eyebrow { color: var(--gold-600); }
.hmr-bg__panel h2 { color: var(--ink); }
.hmr-bg__panel p { color: var(--body); }

/* ---------- Process steps ---------- */
.process { position: relative; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 44px; left: 16%; right: 16%;
  border-top: 2px dashed var(--gold-200); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.step__badge {
  position: relative; width: 88px; height: 88px; border-radius: 50%;
  background: var(--sage-200); color: var(--forest-800);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step__badge svg { width: 40px; height: 40px; }
.step__num {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-500); color: #2c2410;
  font-size: .78rem; font-weight: 700; font-family: var(--font-sans);
  display: grid; place-items: center; border: 2px solid var(--cream-100);
}
.step h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.step p { color: var(--body); font-size: .95rem; max-width: 32ch; }

/* ---------- Availability strip ---------- */
.availability {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}
.availability__item { display: flex; gap: 16px; align-items: flex-start; padding: 26px 28px; border-right: 1px solid var(--border); }
.availability__item:last-child { border-right: none; }
.availability__icon { width: 48px; height: 48px; flex: none; border-radius: 50%; background: var(--sage-100); color: var(--forest-700); display: grid; place-items: center; }
.availability__icon svg { width: 24px; height: 24px; }
.availability__item h4 { font-family: var(--font-serif); font-size: 1.15rem; margin: 0 0 3px; color: var(--ink); }
.availability__item p { font-size: .88rem; color: var(--muted); margin: 0; }
.availability-note { text-align: center; color: var(--muted); font-size: .86rem; margin-top: 16px; }

/* ---------- Credential card ---------- */
.bio-grid { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 52px; align-items: center; }
.bio-photo {
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5; background: var(--sage-200);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.credential-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--sage-200);
  border-radius: var(--radius-sm);
  padding: 20px 24px; margin-top: 26px;
}
.credential-card__mark { width: 54px; height: 54px; flex: none; border-radius: 50%; border: 1.5px solid var(--gold-600); color: var(--gold-600); display: grid; place-items: center; }
.credential-card__mark svg { width: 28px; height: 28px; }
.credential-card__name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--ink); line-height: 1.1; }
.credential-card__name small { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .04em; color: var(--muted); font-weight: 600; }
.credential-card__role { font-size: .9rem; color: var(--body); margin: 2px 0 0; }

/* ---------- Notice / distinction card ---------- */
.notice {
  background: var(--sage-200);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  display: flex; gap: 16px; align-items: center;
  max-width: 640px; margin: 26px auto 0;
  color: var(--forest-800);
}
.notice__icon { width: 40px; height: 40px; flex: none; color: var(--forest-700); }
.notice p { margin: 0; font-size: .96rem; }

.distinction {
  border: 1.5px solid var(--gold-400);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: 70px minmax(0, 1fr) auto; gap: 28px; align-items: center;
}
.distinction__mark { width: 64px; height: 64px; color: var(--gold-600); }
.distinction h3 { margin-bottom: .4rem; }
.distinction p { margin: 0; color: var(--body); }
.distinction__actions { display: flex; flex-direction: column; gap: 12px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-card {
  position: relative; overflow: hidden;
  background: var(--forest-900); color: var(--ivory);
  border-radius: 22px;
  border: 1px solid rgba(202,166,93,.3);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px);
  text-align: center;
}
.cta-card h2 { color: var(--ivory); max-width: 20ch; margin-inline: auto; }
.cta-card p { color: rgba(247,242,233,.85); max-width: 46ch; margin: 0 auto 1.6rem; }
.cta-card .btn { margin-top: 8px; }
.cta-card .leaf-bg { position: absolute; width: 200px; color: var(--gold-400); opacity: .22; pointer-events: none; }
.cta-card .leaf-bg.bl { bottom: -20px; left: -10px; }
.cta-card .leaf-bg.tr { top: -20px; right: -10px; transform: scaleX(-1); }

/* full-green CTA variant used at page end */
.cta-solid { background: var(--forest-900); color: var(--ivory); position: relative; overflow: hidden; text-align: center; }
.cta-solid h2 { color: var(--ivory); }
.cta-solid p { color: rgba(247,242,233,.85); }
.cta-solid .leaf-bg { position: absolute; width: 200px; color: var(--gold-400); opacity: .22; }
.cta-solid .leaf-bg.bl { bottom: -30px; left: -10px; }
.cta-solid .leaf-bg.tr { top: -30px; right: -10px; transform: scaleX(-1); }

/* =============================================================
   About page
   ============================================================= */
.about-hero { position: relative; overflow: hidden; background: var(--forest-900); color: var(--ivory); }
.about-hero .leaf-side { position: absolute; top: 50%; transform: translateY(-50%); width: 150px; color: var(--gold-400); opacity: .4; }
.about-hero .leaf-side.left { left: 0; }
.about-hero__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 48px; align-items: center; padding-block: clamp(44px, 5vw, 76px); position: relative; z-index: 2; }
.about-hero__copy .eyebrow { color: var(--gold-400); }
.about-hero__copy h1 { color: var(--ivory); }
.about-hero__copy p { color: rgba(255,253,248,.86); max-width: 42ch; }
.about-hero__media { position: relative; display: flex; justify-content: center; }
.about-portrait { position: relative; width: min(360px, 100%); }
.about-portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: 200px 200px 18px 18px; border: 1px solid rgba(202,166,93,.45); }
.about-badge {
  position: absolute; left: -6px; bottom: 26px;
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--forest-800); border: 1.5px solid var(--gold-400);
  display: grid; place-items: center; text-align: center; padding: 8px;
  box-shadow: var(--shadow);
}
.about-badge b { display: block; font-family: var(--font-serif); font-size: 1.8rem; color: var(--gold-400); line-height: 1; }
.about-badge span { display: block; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,253,248,.85); margin-top: 3px; }

.about-intro { position: relative; overflow: hidden; }
.about-intro__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 40px; align-items: center; }
.signature { font-family: var(--font-serif); font-style: italic; font-size: 1.55rem; color: var(--gold-600); margin: 8px 0 0; }
.signature small { font-style: normal; font-family: var(--font-sans); font-size: .8rem; letter-spacing: .04em; color: var(--muted); }
.about-intro__art { display: grid; place-items: center; }
.about-intro__art svg { width: min(300px, 78%); color: var(--gold-400); opacity: .85; }

.approach__grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 960px; margin-inline: auto; }

/* What You Can Expect (full-bleed split) */
.expect__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.expect__art { background: var(--sage-100); min-height: 430px; display: grid; place-items: center; padding: 32px; }
.expect__art svg { width: min(380px, 92%); height: auto; }
.expect__body { background: var(--cream-100); padding: clamp(36px, 5vw, 72px) clamp(24px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.checklist { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.checklist li { display: flex; align-items: center; gap: 14px; font-size: 1.06rem; color: var(--ink); }
.checklist svg { width: 26px; height: 26px; flex: none; color: var(--gold-500); }
.expect__note { margin-top: 24px; color: var(--muted); font-size: .94rem; }

/* Experience & Credentials */
.section--sage-band { background: var(--sage-100); position: relative; overflow: hidden; }
.section--sage-band .leaf-side { position: absolute; top: 12%; width: 130px; color: var(--gold-400); opacity: .38; }
.section--sage-band .leaf-side.left { left: 0; }
.section--sage-band .leaf-side.right { right: 0; transform: scaleX(-1); }
.cred-panel {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
  background: var(--ivory); border: 1.5px solid var(--gold-400);
  border-radius: var(--radius); padding: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: 120px 1fr; gap: 30px; align-items: center;
  box-shadow: var(--shadow-card);
}
.cred-panel__mark { width: 112px; height: 112px; border-radius: 50%; border: 1.5px solid var(--gold-400); color: var(--gold-600); display: grid; place-items: center; }
.cred-panel__mark svg { width: 54px; height: 54px; }
.cred-panel h3 { margin-bottom: 12px; }
.cred-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.cred-list li { position: relative; padding-left: 18px; color: var(--body); font-size: 1rem; }
.cred-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }
.cred-availability { position: relative; z-index: 2; margin-top: 36px; }
.cred-verify { text-align: center; color: var(--muted); font-size: .84rem; margin-top: 16px; }

/* =============================================================
   Fees & Insurance page
   ============================================================= */
.about-hero__art { display: grid; place-items: center; width: 100%; }
.about-hero__art svg { width: min(440px, 100%); height: auto; }

.fees-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 28px; align-items: stretch; }
.fee-card {
  background: var(--ivory); border: 1.5px solid var(--gold-400);
  border-radius: var(--radius); padding: clamp(30px, 4vw, 46px);
  text-align: center; display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--shadow-card);
}
.fee-card h3 { font-size: 1.6rem; margin-bottom: 12px; }
.price { font-family: var(--font-serif); font-size: 3.6rem; color: var(--gold-600); line-height: 1; }
.fee-label { color: var(--body); margin: 6px 0 0; }
.fee-card .divider { margin-block: 18px 20px; }
.fee-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fee-list li { display: flex; align-items: center; gap: 12px; color: var(--body); }
.fee-list svg { width: 22px; height: 22px; color: var(--gold-500); flex: none; }
.fee-card .btn { margin-top: auto; }

.steps-card { background: var(--sage-200); border-radius: var(--radius); padding: clamp(30px, 4vw, 46px); }
.steps-card h3 { text-align: center; font-size: 1.6rem; }
.steps-card .divider { margin-bottom: 24px; }
.mini-steps { display: flex; flex-direction: column; gap: 20px; }
.mini-step { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.mini-step__num { width: 38px; height: 38px; border-radius: 50%; background: var(--forest-800); color: var(--ivory); display: grid; place-items: center; font-weight: 700; font-size: .98rem; }
.mini-step h4 { font-family: var(--font-serif); font-size: 1.22rem; color: var(--ink); margin: 4px 0 4px; }
.mini-step p { margin: 0; color: var(--forest-800); font-size: .96rem; }
.steps-note { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; color: var(--forest-800); font-size: .9rem; }
.steps-note svg { width: 22px; height: 22px; color: var(--forest-700); flex: none; }

.plan-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.plan-card { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 14px; text-align: center; display: flex; align-items: center; justify-content: center; min-height: 64px; color: var(--ink); font-size: .98rem; box-shadow: var(--shadow-sm); }
.plan-note { display: flex; gap: 10px; justify-content: center; align-items: flex-start; text-align: center; color: var(--muted); font-size: .88rem; margin-top: 20px; max-width: 60ch; margin-inline: auto; }
.plan-note svg { width: 20px; height: 20px; color: var(--forest-700); flex: none; }

.pay-band { background: var(--forest-900); color: var(--cream-100); }
.pay-band h2 { color: var(--ivory); }
.pay-row { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); }
.pay-item { text-align: center; padding: 10px; border-right: 1px solid rgba(202,166,93,.25); display: flex; flex-direction: column; align-items: center; gap: 14px; }
.pay-item:last-child { border-right: none; }
.pay-item__icon { width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid var(--gold-400); color: var(--gold-400); display: grid; place-items: center; }
.pay-item__icon svg { width: 30px; height: 30px; }
.pay-item span { font-size: .92rem; color: rgba(247,242,233,.9); }

.selfpay { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--sage-200) 0%, var(--sage-100) 100%); }
.selfpay .leaf-side { position: absolute; bottom: -10px; width: 190px; color: var(--forest-700); opacity: .45; }
.selfpay .leaf-side.left { left: 0; }
.selfpay .leaf-side.right { right: 0; transform: scaleX(-1); }
.selfpay__inner { position: relative; z-index: 2; text-align: center; max-width: 640px; margin-inline: auto; }
.selfpay__inner .btn-row { justify-content: center; }

.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.faq-item > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 18px 22px; font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-leaf { width: 20px; height: 20px; color: var(--gold-500); flex: none; }
.faq-plus { margin-left: auto; width: 22px; height: 22px; color: var(--gold-600); flex: none; transition: transform .2s ease; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-body { padding: 0 22px 20px 56px; color: var(--body); font-size: .98rem; }
.faq-body p { margin: 0; }
.assure { margin-top: 28px; }

/* =============================================================
   Contact page
   ============================================================= */
.quick-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); background: var(--ivory); border-bottom: 1px solid var(--border); }
.quick-strip__item { text-align: center; padding: 28px 16px; border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.quick-strip__item:last-child { border-right: none; }
.quick-strip__icon { width: 58px; height: 58px; border-radius: 50%; background: var(--sage-100); color: var(--forest-700); display: grid; place-items: center; }
.quick-strip__icon svg { width: 26px; height: 26px; }
.quick-strip b { font-family: var(--font-serif); font-size: 1.18rem; color: var(--ink); font-weight: 500; }
.quick-strip a { color: var(--ink); }
.quick-strip span { color: var(--body); font-size: .95rem; }

.contact-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr); gap: 28px; align-items: start; }
.form-card { background: var(--ivory); border: 1px solid var(--gold-400); border-radius: var(--radius); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-card); }
.field { margin-bottom: 18px; }
.field > label, .field-label { display: block; font-size: .85rem; font-weight: 600; color: var(--forest-800); margin-bottom: 7px; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field textarea, .field select {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--ink);
  background: var(--cream-100); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--gold-500); outline-offset: 1px; border-color: var(--gold-400); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; display: inline-flex; }
.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chip span { display: inline-block; padding: 9px 16px; border: 1px solid var(--border); border-radius: 999px; background: var(--cream-100); font-size: .92rem; color: var(--body); transition: background-color .15s ease, color .15s ease, border-color .15s ease; }
.chip input:checked + span { background: var(--forest-900); color: var(--ivory); border-color: var(--forest-900); }
.chip input:focus-visible + span { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.form-notice { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .86rem; margin: 4px 0 16px; }
.form-notice svg { width: 18px; height: 18px; color: var(--forest-700); flex: none; margin-top: 2px; }
.form-card .btn { width: 100%; }
.form-fineprint { text-align: center; color: var(--muted); font-size: .82rem; margin: 12px 0 0; }
.form-success { display: none; background: var(--sage-100); border: 1px solid var(--sage-300); border-radius: var(--radius); padding: 32px 28px; text-align: center; }
.form-success svg { width: 46px; height: 46px; color: var(--forest-700); margin-bottom: 10px; }

.next-card { background: var(--sage-200); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); margin-bottom: 24px; }
.next-card h3 { text-align: center; }
.next-card .divider { margin-bottom: 22px; }
.call-card { border: 1.5px solid var(--gold-400); border-radius: var(--radius); background: var(--ivory); padding: clamp(24px, 3vw, 34px); text-align: center; box-shadow: var(--shadow-card); }
.call-card__icon { width: 66px; height: 66px; border-radius: 50%; border: 1.5px solid var(--gold-400); color: var(--gold-500); display: grid; place-items: center; margin: 0 auto 14px; }
.call-card__icon svg { width: 30px; height: 30px; }
.call-card .phone { font-family: var(--font-serif); font-size: 2rem; color: var(--ink); margin: 4px 0 16px; display: inline-block; }

.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loc-card { display: grid; grid-template-columns: 92px 1fr; gap: 20px; align-items: center; background: var(--ivory); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.loc-card__pin { color: var(--forest-700); }
.loc-card__pin svg { width: 88px; height: 88px; }
.loc-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.loc-card p { margin: 0 0 14px; color: var(--body); font-size: .96rem; }

.care-band { background: var(--forest-900); color: var(--cream-100); position: relative; overflow: hidden; }
.care-band h2 { color: var(--ivory); }
.care-band .leaf-side { position: absolute; top: 50%; transform: translateY(-50%); width: 150px; color: var(--gold-400); opacity: .4; }
.care-band .leaf-side.left { left: 0; }
.care-band .leaf-side.right { right: 0; transform: translateY(-50%) scaleX(-1); }
.care-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); position: relative; z-index: 2; }
.care-item { text-align: center; padding: 12px 22px; border-right: 1px solid rgba(202,166,93,.25); }
.care-item:last-child { border-right: none; }
.care-item__icon { width: 60px; height: 60px; margin: 0 auto 14px; color: var(--gold-400); display: grid; place-items: center; }
.care-item__icon svg { width: 42px; height: 42px; }
.care-item h3 { color: var(--ivory); font-size: 1.3rem; }
.care-item p { color: rgba(247,242,233,.76); font-size: .94rem; margin: 0; }

.emergency { margin-top: 8px; }
.emergency .cred-panel__mark { border-color: var(--gold-500); color: var(--gold-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-950); color: var(--sage-200); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 40px; padding-block: 64px; }
.footer-brand .brand__name { font-size: 1.4rem; }
.site-footer p { color: rgba(214,223,209,.75); font-size: .92rem; }
.footer-col h4 { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; color: var(--gold-400); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: rgba(214,223,209,.85); font-size: .92rem; }
.footer-col a:hover { color: var(--gold-200); }
.footer-contact div { margin-bottom: 10px; font-size: .92rem; color: rgba(214,223,209,.85); }
.footer-contact strong { color: var(--ivory); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(202,166,93,.18); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(214,223,209,.6); }
.footer-bottom .verify-tag { font-size: .78rem; color: var(--gold-400); }

/* ---------- To-verify inline tag ---------- */
.verify {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(189,147,70,.12);
  border: 1px dashed var(--gold-400);
  padding: 1px 7px; border-radius: 5px;
  vertical-align: middle; margin-left: 6px;
}

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1180px) {
  :root { --gutter: 48px; }
  .icon-grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .icon-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .icon-row .cell:nth-child(3) { border-right: none; }
  .icon-row .cell:nth-child(n+4) { border-top: 1px solid var(--border); }
}

@media (max-width: 1024px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .service-grid, .approach__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 40px; }
}

@media (max-width: 850px) {
  :root { --gutter: 32px; }
  .split-hero__grid { grid-template-columns: minmax(0, 1fr); }
  .split-hero__media { min-height: 300px; order: 2; }
  .split-hero__copy { order: 1; }
  .feature__grid, .feature__grid.reverse { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .feature__grid .feature__art { order: 2; }
  .feature__grid .feature__copy { order: 1; }
  .bio-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; max-width: 560px; margin-inline: auto; }
  .bio-photo { max-width: 340px; margin-inline: auto; }
  .pathways { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .availability { grid-template-columns: minmax(0, 1fr); }
  .availability__item { border-right: none; border-bottom: 1px solid var(--border); }
  .availability__item:last-child { border-bottom: none; }
  .distinction { grid-template-columns: minmax(0, 1fr); text-align: center; gap: 20px; }
  .distinction__mark { margin-inline: auto; }
  .distinction__actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .benefit-row { justify-content: center; gap: 22px; }
  .intro-band .leaf-side { display: none; }
  .hmr-bg { min-height: 0; }
  .hmr-bg--right, .hmr-bg--left { background-position: center; }
  .hmr-bg--right::before, .hmr-bg--left::before { background: rgba(247,242,233,.8); }
  .hmr-bg__panel { max-width: none; margin: 0; }
  .about-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .about-hero__media { order: 2; }
  .about-intro__grid { grid-template-columns: 1fr; gap: 24px; }
  .about-intro__art { order: -1; }
  .about-intro__art svg { width: 200px; }
  .approach__grid--3 { grid-template-columns: 1fr; max-width: 460px; }
  .expect__grid { grid-template-columns: 1fr; }
  .expect__art { min-height: 300px; order: 2; }
  .expect__body { order: 1; }
  .about-hero .leaf-side { display: none; }
  .fees-grid { grid-template-columns: 1fr; }
  .pay-row { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px 0; }
  .pay-item:nth-child(3) { border-right: none; }
  .plan-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .selfpay .leaf-side { width: 130px; opacity: .3; }
  .contact-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .care-row { grid-template-columns: 1fr; gap: 28px; }
  .care-item { border-right: none; border-bottom: 1px solid rgba(202,166,93,.22); padding-bottom: 24px; }
  .care-item:last-child { border-bottom: none; padding-bottom: 12px; }
  .care-band .leaf-side { display: none; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }
  .hero { min-height: 540px; }
  .hero::before { background: linear-gradient(100deg, rgba(11,50,42,.94) 0%, rgba(11,50,42,.82) 55%, rgba(11,50,42,.55) 100%); }
  .icon-grid--6, .icon-grid--4, .service-grid, .approach__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .icon-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .btn { white-space: normal; text-align: center; padding-inline: 20px; }
  .icon-row .cell { border-right: 1px solid var(--border); }
  .icon-row .cell:nth-child(2n) { border-right: none; }
  .icon-row .cell:nth-child(n+3) { border-top: 1px solid var(--border); }
  .btn-row .btn { flex: 1 1 100%; }
  .approach .leaf-side, .feature .leaf-side { display: none; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .cred-panel { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .cred-panel__mark { margin-inline: auto; }
  .cred-list { text-align: left; max-width: 260px; margin-inline: auto; }
  .section--sage-band .leaf-side { display: none; }
  .plan-grid { grid-template-columns: 1fr; }
  .pay-row { grid-template-columns: 1fr 1fr; }
  .pay-item { border-right: none; }
  .faq-body { padding-left: 22px; }
  .quick-strip { grid-template-columns: 1fr; }
  .quick-strip__item { border-right: none; border-bottom: 1px solid var(--border); }
  .quick-strip__item:last-child { border-bottom: none; }
  .field-row { grid-template-columns: 1fr; }
  .loc-card { grid-template-columns: 1fr; text-align: center; }
  .loc-card__pin { margin-inline: auto; }
}

@media (max-width: 380px) {
  .icon-grid--6, .icon-grid--4, .service-grid, .approach__grid { grid-template-columns: minmax(0, 1fr); }
  .brand__name { font-size: 1.35rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .btn:hover, .icon-card:hover, .service-card:hover { transform: none; }
}
