/* =====================================================================
   CALM MIND — Therapy & Counseling Multi-Page Template
   Plain HTML5 + CSS3. No frameworks. Offline-ready (no external images).
   ---------------------------------------------------------------------
   REBRAND TIP: Edit the CSS variables in :root below. Swap --accent for
   your primary color, adjust --accent2 / gradients to match, and update
   --font-head / --font-body plus the Google Fonts <link> in each HTML
   file. Everything else cascades.
   ===================================================================== */

:root {
  /* --- Brand palette (edit these to rebrand) --- */
  --bg:        #faf8fc;   /* page background — soft lilac white      */
  --ink:       #2e2a3a;   /* deep plum for headings / text           */
  --accent:    #8b7cc4;   /* soft lavender (primary)                 */
  --accent-dk: #6f60ab;   /* deeper lavender for hovers              */
  --accent-deep:#473d6b;  /* deepest plum for dark sections          */
  --accent2:   #7fc4c0;   /* calm teal (secondary accent)            */
  --accent2-dk:#5fa9a4;   /* deeper teal                             */
  --muted:     #7a7488;   /* muted body text                         */
  --surface:   #ffffff;   /* card / panel surface                    */
  --line:      #ece7f2;   /* borders / dividers                      */
  --soft:      #f3eefb;   /* soft tint background                    */

  /* --- Fonts --- */
  --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* --- Shape & motion --- */
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 12px 36px rgba(70, 56, 110, .08);
  --shadow-lg: 0 28px 64px rgba(70, 56, 110, .15);
  --ease:      .4s cubic-bezier(.4, 0, .2, 1);

  /* --- Layout --- */
  --maxw: 1160px;
  --gutter: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--accent-dk); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-deep); }

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

ul { margin: 0; padding: 0; list-style: none; }

/* ---------------------------------------------------------------------
   LAYOUT HELPERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 100px 0; }
.section--soft { background: var(--soft); }
.section--tight { padding: 70px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dk);
  background: rgba(139, 124, 196, .1);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.lead { font-size: 1.14rem; color: var(--ink); }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(139, 124, 196, .35);
}
.btn-primary:hover { color: #fff; box-shadow: 0 14px 32px rgba(139, 124, 196, .45); }

.btn-ghost {
  background: var(--surface);
  color: var(--accent-dk);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dk); }

.btn-light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-light:hover { background: #fff; color: var(--accent-dk); }

/* ---------------------------------------------------------------------
   HEADER / NAV  (shared, identical IDs on every page)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 252, .85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(139, 124, 196, .35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .96rem;
  color: var(--muted);
  padding: 9px 15px;
  border-radius: 12px;
  transition: background var(--ease), color var(--ease);
}
.nav-links a:hover { background: var(--soft); color: var(--accent-dk); }
.nav-links a.active { color: var(--accent-dk); font-weight: 600; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: var(--soft);
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   HERO (home)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 560px at 88% -10%, rgba(127,196,192,.22), transparent 60%),
    radial-gradient(760px 520px at 0% 110%, rgba(139,124,196,.18), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  padding: 96px 0 104px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--accent-dk); }
.hero .lead { max-width: 540px; margin-bottom: 32px; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-meta div strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-meta div span { font-size: .9rem; color: var(--muted); }

/* Hero calm visual — pure CSS/SVG */
.hero-visual {
  position: relative;
  background: linear-gradient(160deg, var(--accent-deep), var(--accent));
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: #fff;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,196,192,.5), transparent 70%);
  top: -60px; right: -50px;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  bottom: -50px; left: -40px;
}
.hv-inner { position: relative; z-index: 1; text-align: center; }
.hv-orb {
  width: 130px; height: 130px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.95), rgba(127,196,192,.5) 55%, transparent 75%);
  box-shadow: 0 0 0 14px rgba(255,255,255,.08), 0 0 0 30px rgba(255,255,255,.05);
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.12); opacity: 1; }
}
.hv-inner h4 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.hv-inner p { color: rgba(255,255,255,.82); margin: 0; font-size: .98rem; }
.hv-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.hv-chips span {
  font-size: .82rem;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 14px;
  border-radius: 999px;
}

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

/* ---------------------------------------------------------------------
   TRUSTED / REASSURANCE STRIP
   --------------------------------------------------------------------- */
.trusted { padding: 44px 0; border-bottom: 1px solid var(--line); }
.trusted p { text-align: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 40px;
}
.logo-strip span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: color var(--ease);
}
.logo-strip span:hover { color: var(--accent-dk); }

/* ---------------------------------------------------------------------
   CARDS / GRIDS
   --------------------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(139,124,196,.3); }

.card .icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139,124,196,.14), rgba(127,196,192,.2));
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
}
.card-link span { transition: transform var(--ease); }
.card-link:hover span { transform: translateX(4px); }

/* Feature list */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .tick {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 600;
  font-family: var(--font-head);
  box-shadow: 0 8px 16px rgba(139,124,196,.3);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 4px; }
.feature p { margin-bottom: 0; font-size: .98rem; color: var(--muted); }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse .split-media { order: 2; }
.split-media {
  border-radius: 28px;
  min-height: 400px;
  background: linear-gradient(150deg, var(--accent-deep), var(--accent));
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  padding: 36px;
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px 320px at 78% 22%, rgba(127,196,192,.4), transparent 60%);
}
.split-media .sm-inner { position: relative; z-index: 1; text-align: center; }
.split-media .sm-emoji { font-size: 3rem; margin-bottom: 10px; }
.split-media strong { font-family: var(--font-head); font-size: 1.45rem; display: block; }
.split-media p { color: rgba(255,255,255,.82); margin: 8px 0 0; }

/* ---------------------------------------------------------------------
   STATS / VALUES BAND
   --------------------------------------------------------------------- */
.stats-band {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
}
.stats-band .section-head h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat strong {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  line-height: 1;
  color: #fff;
}
.stat span { color: rgba(255,255,255,.82); font-size: .95rem; }

/* ---------------------------------------------------------------------
   HOW IT WORKS / STEPS
   --------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  width: 48px; height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { margin-bottom: 0; font-size: .96rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.quote-card .stars { color: #e8b65a; margin-bottom: 16px; letter-spacing: 2px; }
.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.14rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.55;
  font-style: italic;
}
.quote-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.quote-author b { display: block; font-family: var(--font-head); color: var(--ink); font-weight: 600; }
.quote-author span { font-size: .88rem; color: var(--muted); }

/* ---------------------------------------------------------------------
   CTA BAND
   --------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(620px 420px at 88% 12%, rgba(127,196,192,.35), transparent 60%),
    linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
  border-radius: 32px;
  padding: 66px 52px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 580px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   PAGE BANNER (inner pages)
   --------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(720px 420px at 85% -20%, rgba(127,196,192,.2), transparent 60%),
    radial-gradient(560px 360px at 5% 120%, rgba(139,124,196,.16), transparent 60%),
    linear-gradient(180deg, var(--soft), var(--bg));
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 640px; color: var(--muted); margin-bottom: 0; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--accent-dk); }
.breadcrumb span { margin: 0 6px; }

/* ---------------------------------------------------------------------
   SERVICES PAGE — detailed blocks
   --------------------------------------------------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 26px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-block .s-icon {
  width: 68px; height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(139,124,196,.14), rgba(127,196,192,.22));
  display: grid; place-items: center;
  font-size: 2rem;
}
.service-block h3 { margin-bottom: 8px; }
.service-block p { color: var(--muted); }
.deliverables {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}
.deliverables li {
  font-size: .85rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent-dk);
  background: var(--soft);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------------------------------------------------------------------
   FAQ / accordion-style (CSS details)
   --------------------------------------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--ease);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); margin: 0 0 20px; }

/* ---------------------------------------------------------------------
   ABOUT — values + timeline
   --------------------------------------------------------------------- */
.value-card .icon { background: linear-gradient(135deg, rgba(139,124,196,.16), rgba(127,196,192,.22)); }

.safe-space {
  background: linear-gradient(135deg, rgba(127,196,192,.14), rgba(139,124,196,.12));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.safe-space .ss-emoji { font-size: 2.6rem; margin-bottom: 12px; }
.safe-space h2 { margin-bottom: 12px; }
.safe-space p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* Timeline */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 22px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
}
.tl-item {
  position: relative;
  padding: 0 0 36px 64px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item .tl-dot {
  position: absolute;
  left: 11px; top: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--accent);
  display: grid; place-items: center;
}
.tl-item .tl-dot::after {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent2);
}
.tl-item .tl-year {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent-dk);
  font-size: 1.05rem;
}
.tl-item h3 { font-size: 1.15rem; margin: 2px 0 6px; }
.tl-item p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------------------------------------------------------------------
   TEAM — therapist profiles
   --------------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card .team-photo {
  width: 116px; height: 116px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
  box-shadow: var(--shadow);
}
.team-photo.g1 { background: linear-gradient(135deg, #8b7cc4, #b3a4dd); }
.team-photo.g2 { background: linear-gradient(135deg, #7fc4c0, #a7dcd8); }
.team-photo.g3 { background: linear-gradient(135deg, #a48fd0, #7fc4c0); }
.team-photo.g4 { background: linear-gradient(135deg, #7fa8c4, #8b7cc4); }
.team-photo.g5 { background: linear-gradient(135deg, #c4a4c0, #8b7cc4); }
.team-photo.g6 { background: linear-gradient(135deg, #7fc4a8, #7fc4c0); }
.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-card .role { color: var(--accent-dk); font-family: var(--font-body); font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
.team-card .specialty {
  font-size: .82rem; font-weight: 500;
  color: var(--accent2-dk);
  background: rgba(127,196,192,.14);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.team-card p { font-size: .94rem; color: var(--muted); margin-bottom: 0; }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.confidential-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(127,196,192,.12);
  border: 1px solid rgba(127,196,192,.3);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 26px;
  font-size: .9rem;
  color: var(--muted);
}
.confidential-note span { font-size: 1.2rem; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(139,124,196,.14);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field .error-msg { color: #c0506b; font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0506b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(127,196,192,.16);
  border: 1px solid var(--accent2);
  color: var(--accent2-dk);
  font-weight: 500;
}
.form-status.show { display: block; }

.info-card {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .info-ic {
  width: 46px; height: 46px; flex: 0 0 auto;
  border-radius: 14px; background: #fff;
  display: grid; place-items: center; font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.info-row b { font-family: var(--font-head); color: var(--ink); display: block; font-weight: 600; }
.info-row span { font-size: .94rem; color: var(--muted); }

/* Crisis resources note */
.crisis-note {
  background: linear-gradient(135deg, rgba(192,80,107,.08), rgba(139,124,196,.08));
  border: 1px solid rgba(192,80,107,.25);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.crisis-note h3 { font-size: 1.1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.crisis-note p { color: var(--muted); font-size: .94rem; margin-bottom: 8px; }
.crisis-note p:last-child { margin-bottom: 0; }
.crisis-note a { font-weight: 600; }

/* Map placeholder */
.map-placeholder {
  border-radius: var(--radius);
  min-height: 240px;
  background:
    linear-gradient(rgba(139,124,196,.05), rgba(139,124,196,.05)),
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 42px),
    var(--soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  color: var(--muted);
}
.map-placeholder .pin { font-size: 2.4rem; }
.map-placeholder b { font-family: var(--font-head); color: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   FOOTER (shared)
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--accent-deep);
  color: rgba(255,255,255,.78);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 46px;
}
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand:hover { color: #fff; }
.footer-about p { font-size: .95rem; color: rgba(255,255,255,.72); max-width: 320px; }
.footer-col h4 {
  color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a { display: block; color: rgba(255,255,255,.74); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  font-size: 1rem;
  color: #fff;
}
.social a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  color: rgba(255,255,255,.62);
}
.footer-bottom a { color: rgba(255,255,255,.78); }

/* ---------------------------------------------------------------------
   SCROLL-REVEAL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.no-io .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 16px var(--gutter) 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 15px; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .steps, .steps--4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 48px 28px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .section { padding: 60px 0; }
}
