
:root {
  --ink: #17372f;
  --text: #243a35;
  --muted: #66736d;
  --green-900: #17372f;
  --green-800: #245744;
  --green-700: #356e55;
  --sage-100: #f1f5ed;
  --sage-200: #e4ecdf;
  --sage-300: #ccd9c4;
  --gold: #b99a52;
  --cream: #f8f5ec;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(23, 55, 47, .14);
  --line-strong: rgba(23, 55, 47, .24);
  --shadow: 0 20px 60px rgba(23, 55, 47, .10);
  --soft-shadow: 0 10px 32px rgba(23, 55, 47, .07);
  --radius: 8px;
  --max: 1440px;
}
* {
  box-sizing: border-box;
  min-width: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(228, 236, 223, .45) 0, rgba(248, 245, 236, 0) 420px),
    var(--cream);
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.64;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
header, main, footer, section { max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  background: var(--white);
  padding: .75rem 1rem;
  z-index: 20;
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 2.4vw, 44px);
  min-height: 92px;
  padding: 13px clamp(22px, 4vw, 68px);
  background: rgba(248, 245, 236, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { flex: 0 0 auto; }
.brand img { width: clamp(270px, 17vw, 360px); }
.logo-dark { display: none; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 1.8vw, 36px);
  font-size: 1.125rem;
  font-weight: 720;
}
.site-nav a {
  color: var(--green-900);
  text-decoration: none;
  text-wrap: nowrap;
  border-radius: 999px;
}
.site-nav a.active {
  color: var(--gold);
}
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 720;
  line-height: 1;
}
.nav-cta { padding-left: 30px; padding-right: 30px; }
.nav-cta, .btn-primary {
  background: var(--green-800);
  color: var(--white) !important;
  box-shadow: 0 8px 20px rgba(36, 87, 68, .18);
}
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--green-900);
  background: rgba(255, 255, 255, .64);
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  color: var(--green-900);
  font: inherit;
  font-size: .92rem;
  font-weight: 760;
  cursor: pointer;
}
.theme-toggle-track {
  width: 42px;
  height: 24px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(36, 87, 68, .18);
  border: 1px solid var(--line);
}
.theme-toggle-track span {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-800);
  transform: translateX(0);
  transition: transform .18s ease, background .18s ease;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.nav-toggle { display: none; background: transparent; border: 0; width: 50px; height: 50px; }
.nav-toggle span { display: block; height: 2px; background: var(--green-900); margin: 8px 7px; }
.kicker {
  color: var(--green-700);
  font-size: .86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 12px;
}
h1, h2, h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}
h1 { font-size: clamp(3.6rem, 5.6vw, 6.35rem); max-width: 900px; }
h2 { font-size: clamp(2.2rem, 3.35vw, 3.85rem); max-width: 960px; }
h3 { font-size: clamp(1.34rem, 1.65vw, 1.8rem); }
p { color: var(--muted); margin: 16px 0 0; }
.hero, .page-hero {
  max-width: min(1360px, calc(100vw - 40px));
  margin: clamp(24px, 4vw, 54px) auto 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}
.hero-copy, .page-hero > div:first-child {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.hero-copy {
  padding: clamp(20px, 4vw, 58px) 0 clamp(18px, 3vw, 42px);
}
.hero p, .page-hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  max-width: 610px;
  color: #4b5e58;
}
.home-hero {
  max-width: min(1400px, calc(100vw - 40px));
  margin: clamp(34px, 5vw, 74px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.home-hero-copy h1 { max-width: 760px; }
.home-hero-copy > p:not(.kicker) {
  max-width: 620px;
  color: #435852;
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
}
.home-hero-media {
  position: relative;
  display: grid;
  gap: 14px;
}
.home-hero-media > img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.floating-hours {
  width: 100%;
  background: rgba(255, 253, 248, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 8px 22px rgba(23, 55, 47, .045);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 22px;
}
.floating-hours .kicker { grid-column: 1 / -1; margin-bottom: 0; }
.floating-hours h2 {
  font-size: clamp(1.85rem, 2.5vw, 2.8rem);
  line-height: 1;
}
.floating-hours p:not(.kicker) { font-size: .94rem; margin-top: 0; }
.hero-note {
  max-width: 585px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hero-note strong {
  display: block;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 500;
}
.hero-note span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}
.home-proof {
  max-width: var(--max);
  margin: clamp(38px, 5vw, 70px) auto 0;
  padding: 20px clamp(20px, 4vw, 54px) 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-proof div {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.home-proof div:first-child { padding-left: 0; }
.home-proof div:last-child { border-right: 0; padding-right: 0; }
.home-proof strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 2.7vw, 3rem);
  line-height: 1;
}
.home-proof span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 650;
}
.home-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.intro-copy h2 { max-width: 620px; }
.intro-text {
  max-width: 680px;
  padding-top: 8px;
}
.difference-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}
.difference-list {
  display: grid;
  gap: 0;
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.difference-list article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: clamp(28px, 2.6vw, 38px);
  border-bottom: 1px solid var(--line);
}
.difference-list article:last-child { border-bottom: 0; }
.difference-list span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}
.difference-list p { margin-top: 8px; }
.pathway-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pathway-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(23, 55, 47, .045);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pathway-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--soft-shadow);
}
.pathway-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.pathway-card div { padding: clamp(24px, 2vw, 30px); }
.pathway-card p { font-size: 1rem; }
.story-split {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.story-split img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.who-help {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
.who-help img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.process-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.process-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 2.5vw, 36px);
  box-shadow: 0 8px 22px rgba(23, 55, 47, .045);
}
.process-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}
.hero-media, .page-hero > img {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media img, .page-hero > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-visual-stack { display: grid; gap: 14px; }
.hero-mini-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 0 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-mini-proof div {
  min-height: 78px;
  padding: 0 18px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.hero-mini-proof div:first-child { padding-left: 0; }
.hero-mini-proof div:last-child { border-right: 0; padding-right: 0; }
.hero-mini-proof strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  line-height: 1;
}
.hero-mini-proof span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.26;
}
.section {
  padding: clamp(64px, 7vw, 104px) clamp(24px, 4vw, 64px);
  max-width: calc(var(--max) + 128px);
  margin: 0 auto;
}
.section.light, .section.surface { max-width: none; }
.section.light { background: var(--paper); }
.section.surface {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .72), rgba(255, 253, 248, .38)),
    var(--sage-100);
}
.home-difference {
  padding-top: clamp(34px, 3.8vw, 56px);
  padding-bottom: clamp(66px, 7vw, 104px);
  border-top: 1px solid rgba(23, 55, 47, .08);
}
.home-difference .difference-layout {
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  align-items: start;
}
.home-difference h2 { max-width: 600px; }
.home-difference .difference-layout > div:first-child p:not(.kicker) {
  max-width: 610px;
  font-size: clamp(1.05rem, 1.15vw, 1.2rem);
}
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(30px, 4vw, 50px);
  text-align: left;
}
.section-head p {
  max-width: 820px;
  font-size: clamp(1.02rem, 1.1vw, 1.18rem);
}
.card-grid {
  display: grid;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card, .service-tile, .event-card, .contact-card, .contact-form, .legal-block, .values-grid article, .location-grid article {
  background: rgba(255, 253, 248, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 2.5vw, 38px);
  box-shadow: 0 8px 22px rgba(23, 55, 47, .045);
}
.card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border: 1px solid rgba(185, 154, 82, .48);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 760;
  font-size: .86rem;
}
.card.compact { box-shadow: none; background: var(--white); }
.community-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.community-card {
  display: grid;
  grid-template-columns: minmax(118px, 150px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 26px);
  align-items: center;
  min-height: 184px;
  background: rgba(255, 253, 248, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 24px);
  box-shadow: 0 8px 22px rgba(23, 55, 47, .045);
}
.community-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(23, 55, 47, .10);
  border-radius: calc(var(--radius) - 4px);
  background: var(--white);
}
.community-card-media img {
  width: 100%;
  height: auto;
  max-height: 104px;
  object-fit: contain;
  box-shadow: none;
  border: 0;
}
.community-card h3 {
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  line-height: 1.06;
}
.community-card h3 a {
  color: var(--ink);
  text-decoration-color: rgba(185, 154, 82, .42);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.community-card h3 a:hover,
.community-card h3 a:focus-visible {
  color: var(--green-700);
  text-decoration-color: var(--gold);
}
.community-card p {
  margin-top: 12px;
}
.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-tile {
  min-height: 220px;
  text-decoration: none;
  border-top: 4px solid var(--sage-300);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-tile:hover {
  transform: translateY(-3px);
  border-top-color: var(--gold);
  box-shadow: var(--shadow);
}
.service-card { border-top: 4px solid var(--sage-300); }
.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}
.split > div > img, .split img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-story-section,
.about-mission-section {
  max-width: none;
}
.about-story-inner,
.about-mission-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.about-story-inner p,
.about-mission-inner p {
  font-size: clamp(1.04rem, 1.1vw, 1.18rem);
  line-height: 1.68;
}
.about-story-inner img,
.about-mission-inner img {
  display: block;
}
.check-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.check-list li {
  position: relative;
  color: var(--ink);
  padding: 0 0 12px 28px;
  border-bottom: 1px solid rgba(23, 55, 47, .10);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.locations { background: var(--cream); }
.location-grid, .values-grid, .compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}
.locations .location-grid {
  grid-template-columns: repeat(3, 1fr);
}
.location-grid article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}
.hours-card {
  background: var(--green-800);
}
.hours-card h3, .hours-card p, .hours-card span {
  color: var(--white) !important;
}
.values-grid { grid-template-columns: repeat(3, 1fr); }
.quote-rail {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}
.quote-card {
  min-width: min(520px, 86vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--soft-shadow);
}
.quote-card p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.34;
  margin: 0;
}
.quote-card strong {
  display: block;
  color: var(--green-700);
  margin-top: 22px;
}
.cta-strip {
  margin: 0;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(228, 236, 223, .94), rgba(255, 253, 248, .74)),
    var(--sage-100);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
}
.cta-strip h2 { color: var(--ink); margin: 0 auto; }
.cta-strip p { max-width: 680px; margin: 14px auto 0; }
.cta-strip .actions { justify-content: center; }
.team-list {
  display: grid;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.team-card {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: clamp(26px, 3.5vw, 48px);
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 2.2vw, 28px);
  box-shadow: var(--soft-shadow);
}
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage-100);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}
.team-logo-image {
  object-fit: contain !important;
  padding: clamp(34px, 7vw, 92px);
  background: var(--white);
}
.team-copy {
  display: grid;
  align-content: start;
  padding: clamp(6px, 1.8vw, 18px) 0;
}
.focus {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
}
.team-bio {
  max-width: 940px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.62;
}
.team-preview {
  color: var(--text);
  display: inline;
}
.bio-continuation {
  display: none;
}
.team-bio.is-open .bio-continuation {
  display: inline;
}
.team-bio.is-open .team-preview-ellipsis {
  display: none;
}
.bio-toggle {
  display: block;
  width: 100%;
  cursor: pointer;
  font-weight: 700;
  color: var(--green-800);
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  padding-top: 14px;
  background: transparent;
  font: inherit;
  text-align: left;
}
html[data-theme="dark"] .bio-toggle {
  color: var(--green-700);
}
.assistants-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
  overflow-x: clip;
}
.assistants-layout {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.assistants-copy p:not(.kicker) {
  max-width: 560px;
  font-size: clamp(1.04rem, 1.14vw, 1.18rem);
}
.assistant-carousel {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  contain: inline-size;
}
.assistant-track {
  inline-size: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 2px;
}
.assistant-slide {
  display: none;
  width: 100%;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}
.assistant-slide.is-active {
  display: block;
}
.assistant-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 25%;
}
.assistant-slide figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.assistant-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.assistant-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
  cursor: pointer;
}
.assistant-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: calc(var(--radius) - 2px);
}
.assistant-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(23, 55, 47, .13);
}
.assistant-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.assistant-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  font: inherit;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}
.assistant-controls button:hover,
.assistant-controls button:focus-visible {
  background: var(--green-800);
  color: var(--white);
}
.comparison {
  max-width: none;
  background: var(--sage-100);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.comparison .section-head { text-align: left; }
.compare-grid > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--soft-shadow);
}
.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}
.split-list > div {
  background: rgba(255, 253, 248, .82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
}
.multi-list {
  columns: 2;
  padding-left: 20px;
  color: var(--muted);
}
.multi-list li { break-inside: avoid; margin: 0 0 8px; }
.event-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.event-card { border-top: 4px solid var(--sage-300); }
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
  align-items: start;
}
.contact-form { display: grid; gap: 14px; background: var(--white); }
label { display: grid; gap: 7px; font-weight: 700; color: var(--green-900); }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--paper);
  font: inherit;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(185, 154, 82, .36);
  outline-offset: 2px;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--muted);
}
.checkbox input { width: auto; margin-top: 5px; }
.form-note { font-size: .88rem; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 10px 0;
}
.legal-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(70px, 10vw, 130px) 24px 36px;
  text-align: center;
}
.legal-hero h1, .legal-hero p { margin-left: auto; margin-right: auto; }
.legal-content { max-width: 900px; }
.legal-block { margin-bottom: 16px; background: var(--white); }
.site-footer {
  background: var(--green-800);
  color: var(--white);
  padding: clamp(48px, 7vw, 86px) clamp(20px, 4vw, 54px) 28px;
  font-size: calc(1rem + 1px);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, .58fr) minmax(220px, .42fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}
.footer-logo {
  width: min(390px, 100%);
  margin-top: -10px;
  margin-bottom: 14px;
}
.footer-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(6px, 1vw, 12px);
  max-width: 700px;
  margin-bottom: 0;
}
.footer-location {
  display: block;
  min-width: 0;
  padding-right: 8px;
  text-decoration: none;
}
.footer-location:hover h3,
.footer-location:focus-visible h3 {
  color: var(--gold);
}
.footer-locations h3 {
  margin-bottom: 6px;
  font-size: 1.14rem;
}
.footer-locations p {
  margin: 0;
  line-height: 1.42;
}
.footer-sitemap nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(104px, max-content));
  column-gap: 10px;
  gap: 8px;
  margin-top: 14px;
}
.footer-sitemap,
.footer-contact {
  padding-top: 14px;
}
.footer-social {
  margin-top: 12px;
}
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}
.footer-sitemap a {
  width: fit-content;
  color: rgba(255, 255, 255, .86);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  text-decoration: none;
  opacity: .9;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}
.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  color: var(--gold);
  opacity: 1;
  transform: translateY(-1px);
}
.footer-social-links svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.footer-social-links .google-g {
  fill: initial;
}
.footer-contact {
  justify-self: end;
  min-width: 230px;
}
.site-footer h3, .site-footer p, .site-footer a { color: var(--white); }
.site-footer p { color: rgba(255, 255, 255, .82); }
.site-footer .btn-primary {
  background: var(--paper);
  color: var(--green-900) !important;
  box-shadow: none;
}
.footer-theme {
  display: grid;
  justify-items: start;
  margin-top: 14px;
}
.site-footer .theme-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .30);
}
.site-footer .theme-toggle-track {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .22);
}
.site-footer .theme-toggle-track span {
  background: var(--gold);
}
.disclaimer {
  max-width: var(--max);
  margin: 22px auto 0;
  font-size: calc(.86rem + 1px);
  border-top: 1px solid rgba(255, 255, 255, .22);
  padding-top: 16px;
  text-align: center;
}
.footer-copyright {
  max-width: var(--max);
  margin: 10px auto 0;
  font-size: calc(.86rem + 1px);
  text-align: center;
}
@media (max-width: 1180px) {
  .site-header {
    min-height: 86px;
    padding: 12px clamp(18px, 4vw, 42px);
  }
  .brand img { width: clamp(224px, 28vw, 276px); }
  .nav-toggle { display: block; flex: 0 0 auto; }
  .site-nav {
    position: fixed;
    inset: 86px 18px auto 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-width: calc(100vw - 36px);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .site-nav .nav-cta { margin-top: 8px; }
}
@media (max-width: 1120px) {
  .hero, .page-hero, .home-hero, .home-intro, .difference-layout, .story-split, .who-help, .assistants-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 12px; }
  .card-grid.four, .card-grid.three, .service-grid, .event-grid, .values-grid, .pathway-grid, .process-grid, .locations .location-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  body { font-size: 15.5px; }
  .site-header { min-height: 78px; padding: 11px 18px; }
  .brand img { width: 206px; }
  .site-nav {
    inset: 78px 14px auto 14px;
    padding: 18px;
    max-width: calc(100vw - 28px);
  }
  .site-nav a { padding: 10px 8px; }
  .hero, .page-hero, .home-hero {
    max-width: calc(100vw - 28px);
    margin-top: 28px;
    gap: 18px;
  }
  h1 { font-size: clamp(2.35rem, 10vw, 3.35rem); }
  h2 { font-size: clamp(1.9rem, 8vw, 2.9rem); }
  .hero p, .page-hero p { font-size: 1rem; }
  .home-hero-copy > p:not(.kicker) { font-size: 1rem; }
  .home-hero-media { display: grid; gap: 14px; }
  .floating-hours {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .floating-hours .kicker { grid-column: auto; }
  .home-proof { grid-template-columns: repeat(2, 1fr); padding: 0 14px; margin-top: 34px; }
  .home-proof div { padding: 16px 12px; border-right: 0; border-top: 1px solid var(--line); }
  .home-proof div:nth-child(-n+2) { border-top: 0; }
  .home-proof div:first-child, .home-proof div:last-child { padding-left: 12px; padding-right: 12px; }
  .hero-mini-proof { grid-template-columns: repeat(2, 1fr); }
  .hero-mini-proof div { min-height: 88px; padding: 14px 12px; border-right: 0; border-top: 1px solid var(--line); }
  .hero-mini-proof div:nth-child(-n+2) { border-top: 0; }
  .hero-mini-proof div:first-child, .hero-mini-proof div:last-child { padding-left: 12px; padding-right: 12px; }
  .card-grid.four, .card-grid.three, .service-grid, .event-grid, .values-grid, .location-grid, .locations .location-grid, .compare-grid, .split, .split-list, .contact-layout, .footer-grid, .team-card, .pathway-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .footer-contact {
    justify-self: start;
  }
  .team-photo {
    aspect-ratio: auto;
    overflow: visible;
  }
  .team-photo img {
    height: auto;
    object-fit: contain;
  }
  .home-welcome-grid {
    gap: 28px;
  }
  .home-welcome-image {
    display: none;
  }
  .home-welcome-mobile-image {
    display: block;
    margin: 22px 0 22px;
  }
  .home-welcome-mobile-image img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .home-guide-shell {
    display: grid;
  }
  .home-guide-mobile-actions {
    display: block;
  }
  .home-guide-desktop-actions {
    display: none;
  }
  .home-guide-text-card {
    order: 2;
  }
  .home-guide-mobile-actions {
    order: 3;
  }
  .home-guide-mobile-actions .actions {
    margin-top: 20px;
  }
  .home-final-cta-shell {
    grid-template-columns: 1fr;
  }
  .home-final-copy,
  .home-final-form,
  .home-final-map {
    grid-column: 1;
    grid-row: auto;
  }
  .home-final-copy {
    order: 1;
  }
  .home-final-form {
    order: 2;
  }
  .home-final-map {
    order: 3;
    margin-top: 0;
  }
  .footer-grid {
    justify-items: center;
    text-align: center;
  }
  .footer-brand,
  .footer-sitemap,
  .footer-contact {
    width: 100%;
    justify-self: center;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-locations {
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-theme {
    justify-items: center;
    margin-bottom: 18px;
  }
  .footer-sitemap nav {
    justify-content: center;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact {
    justify-self: center;
  }
  .footer-social-links {
    justify-content: center;
  }
  .disclaimer {
    margin-top: 4px;
  }
  .difference-list article { grid-template-columns: 42px 1fr; padding: 20px; }
  .section { padding: 58px 18px; }
  .multi-list { columns: 1; }
  .quote-rail {
    display: grid;
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .quote-card {
    min-width: 0;
    width: 100%;
  }
  .team-card { padding: 12px; }
  .assistant-controls {
    justify-content: flex-start;
  }
  .community-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 16px;
  }
  .community-card-media {
    min-height: 98px;
    padding: 12px;
  }
  .community-card-media img {
    max-height: 78px;
  }
  .community-card h3 {
    font-size: clamp(1.34rem, 6vw, 1.7rem);
  }
  .actions, .cta-strip .actions { flex-direction: column; }
  .btn { width: 100%; }
}
@media (max-width: 420px) {
  .community-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }
}
@media (min-width: 701px) and (max-width: 820px) {
  .team-card {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 24px;
    padding: 18px;
  }
  .team-photo {
    aspect-ratio: auto;
    overflow: visible;
  }
  .team-photo img {
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 480px) {
  h1, h2, h3, p, li, strong, span {
    overflow-wrap: anywhere;
  }
}
@media (max-width: 320px) {
  .site-header {
    min-height: 72px;
    padding: 9px 12px;
    gap: 8px;
  }
  .brand img {
    width: min(188px, calc(100vw - 70px));
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
  }
  .nav-toggle span {
    margin: 7px 6px;
  }
  .site-nav {
    inset: 72px 10px auto 10px;
    max-width: calc(100vw - 20px);
  }
}

/* Full-width overlay hero system */
.home-hero, .page-hero {
  max-width: none;
  margin: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, var(--max)) minmax(24px, 1fr);
  gap: 0;
  align-items: end;
  background: var(--green-900);
  overflow: hidden;
  isolation: isolate;
}
.home-hero {
  min-height: clamp(620px, 68vh, 780px);
  padding: clamp(82px, 8vw, 126px) 0 clamp(46px, 5vw, 72px);
}
.page-hero {
  min-height: clamp(470px, 55vh, 650px);
  padding: clamp(90px, 9vw, 136px) 0 clamp(54px, 6vw, 84px);
}
.home-hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 43, 36, .88) 0%, rgba(15, 43, 36, .68) 38%, rgba(15, 43, 36, .28) 68%, rgba(15, 43, 36, .1) 100%),
    linear-gradient(0deg, rgba(15, 43, 36, .4), rgba(15, 43, 36, .08) 52%);
}
.home-hero-media {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}
.home-hero-media > img, .page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  transform-origin: 50% 25%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.home-hero-media > img {
  object-position: 50% 0%;
  transform-origin: 50% 0%;
}
.page-hero > img {
  z-index: 0;
}
.home-hero-copy, .page-hero > div:first-child {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 840px;
  padding: 0;
}
.home-hero-copy .kicker, .page-hero .kicker {
  color: rgba(255, 255, 255, .9);
}
.home-hero-copy h1, .page-hero h1 {
  color: #fff;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .24);
}
.home-hero-copy > p:not(.kicker), .page-hero p {
  color: rgba(255, 255, 255, .86);
  max-width: 720px;
  font-size: clamp(1.16rem, 1.28vw, 1.34rem);
  line-height: 1.55;
}
.home-hero-copy .actions {
  margin-top: 30px;
}
.home-hero .home-hero-copy {
  max-width: 740px;
  padding: clamp(30px, 3.6vw, 50px);
  background: rgba(23, 55, 47, .86);
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 8px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 28px 78px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}
.home-hero .home-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(3rem, 4.4vw, 4.8rem);
}
.home-hero .home-hero-copy > p:not(.kicker) {
  max-width: 620px;
  font-size: clamp(1.1rem, 1.2vw, 1.28rem);
}
.home-hero .btn-primary, .page-hero .btn-primary {
  background: #fff;
  color: var(--green-900) !important;
  border-color: #fff;
}
.home-hero .btn-primary:hover, .page-hero .btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-900) !important;
}
.home-hero .btn-ghost, .page-hero .btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
}
.home-hero .btn-ghost:hover, .page-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .84);
}
.floating-hours {
  display: none;
}
.home-proof {
  margin-top: 0;
}
.home-welcome {
  max-width: none;
  margin: 0;
  background: var(--paper);
  padding-top: clamp(58px, 6vw, 86px);
  padding-bottom: clamp(58px, 6vw, 86px);
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}
.home-welcome-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: center;
}
.home-welcome-grid h2 {
  max-width: 760px;
}
.home-welcome-grid p {
  max-width: 780px;
  font-size: clamp(1.1rem, 1.22vw, 1.28rem);
  line-height: 1.62;
}
.home-welcome-image img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.home-welcome-mobile-image {
  display: none;
}
.home-section-lede {
  max-width: var(--max);
  margin: 0 auto clamp(32px, 4vw, 54px);
}
.home-section-lede h2 {
  max-width: 820px;
}
.home-section-lede p {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.08vw, 1.18rem);
}
.home-guide {
  max-width: none;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(241, 245, 237, .82), rgba(248, 245, 236, .96)),
    var(--sage-100);
  padding-top: clamp(64px, 6vw, 88px);
  padding-bottom: clamp(66px, 6vw, 92px);
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}
.home-guide-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(460px, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}
.home-guide-copy {
  max-width: 820px;
}
.home-guide-copy h2 {
  max-width: 760px;
}
.home-guide-intro {
  display: grid;
  gap: 16px;
  margin-top: clamp(20px, 2.4vw, 30px);
}
.home-guide-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.22vw, 1.28rem);
  line-height: 1.62;
}
.home-guide-copy .actions {
  margin-top: clamp(24px, 3vw, 34px);
}
.home-guide-mobile-actions {
  display: none;
}
.home-guide-desktop-actions {
  display: block;
}
.home-guide-desktop-actions .actions {
  margin-top: clamp(24px, 3vw, 34px);
}
.home-guide-text-card {
  background: rgba(255, 253, 248, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(23, 55, 47, .08);
  overflow: hidden;
}
.home-guide-numbered article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(18px, 2vw, 26px);
  padding: clamp(24px, 2.4vw, 34px);
  border-bottom: 1px solid var(--line);
}
.home-guide-numbered article:last-child {
  border-bottom: 0;
}
.home-guide-numbered span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(185, 154, 82, .52);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: .96rem;
  line-height: 1;
}
.home-guide-numbered h3 {
  margin-bottom: 8px;
  font-size: clamp(1.28rem, 1.46vw, 1.6rem);
}
.home-guide-numbered p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.04vw, 1.1rem);
  line-height: 1.62;
}
.home-testimonials {
  max-width: none;
  background: var(--green-900);
  color: var(--white);
  overflow-x: clip;
}
.home-testimonials .home-section-lede h2,
.home-testimonials .home-section-lede p,
.home-testimonials .kicker {
  color: var(--white);
}
.home-testimonials .kicker {
  color: rgba(255, 255, 255, .72);
}
.home-testimonials .home-section-lede p {
  color: rgba(255, 255, 255, .78);
}
.home-quote-grid {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding: 4px 2px 20px;
  contain: inline-size;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .42) rgba(255, 255, 255, .12);
}
.home-quote-grid::-webkit-scrollbar {
  height: 8px;
}
.home-quote-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}
.home-quote-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .38);
  border-radius: 999px;
}
.home-quote {
  flex: 0 0 min(430px, 82vw);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: clamp(22px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  min-height: 330px;
}
.home-quote p {
  color: var(--white);
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(calc(.98rem + 1px), calc(1.04vw + 1px), calc(1.08rem + 1px));
  line-height: 1.58;
  margin-bottom: 0;
}
.home-quote strong {
  display: block;
  align-self: flex-end;
  margin-top: 18px;
  color: var(--gold);
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: calc(.94rem + 3px);
  font-weight: 800;
  text-align: right;
}
.home-final-cta {
  background:
    linear-gradient(135deg, rgba(53, 110, 85, .96), rgba(23, 55, 47, .96)),
    var(--green-800);
  color: var(--white);
  text-align: left;
  padding: clamp(56px, 8vw, 96px) max(24px, calc((100vw - var(--max)) / 2));
}
.home-final-cta-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}
.home-final-map {
  grid-column: 1;
}
.home-final-form {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.home-final-copy {
  grid-column: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
}
.home-final-cta h2,
.home-final-cta p,
.home-final-cta a {
  color: var(--white);
}
.home-final-cta h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.15rem);
  line-height: 1.02;
  max-width: 760px;
  margin-left: 0;
}
.home-final-cta p {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.02rem, 1.08vw, 1.16rem);
  line-height: 1.68;
  margin-left: 0;
}
.home-final-copy a {
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.home-final-map {
  margin-top: clamp(24px, 3vw, 34px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 22, 17, .24);
  background: rgba(255, 253, 248, .12);
  flex: 1 1 auto;
  min-height: 430px;
  padding: 8px;
}
.home-final-map::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), inset 0 -46px 70px rgba(23, 55, 47, .16);
}
.gfpt-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  background: var(--sage-100);
}
.gfpt-map .leaflet-container,
.leaflet-container.gfpt-map {
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.gfpt-map .leaflet-control-attribution {
  background: rgba(255, 253, 248, .82) !important;
  color: var(--muted);
  font-size: 10px;
}
.leaflet-gfpt-marker {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content !important;
  height: auto !important;
}
.leaflet-gfpt-pin {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 3px solid var(--green-900);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(209, 180, 89, .26), 0 8px 18px rgba(7, 22, 17, .24);
}
.leaflet-gfpt-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(15, 54, 43, .12);
  border-radius: 999px;
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 12px 28px rgba(7, 22, 17, .18);
  color: var(--green-900);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.gfpt-map .leaflet-popup-content-wrapper {
  border-radius: 16px;
  background: var(--white);
  color: var(--green-900);
  box-shadow: 0 14px 34px rgba(7, 22, 17, .22);
}
.gfpt-map .leaflet-popup-tip {
  background: var(--white);
}
.home-final-form {
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 24px 60px rgba(7, 22, 17, .24);
  gap: 18px;
  min-height: 100%;
}
.home-final-form h3 {
  margin-bottom: 8px;
  font-size: clamp(2.15rem, 2.45vw, 2.65rem);
  line-height: 1.04;
  text-align: center;
}
.home-final-form label {
  gap: 4px;
}
.home-final-form label + label {
  margin-top: 0;
}
.home-final-form input,
.home-final-form textarea {
  margin-top: 0;
}
.home-final-form .form-note {
  color: var(--muted);
}
.home-final-cta .btn-primary {
  background: var(--gold);
  color: var(--green-900) !important;
  font-size: 1.22rem;
}

@media (max-width: 1120px) {
  .home-hero, .page-hero {
    max-width: none;
    margin-top: 0;
  }
  .home-hero-copy, .page-hero > div:first-child {
    max-width: 720px;
  }
  .home-welcome-grid {
    grid-template-columns: 1fr;
  }
  .home-welcome-grid {
    gap: 34px;
  }
  .home-guide-shell {
    grid-template-columns: 1fr;
  }
  .home-guide-copy {
    max-width: none;
  }
  .home-final-cta-shell {
    grid-template-columns: 1fr;
  }
  .home-final-copy {
    max-width: none;
  }
  .home-final-map {
    min-height: 360px;
  }
}
@media (max-width: 820px) {
  .home-hero, .page-hero {
    max-width: none;
    margin-top: 0;
    grid-template-columns: 18px minmax(0, 1fr) 18px;
  }
  .home-hero {
    min-height: 600px;
    padding: 72px 0 34px;
    align-items: end;
  }
  .page-hero {
    min-height: 480px;
    padding: 72px 0 40px;
    align-items: end;
  }
  .home-hero::before, .page-hero::before {
    background:
      linear-gradient(0deg, rgba(15, 43, 36, .9) 0%, rgba(15, 43, 36, .7) 42%, rgba(15, 43, 36, .26) 82%, rgba(15, 43, 36, .12) 100%),
      linear-gradient(90deg, rgba(15, 43, 36, .42), rgba(15, 43, 36, .08));
  }
  .home-hero-media > img {
    object-position: 50% 0%;
  }
  .home-hero-copy, .page-hero > div:first-child {
    grid-column: 2;
    max-width: none;
    padding: 0;
  }
  .home-hero .home-hero-copy {
    padding: 26px 24px;
    border-left-width: 5px;
  }
  .home-hero .home-hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
  }
  .home-guide {
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .home-guide-numbered article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }
  .home-guide-numbered span {
    width: 40px;
    height: 40px;
  }
  .leaflet-gfpt-label {
    font-size: .82rem;
  }
  .home-difference .difference-layout {
    grid-template-columns: 1fr;
  }
  .home-hero-copy .actions {
    margin-top: 22px;
  }
  .home-proof {
    margin-top: 0;
  }
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f3f1e8;
  --text: #dfe8df;
  --muted: #b6c6bc;
  --green-900: #071611;
  --green-800: #1e5a46;
  --green-700: #98c7aa;
  --sage-100: #10251e;
  --sage-200: #17342b;
  --sage-300: #335a4b;
  --gold: #d5b35d;
  --cream: #081612;
  --paper: #0e211b;
  --line: rgba(244, 241, 232, .14);
  --line-strong: rgba(244, 241, 232, .28);
  --shadow: 0 24px 72px rgba(0, 0, 0, .46);
  --soft-shadow: 0 14px 40px rgba(0, 0, 0, .32);
}
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 15% 0%, rgba(53, 110, 85, .26), transparent 34rem),
    linear-gradient(180deg, rgba(8, 22, 18, .96), rgba(12, 27, 22, .98)),
    var(--cream);
}
html[data-theme="dark"] .site-header {
  background: rgba(8, 22, 18, .94);
  border-bottom-color: var(--line);
}
html[data-theme="dark"] .logo-light { display: none; }
html[data-theme="dark"] .logo-dark { display: block; }
html[data-theme="dark"] .site-nav a,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .nav-toggle span {
  color: var(--ink);
}
html[data-theme="dark"] .site-nav a.active {
  color: var(--gold);
  background: transparent;
  padding: 0;
  box-shadow: none;
}
html[data-theme="dark"] .nav-toggle span {
  background: var(--ink);
}
html[data-theme="dark"] .site-nav.open {
  background: rgba(14, 33, 27, .98);
}
html[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, .06);
  border-color: var(--line-strong);
}
html[data-theme="dark"] .theme-toggle-track {
  background: rgba(213, 179, 93, .18);
}
html[data-theme="dark"] .theme-toggle-track span {
  transform: translateX(18px);
  background: var(--gold);
}
html[data-theme="dark"] .nav-cta,
html[data-theme="dark"] .btn-primary {
  background: var(--gold);
  color: #071611 !important;
  box-shadow: 0 12px 26px rgba(213, 179, 93, .18);
}
html[data-theme="dark"] .btn-ghost {
  background: rgba(255, 255, 255, .07);
  border-color: var(--line-strong);
  color: var(--ink);
}
html[data-theme="dark"] .hero p,
html[data-theme="dark"] .contact-card p {
  color: var(--muted);
}
html[data-theme="dark"] .page-hero p,
html[data-theme="dark"] .home-hero-copy > p:not(.kicker) {
  color: rgba(255, 255, 255, .86);
}
html[data-theme="dark"] .section.light,
html[data-theme="dark"] .home-welcome {
  background: #0c1e18;
}
html[data-theme="dark"] .assistants-section {
  background: #0c1e18;
  border-top-color: var(--line);
}
html[data-theme="dark"] .section.surface,
html[data-theme="dark"] .home-guide,
html[data-theme="dark"] .comparison,
html[data-theme="dark"] .cta-strip {
  background:
    linear-gradient(180deg, rgba(20, 48, 39, .84), rgba(10, 25, 20, .94)),
    var(--sage-100);
}
html[data-theme="dark"] .home-final-cta {
  background:
    linear-gradient(135deg, rgba(28, 85, 67, .96), rgba(8, 22, 18, .98)),
    var(--green-800);
}
html[data-theme="dark"] .home-final-map {
  border-color: rgba(209, 180, 89, .26);
  background: rgba(7, 22, 17, .72);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .34);
}
html[data-theme="dark"] .home-final-map::after {
  box-shadow: inset 0 0 0 1px rgba(209, 180, 89, .14), inset 0 -44px 80px rgba(7, 22, 17, .22);
}
html[data-theme="dark"] .gfpt-map .leaflet-tile {
  filter: brightness(1.22) contrast(.95) saturate(.9);
}
html[data-theme="dark"] .leaflet-gfpt-pin {
  border-color: rgba(8, 22, 18, .92);
  box-shadow: 0 0 0 7px rgba(213, 179, 93, .18), 0 12px 28px rgba(0, 0, 0, .34);
}
html[data-theme="dark"] .leaflet-gfpt-label {
  border-color: rgba(213, 179, 93, .34);
  background: rgba(255, 253, 248, .92);
  color: #0a1a15;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34);
}
html[data-theme="dark"] .gfpt-map .leaflet-control-attribution {
  background: rgba(7, 22, 17, .86) !important;
  color: rgba(255, 255, 255, .72);
}
html[data-theme="dark"] .gfpt-map .leaflet-control-attribution a {
  color: var(--gold);
}
html[data-theme="dark"] .gfpt-map .leaflet-popup-content-wrapper,
html[data-theme="dark"] .gfpt-map .leaflet-popup-tip {
  background: #0a1a15;
  color: var(--ink);
}
html[data-theme="dark"] .home-testimonials,
html[data-theme="dark"] .site-footer {
  background: #071611;
}
html[data-theme="dark"] .locations {
  background: var(--cream);
}
html[data-theme="dark"] .card,
html[data-theme="dark"] .card.compact,
html[data-theme="dark"] .service-tile,
html[data-theme="dark"] .event-card,
html[data-theme="dark"] .community-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .legal-block,
html[data-theme="dark"] .values-grid article,
html[data-theme="dark"] .location-grid article,
html[data-theme="dark"] .compare-grid > div,
html[data-theme="dark"] .split-list > div,
html[data-theme="dark"] .team-card,
html[data-theme="dark"] .assistant-slide,
html[data-theme="dark"] .quote-card,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .pathway-card,
html[data-theme="dark"] .process-grid article,
html[data-theme="dark"] .difference-list,
html[data-theme="dark"] .floating-hours,
html[data-theme="dark"] .home-guide-text-card,
html[data-theme="dark"] .hero-media,
html[data-theme="dark"] .page-hero > img {
  background: rgba(16, 37, 30, .94);
  border-color: var(--line);
  box-shadow: var(--soft-shadow);
}
html[data-theme="dark"] .community-card-media {
  background: #fff;
  border-color: rgba(244, 241, 232, .18);
  box-shadow: none;
}
html[data-theme="dark"] .assistant-controls button {
  background: rgba(16, 37, 30, .94);
  color: var(--ink);
  border-color: var(--line-strong);
}
html[data-theme="dark"] .assistant-thumb {
  background: rgba(16, 37, 30, .94);
  border-color: rgba(244, 241, 232, .14);
}
html[data-theme="dark"] .assistant-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .32);
}
html[data-theme="dark"] .assistant-controls button:hover,
html[data-theme="dark"] .assistant-controls button:focus-visible {
  background: var(--gold);
  color: #071611;
}
html[data-theme="dark"] .home-hero .home-hero-copy {
  background: rgba(7, 22, 17, .9);
  border-color: rgba(255, 255, 255, .16);
  border-left-color: var(--gold);
}
html[data-theme="dark"] .card span {
  border-color: rgba(213, 179, 93, .5);
}
html[data-theme="dark"] .home-hero .btn-primary,
html[data-theme="dark"] .page-hero .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #071611 !important;
}
html[data-theme="dark"] .home-hero .btn-ghost,
html[data-theme="dark"] .page-hero .btn-ghost {
  background: rgba(255, 255, 255, .09);
  color: #fff;
  border-color: rgba(255, 255, 255, .48);
}
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background: #091914;
  color: var(--ink);
  border-color: var(--line-strong);
}
html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: rgba(223, 232, 223, .58);
}
html[data-theme="dark"] .quote-card p,
html[data-theme="dark"] .check-list li,
html[data-theme="dark"] label,
html[data-theme="dark"] summary {
  color: var(--ink);
}
html[data-theme="dark"] .site-footer h3,
html[data-theme="dark"] .site-footer p,
html[data-theme="dark"] .site-footer a {
  color: #fff;
}
html[data-theme="dark"] .site-footer .theme-toggle {
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .30);
}
html[data-theme="dark"] .site-footer .theme-toggle-track {
  background: rgba(213, 179, 93, .18);
  border-color: rgba(255, 255, 255, .20);
}
html[data-theme="dark"] .footer-logo {
  filter: none;
}
html[data-theme="dark"] .community-card h3 a {
  color: var(--ink);
}
@media (max-width: 820px) {
  .home-welcome-image {
    display: none;
  }
  .home-welcome-mobile-image {
    display: block;
    margin: 22px 0;
  }
  .home-welcome-mobile-image img {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .home-guide-mobile-actions {
    display: block;
    order: 3;
  }
  .home-guide-desktop-actions {
    display: none;
  }
  .home-guide-text-card {
    order: 2;
  }
  .home-guide-mobile-actions .actions {
    margin-top: 20px;
  }
  .home-final-cta-shell {
    grid-template-columns: 1fr;
  }
  .home-final-copy,
  .home-final-form,
  .home-final-map {
    grid-column: 1;
    grid-row: auto;
  }
  .home-final-copy {
    order: 1;
  }
  .home-final-form {
    order: 2;
  }
  .home-final-map {
    order: 3;
    margin-top: 0;
  }
  .footer-grid {
    justify-items: center;
    text-align: center;
  }
  .footer-brand,
  .footer-sitemap,
  .footer-contact {
    width: 100%;
    justify-self: center;
    text-align: center;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-locations {
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-theme {
    justify-items: center;
    margin-bottom: 18px;
  }
  .footer-sitemap nav {
    justify-content: center;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social-links {
    justify-content: center;
  }
  .disclaimer {
    margin-top: 4px;
  }
}


/* Apple Maps home contact map */
.gfpt-map .mk-map-view,
.gfpt-map canvas {
  border-radius: calc(var(--radius) - 8px);
}
.gfpt-map .mk-annotation-callout {
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.map-fallback {
  min-height: inherit;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: var(--green-900);
  background: linear-gradient(135deg, rgba(255, 253, 248, .94), rgba(235, 241, 230, .9));
}
.map-fallback strong {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.map-fallback span {
  color: var(--muted);
  font-weight: 700;
}
html[data-theme="dark"] .map-fallback {
  color: var(--white);
  background: linear-gradient(135deg, rgba(10, 34, 28, .98), rgba(22, 73, 58, .92));
}
html[data-theme="dark"] .map-fallback span {
  color: rgba(255, 255, 255, .72);
}
