:root {
  --soft-black: #1F1F1F;
  --grey: #5F6368;
  --green-grey: #95A297;
  --dark-green: #2E4A3B;
  --light-green: #D2DDCD;
  --white: #FFFFFF;

  --font-display: 'Poppins', 'Work Sans', -apple-system, Segoe UI, sans-serif;
  --font-body: 'Work Sans', -apple-system, Segoe UI, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--soft-black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* NAV — sticky, with backdrop blur so content scrolling under it still feels grounded */
.topbar { background: var(--dark-green); color: var(--light-green); text-align: center; font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 9px 16px; }
.topbar span { color: var(--green-grey); margin: 0 4px; }
@media (max-width: 560px) { .topbar { font-size: 9.5px; letter-spacing: .03em; padding: 8px 10px; line-height: 1.6; } }

.nav-wrap { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(46,74,59,.08); box-shadow: 0 8px 24px -18px rgba(31,31,31,.25); }
.nav { max-width: 1180px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo { height: 72px; width: auto; display: block; flex-shrink: 0; }
@media (max-width: 560px) { .nav__logo { height: 44px; } }
@media (max-width: 400px) { .nav__logo { height: 38px; } }
.nav__right { display: flex; align-items: center; gap: 36px; }
.nav__links { display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--soft-black); }
.nav__links li { position: relative; }
.nav__links a { text-decoration: none; padding-bottom: 4px; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--dark-green); transition: right .25s ease; }
.nav__links a:hover::after, .nav__links li.is-active a::after { right: 0; }
.nav__links a:hover { color: var(--dark-green); }
.nav__links li.is-active a { color: var(--dark-green); }
.nav__cta { padding: 11px 20px; font-size: 13px; }
@media (max-width: 900px) { a.nav__cta { display: none; } }
.nav__toggle { display: none; background: none; border: none; padding: 6px; cursor: pointer; color: var(--soft-black); }
.nav__toggle svg { width: 24px; height: 24px; display: block; }
.nav__toggle .icon-close { display: none; }
.nav-wrap.is-open .nav__toggle .icon-open { display: none; }
.nav-wrap.is-open .nav__toggle .icon-close { display: block; }

@media (max-width: 760px) {
  .nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-green);
    box-shadow: 0 16px 32px -20px rgba(31,31,31,.3);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-wrap.is-open .nav__links { max-height: 320px; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 16px 24px; }
  .nav__links a::after { display: none; }
  .nav__links li.is-active a { background: var(--light-green); }
  .nav__toggle { display: block; }
}
.nav__social { display: flex; align-items: center; gap: 16px; padding-left: 20px; border-left: 1px solid var(--light-green); }
@media (max-width: 420px) { .nav__social { padding-left: 10px; gap: 12px; } .nav__social svg { width: 17px; height: 17px; } }
.nav__social a { display: flex; color: var(--grey); transition: color .18s ease, transform .18s ease; }
.nav__social a:hover { color: var(--dark-green); transform: translateY(-1px); }
.nav__social svg { width: 19px; height: 19px; }

/* breadcrumb */
.breadcrumb { max-width: 1080px; margin: 0 auto; padding: 16px 24px 0; font-size: 13px; }
.breadcrumb a { color: var(--grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--dark-green); }
.breadcrumb span { color: var(--green-grey); margin: 0 8px; }
.breadcrumb b { color: var(--soft-black); font-weight: 500; }

/* HERO — full-bleed photo with dark scrim, headline/copy directly on the image */
.hero-photo {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 64px 24px 56px;
}
.hero-photo__inner { max-width: 820px; position: relative; z-index: 1; }
.hero-photo h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 20px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-photo__list { font-size: 19px; color: var(--light-green); margin: 0 0 16px; }
.hero-photo__punch { font-size: 20px; font-weight: 600; margin: 0 0 20px; text-wrap: balance; }
.hero-photo__ask { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--light-green); margin: 0 0 22px; }
.hero-photo__subtext { font-size: 14px; color: rgba(255,255,255,.75); margin: 14px 0 0; }

/* HERO — split layout variant: copy left, CTA card right */
.hero-photo--split { text-align: left; padding: 72px 24px; }
.hero-photo--split .hero-photo__inner {
  max-width: 1180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.hero-photo__left { max-width: 640px; }
.hero-photo--split h1 {
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--light-green);
  margin: 0 0 14px;
  text-shadow: none;
}
.hero-photo__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 48px);
  line-height: 1.16;
  letter-spacing: -.01em;
  margin: 0 0 22px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-photo__tagline em { font-style: italic; color: var(--light-green); }
.hero-photo--split .hero-photo__punch { font-weight: 600; font-size: 19px; line-height: 1.5; margin: 0 0 20px; color: #fff; }
.hero-photo__divider { display: block; width: 52px; height: 2px; background: rgba(255,255,255,.45); margin: 0 0 20px; }
.hero-photo--split .hero-photo__ask { margin: 0; font-size: 21px; line-height: 1.5; }
.hero-photo__right { flex-shrink: 0; max-width: 300px; }
.hero-photo__cta-card {
  display: block;
  border: 1.5px solid rgba(210,221,205,.55);
  border-radius: 10px;
  padding: 22px 26px;
  color: var(--light-green);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.hero-photo__cta-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.9); transform: translateY(-2px); }
.hero-photo__right .hero-photo__subtext { margin: 18px 0 0; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.8); }
@media (max-width: 860px) {
  .hero-photo--split .hero-photo__inner { flex-direction: column; text-align: center; align-items: center; gap: 32px; }
  .hero-photo__left { max-width: 620px; }
  .hero-photo__divider { margin-left: auto; margin-right: auto; }
  .hero-photo__right { max-width: 340px; text-align: center; }
}
.section__close { text-align: center; margin: 24px 0 0; font-size: 16px; color: var(--soft-black); }
.section__close a { color: var(--dark-green); font-weight: 600; text-decoration: none; }
.section__close a:hover { text-decoration: underline; }

.tagline-strip { font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 2.2vw, 24px); text-align: center; color: var(--soft-black); margin: 0; padding: 22px 24px; }
.tagline-strip em { font-style: italic; color: var(--dark-green); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--dark-green); margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--dark-green); }
h1 em, h2 em { font-style: italic; color: var(--dark-green); }
.hero-photo h1 em { color: var(--light-green); }
.cta { font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 12px; background: var(--dark-green); color: var(--white); padding: 17px 32px; border-radius: 999px; text-decoration: none; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; box-shadow: 0 10px 24px -12px rgba(46,74,59,.5); border: none; cursor: pointer; }
.cta:hover { background: var(--soft-black); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(31,31,31,.5); }
.cta--ghost { background: transparent; color: var(--dark-green); border: 1.5px solid var(--dark-green); box-shadow: none; }
.cta--ghost:hover { background: var(--dark-green); color: #fff; }
.cta--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.8); box-shadow: none; }
.cta--outline:hover { background: #fff; color: var(--dark-green); transform: translateY(-2px); }

/* PAGE HEADER (interior pages) */
.page-header { margin-top: 24px; }
.page-header__inner { max-width: 1080px; margin: 0 auto; padding: 26px 24px 22px; }
.page-header__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 760px) { .page-header__grid { grid-template-columns: 1fr; gap: 16px; } }
.page-header h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 4.4vw, 48px); line-height: 1.12; letter-spacing: -.01em; margin: 0; text-wrap: balance; }
.page-header p { font-size: 18px; color: var(--grey); margin: 0; line-height: 1.6; }

/* SECTION shell */
.section { padding: 36px 24px; }
.section--tint { background: var(--light-green); }
.section__inner { max-width: 1080px; margin: 0 auto; }
.section__head { margin-bottom: 18px; }
.section__tag { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--dark-green); margin-bottom: 10px; }
.section__tag::before { content: ""; width: 22px; height: 1px; background: var(--dark-green); }
.section__head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.2vw, 36px); line-height: 1.15; letter-spacing: -.01em; margin: 0 0 14px; text-wrap: balance; }
.section__head p { color: var(--grey); font-size: 16px; max-width: none; margin: 0; }
.section__head p.section__subhead { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--dark-green); max-width: 62ch; margin: 0 0 8px; }
.section__head p.section__lead { font-size: 16px; max-width: none; margin: 0; }

/* symptom / feature cards */
.card-grid { display: flex; flex-direction: column; gap: 10px; max-width: 720px; margin: 0; }
.card { background: var(--white); border: 1px solid transparent; border-radius: 12px; padding: 16px 20px; display: flex; gap: 14px; align-items: center; box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 12px 24px -16px rgba(31,31,31,.18); transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.card:hover { background: var(--light-green); border-color: var(--dark-green); transform: translateY(-2px); box-shadow: 0 1px 2px rgba(31,31,31,.06), 0 16px 28px -16px rgba(31,31,31,.24); }
.card__icon { flex: none; width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.card__icon svg { width: 19px; height: 19px; }
.card__text { font-size: 16px; line-height: 1.55; padding-top: 4px; }

/* numbered process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border: 1px solid var(--light-green); border-radius: 16px; padding: 22px 20px; box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 14px 28px -18px rgba(31,31,31,.2); transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.step:hover { background: var(--light-green); border-color: var(--dark-green); transform: translateY(-3px); box-shadow: 0 1px 2px rgba(31,31,31,.06), 0 18px 34px -16px rgba(31,31,31,.26); }
.step:hover .step__text { color: var(--soft-black); }
.step__num { display: block; font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--dark-green); margin-bottom: 14px; }
.step__title { font-weight: 600; font-size: 17px; margin: 0 0 10px; }
.step__text { color: var(--grey); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }
.step__link { font-size: 13px; font-weight: 600; letter-spacing: .03em; color: var(--dark-green); text-decoration: none; }
.step__link:hover { text-decoration: underline; }

/* services grid */
.decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 700px) { .decision-grid { grid-template-columns: 1fr; } }
.decision-card { background: var(--white); border: 1px solid var(--light-green); border-radius: 14px; padding: 20px 22px; box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 14px 28px -18px rgba(31,31,31,.18); }
.decision-card--highlight { background: var(--dark-green); border-color: var(--dark-green); }
.decision-card__q { font-weight: 600; font-size: 15.5px; color: var(--dark-green); margin: 0 0 8px; }
.decision-card--highlight .decision-card__q { color: #fff; }
.decision-card__a { font-size: 14.5px; color: var(--soft-black); line-height: 1.55; margin: 0; }
.decision-card--highlight .decision-card__a { color: var(--light-green); }
.phase-section { position: relative; }
.phase-banner { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 28px; }
.phase-banner__badge { position: relative; flex: none; width: 52px; height: 52px; border-radius: 50%; background: var(--dark-green); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 18px; box-shadow: 0 8px 20px -8px rgba(46,74,59,.5); }
.phase-banner__rail { position: absolute; top: 100%; left: 50%; width: 2px; height: 90px; background: linear-gradient(var(--light-green), rgba(210,221,205,0)); transform: translateX(-50%); }
.phase-banner__text { flex: 1; min-width: 0; padding-top: 4px; }
.phase-banner__label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--soft-black); margin-bottom: 6px; }
.phase-banner__text p { font-size: 15.5px; color: var(--grey); margin: 0; line-height: 1.6; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--white); border: 1px solid var(--light-green); border-radius: 14px; padding: 22px 20px; text-decoration: none; display: block; box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 16px 32px -20px rgba(31,31,31,.24); transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.svc-card:hover { background: var(--light-green); border-color: var(--dark-green); transform: translateY(-3px); box-shadow: 0 1px 2px rgba(31,31,31,.06), 0 20px 38px -18px rgba(31,31,31,.3); }
.svc-card:hover .svc-card__desc { color: var(--soft-black); }
.svc-card:hover .svc-card__icon { transform: scale(1.08) rotate(-4deg); }
.svc-card__icon {
  position: relative;
  width: 48px; height: 48px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.35), 0 10px 20px -10px var(--icon-glow, rgba(31,31,31,.4));
}
.svc-card__icon::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.22), transparent 55%);
  pointer-events: none;
}
.svc-card__icon svg { width: 22px; height: 22px; position: relative; }
.svc-card__icon--raster { background: var(--white); border: 1px solid var(--light-green); box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 6px 14px -8px rgba(31,31,31,.15); overflow: hidden; }
.svc-card__icon--raster::before { display: none; }
.svc-card__icon--raster img { width: 100%; height: 100%; object-fit: cover; position: relative; }
.svc-card__icon--raster svg { width: 24px; height: 24px; position: relative; }
.svc-card__title { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin: 0 0 10px; color: var(--dark-green); }
.svc-card__desc { font-size: 14px; line-height: 1.55; color: var(--grey); margin: 0 0 16px; }
.svc-card__link { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--soft-black); }

/* founder avatar placeholder — a monogram, not a fabricated photo */
.avatar-mono { width: 100%; aspect-ratio: 5/4; border-radius: 18px; background: linear-gradient(135deg, var(--dark-green), var(--soft-black)); display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 26px 52px -24px rgba(31,31,31,.32); }
.avatar-mono span { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 96px; line-height: 1; color: var(--light-green); }
.avatar-mono small { font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(210,221,205,.6); margin-top: 10px; }
.meet-links { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 18px; }
.meet-links a { font-size: 14px; font-weight: 600; color: var(--dark-green); text-decoration: none; }
.meet-links a:hover { text-decoration: underline; }

/* two-column image + text block */
.split { max-width: 1080px; margin: 0 auto; padding: 36px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.split--fill-media { align-items: stretch; }
.split--fill-media .split__media img { height: 100%; min-height: 340px; }
@media (max-width: 860px) { .split--fill-media .split__media img { min-height: 280px; } }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } .split--img-right .split__media { order: 2; } }
.split__media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 18px; box-shadow: 0 26px 52px -24px rgba(31,31,31,.32); }
.split__media img.founder-photo { aspect-ratio: 1/1; width: 100%; margin: 0; display: block; }
.split__content h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 32px); line-height: 1.18; letter-spacing: -.01em; margin: 0 0 18px; text-wrap: balance; }
.split__content p { font-size: 16px; line-height: 1.7; color: var(--soft-black); margin: 0 0 16px; }
.not-for-block { margin-top: 24px; padding: 18px 20px; background: var(--light-green); border-radius: 12px; }
.not-for-block__title { font-weight: 600; font-size: 15px; color: var(--dark-green); margin: 0 0 8px; }
.not-for-block p:last-child { margin-bottom: 0; }
.capacity-block { margin-top: 24px; padding: 18px 20px; background: var(--white); border: 1px solid var(--light-green); border-radius: 12px; }
.capacity-block__title { font-weight: 600; font-size: 15px; color: var(--dark-green); margin: 0 0 8px; }
.capacity-block p:last-child { margin-bottom: 0; }
.boundary-line { font-size: 13px; color: var(--grey); margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--light-green); }

/* prose (long-form service pages) */
.prose { max-width: 1080px; margin: 0 auto; padding: 36px 24px; }
.prose__body { max-width: none; margin: 0; }
.prose__hero-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: 18px; box-shadow: 0 26px 52px -24px rgba(31,31,31,.32); margin-bottom: 32px; }
.prose__icon {
  position: relative;
  width: 62px; height: 62px;
  border-radius: 19px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 20px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.35), 0 12px 24px -12px var(--icon-glow, rgba(31,31,31,.4));
}
.prose__icon::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255,255,255,.22), transparent 55%);
  pointer-events: none;
}
.prose__icon svg { width: 27px; height: 27px; position: relative; }
.prose__icon--raster { background: var(--white); border: 1px solid var(--light-green); box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 8px 18px -10px rgba(31,31,31,.18); overflow: hidden; }
.prose__icon--raster::before { display: none; }
.prose__icon--raster img { width: 100%; height: 100%; object-fit: cover; position: relative; }
.prose__icon--raster svg { width: 28px; height: 28px; position: relative; }
.prose__eyebrow { display: block; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--dark-green); margin-bottom: 10px; }
.prose h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 4.4vw, 44px); line-height: 1.14; letter-spacing: -.01em; margin: 0 0 16px; text-wrap: balance; }
.prose p.lede { font-size: 19px; color: var(--grey); max-width: none; margin: 0 0 32px; line-height: 1.6; }
.prose h2 { font-family: var(--font-display); font-weight: 500; font-size: 24px; margin: 30px 0 12px; color: var(--dark-green); }
.prose p { font-size: 16px; line-height: 1.75; color: var(--soft-black); margin: 0 0 18px; }
.prose-list { margin: 0 0 18px; padding: 0; list-style: none; }
.prose-list li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.6; color: var(--soft-black); margin-bottom: 10px; }
.prose-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--dark-green); }
.tri-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 8px 0 24px; }
@media (max-width: 700px) { .tri-block { grid-template-columns: 1fr; } }
.tri-block__col { background: var(--light-green); border-radius: 12px; padding: 18px 16px; }
.tri-block__col p { font-size: 14.5px; line-height: 1.55; color: var(--soft-black); margin: 0; font-weight: 600; }
.prose em { font-style: italic; color: var(--dark-green); }

/* testimonials */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: var(--white); border-radius: 14px; padding: 24px; box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 16px 32px -20px rgba(31,31,31,.2); }
.testi p { font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--soft-black); margin: 0 0 18px; }
.testi p::before { content: "\201C"; color: var(--dark-green); }
.testi cite { font-style: normal; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--grey); }
.testi-note { text-align: center; font-size: 13px; color: var(--grey); margin: 24px 0 0; }

/* location badges */
/* CHART acronym breakdown */
.acronym-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 1000px; margin: 0 auto; }
.acronym-item { background: var(--white); border: 1px solid var(--light-green); border-radius: 14px; padding: 26px 22px; min-width: 140px; flex: 1 1 140px; max-width: 190px; text-align: center; box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 16px 32px -20px rgba(31,31,31,.2); transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.acronym-item:hover { background: var(--light-green); border-color: var(--dark-green); transform: translateY(-3px); box-shadow: 0 1px 2px rgba(31,31,31,.06), 0 20px 38px -18px rgba(31,31,31,.26); }
.acronym-letter { display: block; font-family: var(--font-display); font-weight: 600; font-style: italic; font-size: 40px; color: var(--dark-green); line-height: 1; margin-bottom: 10px; }
.acronym-word { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--soft-black); margin-bottom: 8px; }
.acronym-desc { font-size: 13px; line-height: 1.5; color: var(--grey); margin: 0; }

.badge-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.badge { background: var(--dark-green); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 10px 20px; border-radius: 999px; transition: transform .2s ease, box-shadow .2s ease; }
.badge:hover { transform: translateY(-2px); box-shadow: 0 8px 16px -8px rgba(46,74,59,.5); }

.map-embed { margin-top: 28px; border-radius: 18px; overflow: hidden; box-shadow: 0 1px 2px rgba(31,31,31,.05), 0 26px 52px -24px rgba(31,31,31,.32); border: 1px solid var(--light-green); }
.map-embed iframe { display: block; width: 100%; height: 360px; border: none; }
@media (max-width: 560px) { .map-embed iframe { height: 280px; } }

/* FAQ */
.faq { max-width: 760px; margin: 0; }
.faq__item { border-bottom: 1px solid var(--light-green); }
.faq__q { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-family: var(--font-body); font-size: 17px; font-weight: 600; color: var(--soft-black); display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 20px; }
.faq__q-arrow { flex: none; transition: transform .25s ease; color: var(--dark-green); }
.faq__item[open] .faq__q-arrow { transform: rotate(45deg); }
.faq__a { padding: 0 0 22px; color: var(--grey); font-size: 15px; line-height: 1.65; }

/* CTA banner */
.cta-banner { background: var(--dark-green); color: #fff; padding: 36px 24px; }
.cta-banner__inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.cta-banner__photo { width: 150px; height: 150px; object-fit: cover; border-radius: 14px; flex-shrink: 0; border: 3px solid rgba(255,255,255,.22); box-shadow: 0 20px 40px -16px rgba(0,0,0,.4); }
.cta-banner__content { flex: 1; min-width: 0; }
.cta-banner h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 34px); line-height: 1.18; letter-spacing: -.01em; margin: 0 0 14px; text-wrap: balance; }
.cta-banner p { color: var(--light-green); max-width: none; margin: 0 0 24px; font-size: 16px; }
.cta-banner .cta { background: #fff; color: var(--dark-green); }
.cta-banner .cta:hover { background: var(--light-green); }
@media (max-width: 640px) {
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner p { margin: 0 auto 24px; }
  .cta-banner__photo { width: 120px; height: 120px; }
}

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }
.contact-grid__head { margin-bottom: 0; }
.form-note { font-size: 12.5px; color: var(--grey); margin: 12px 0 0; text-align: center; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea { width: 100%; padding: 13px 14px; border: 1.5px solid var(--light-green); border-radius: 6px; font-family: var(--font-body); font-size: 15px; background: var(--white); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--dark-green); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field--row { grid-template-columns: 1fr; } }

/* footer */
.footer { background: var(--soft-black); color: #fff; padding: 40px 24px 24px; }
.footer__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__logo { height: 44px; width: auto; }
.footer__tagline { color: #fff; font-size: 15px; font-weight: 600; max-width: 320px; margin: 16px 0 8px; line-height: 1.5; }
.footer__desc { color: #b9bfb8; font-size: 14px; max-width: 320px; margin: 0; line-height: 1.5; }
.footer__legal-line { max-width: 1080px; margin: 40px auto 0; padding: 0 24px; font-size: 12px; line-height: 1.6; color: #9aa19a; }
.footer__disclaimer { max-width: 1080px; margin: 20px auto 0; padding: 0 24px; font-size: 11.5px; line-height: 1.6; color: #8a9089; }
.footer__col-title { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--light-green); margin: 0 0 16px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; list-style: none; margin: 0; padding: 0; font-size: 14px; }
.footer__nav a { text-decoration: none; color: #d8dcd6; transition: color .18s ease; }
.footer__nav a:hover { color: var(--light-green); }
.footer__bottom { max-width: 1080px; margin: 28px auto 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); font-size: 12px; color: #9aa19a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* contact bubble */
.chatw { position: fixed; right: 20px; bottom: 20px; z-index: 300; display: block; }
.chatw__fab { width: 58px; height: 58px; border-radius: 50%; background: var(--dark-green); color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px -10px rgba(46,74,59,.55); transition: transform .18s ease, background .18s ease; }
.chatw:hover .chatw__fab { transform: translateY(-2px); background: #24392d; }
.chatw__fab svg { width: 26px; height: 26px; }
@media (max-width: 480px) {
  .chatw { right: 14px; bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) { .chatw__fab { transition: none; } }
