:root {
  --paper: #fbfaf6;
  --wash: #f2f5ee;
  --surface: #ffffff;
  --ink: #1f2a2c;
  --muted: #596662;
  --sage: #8fa391;
  --sage-deep: #587061;
  --clay: #9f563f;
  --line: rgba(31, 42, 44, 0.14);
  --soft-line: rgba(143, 163, 145, 0.3);
  --shadow: 0 24px 70px rgba(45, 55, 50, 0.11);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(143, 163, 145, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 82px 82px;
  color: var(--ink);
  font-family: "IBM Plex Sans", "Aptos", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(186, 113, 85, 0.42);
  outline-offset: 4px;
}

.anchor-target {
  scroll-margin-top: 88px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: min(var(--max), calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(40, 52, 46, 0.08);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav a,
.site-nav summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 10px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav summary:hover {
  background: var(--wash);
  color: var(--ink);
}

.site-nav a[aria-current="page"],
.site-nav summary[aria-current="page"] {
  background: var(--wash);
  color: var(--ink);
  font-weight: 800;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 40;
  display: grid;
  width: 286px;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 46px rgba(45, 55, 50, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-menu[open] .nav-dropdown,
.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}

.nav-dropdown a {
  border-radius: 6px;
  padding: 11px 12px;
  line-height: 1.25;
  white-space: normal;
}

.site-nav .nav-cta {
  margin-left: 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

main {
  overflow: clip;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  width: min(var(--max), calc(100% - 40px));
  align-items: center;
  gap: 64px;
  margin: 0 auto;
  padding: 76px 0 68px;
}

.hero-copy,
.hero-visual,
.profile-section > *,
.section-heading > *,
.service-layout > *,
.contact-section > * {
  min-width: 0;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 650;
  line-height: 1.04;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: 4.55rem;
}

.home-hero h1 {
  max-width: 900px;
  font-size: 4.2rem;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0;
  font-size: 3.55rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
  line-height: 1.28;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.22rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-helper {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-trust {
  max-width: 760px;
  margin: 36px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px rgba(31, 42, 44, 0.16);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.hero-start-panel {
  max-width: 780px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
}

.hero-start-panel p {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-start-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-start-card {
  display: grid;
  min-height: 136px;
  align-content: space-between;
  gap: 8px;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  padding: 14px;
  background: var(--wash);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-start-card:hover {
  border-color: var(--sage);
  background: #fff;
  transform: translateY(-1px);
}

.hero-start-card.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 42, 44, 0.14);
}

.hero-start-card.featured:hover {
  background: #243033;
}

.hero-start-card span {
  color: var(--sage-deep);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-start-card strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.25;
}

.hero-start-card small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-start-card.featured span,
.hero-start-card.featured strong,
.hero-start-card.featured small {
  color: #fff;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-points li {
  padding: 14px 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.portrait-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1.08;
}

.hero-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.clinician-note {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(45, 55, 50, 0.08);
}

.note-mark {
  width: 68px;
  height: 56px;
  object-fit: contain;
}

.clinician-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.clinician-note .credential-name {
  margin-bottom: 3px;
  color: var(--ink);
  font-weight: 800;
}

.credential-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  border-block: 1px solid var(--line);
  padding: 22px 0;
}

.credential-strip p {
  max-width: 960px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.credential-strip strong {
  color: var(--ink);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.page-masthead {
  display: grid;
  width: min(var(--max), calc(100% - 40px));
  max-width: 980px;
  gap: 20px;
  margin: 0 auto;
  padding: 82px 0 44px;
}

.page-masthead h1 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: 4.55rem;
}

.page-masthead p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.page-section-first {
  border-top: 0;
  padding-top: 42px;
}

.home-router {
  padding-bottom: 52px;
}

.referral-section {
  border-top: 1px solid var(--line);
  padding-bottom: 56px;
}

.referral-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.referral-grid article {
  border-top: 3px solid var(--sage);
  padding-top: 20px;
}

.referral-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.referral-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.referral-grid a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  border-bottom: 2px solid var(--sage);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
}

.pathway-section {
  border-top: 1px solid var(--line);
  padding-bottom: 62px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pathway-card {
  display: grid;
  min-height: 330px;
  align-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(45, 55, 50, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pathway-card:hover {
  border-color: var(--sage);
  box-shadow: 0 20px 52px rgba(45, 55, 50, 0.11);
  transform: translateY(-2px);
}

.pathway-card span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pathway-card h3 {
  max-width: 560px;
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.82rem;
  font-weight: 650;
  line-height: 1.14;
}

.pathway-card .button {
  width: fit-content;
}

.scenario-section {
  border-top: 1px solid var(--line);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.child-scenario-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.scenario-card {
  display: grid;
  min-height: 275px;
  align-content: start;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
}

.scenario-card span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scenario-card h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 650;
  line-height: 1.14;
}

.scenario-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.timeline-section {
  border-top: 1px solid var(--line);
}

.timeline-grid {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.05);
}

.step-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: var(--wash);
  color: var(--sage-deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.timeline-step h3 {
  margin-bottom: 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.58rem;
  font-weight: 650;
}

.timeline-step p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 54px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-block: 72px;
}

.about-preview-copy p {
  max-width: 760px;
  margin: 24px 0 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid var(--sage);
  color: var(--ink);
  font-weight: 800;
}

.bio-quote {
  margin: 8px 0 0;
  border-left: 4px solid var(--sage);
  padding: 8px 0 8px 28px;
}

.bio-quote p {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

.why-section {
  border-top: 1px solid var(--line);
  padding-top: 68px;
}

.why-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.why-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.why-list li::before {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--sage-deep) 0 4px, #fff 5px);
  color: var(--sage-deep);
  content: "";
}

.concern-section {
  border-top: 1px solid var(--line);
  padding-bottom: 56px;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.concern-card {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
}

.concern-card span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.concern-card .mini-list {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.concern-card a,
.path-helper a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  border-bottom: 2px solid var(--sage);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 800;
}

.deliverable-section {
  border-top: 1px solid var(--line);
  padding-top: 56px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deliverable-grid article {
  border-top: 3px solid var(--sage);
  padding-top: 20px;
}

.deliverable-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--sage-deep);
  font-weight: 800;
}

.deliverable-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-card {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-card:hover {
  border-color: var(--sage);
  box-shadow: 0 18px 46px rgba(45, 55, 50, 0.1);
  transform: translateY(-2px);
}

.home-card span {
  margin-bottom: 38px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-card h3 {
  margin-bottom: 10px;
}

.home-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 36px;
  width: min(var(--max), calc(100% - 40px));
  align-items: center;
  margin: 10px auto 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--wash);
}

.home-cta h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: 2.65rem;
}

.home-cta p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.home-cta .contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.profile-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.profile-copy p:first-of-type {
  margin-top: 24px;
}

.profile-copy p:last-child {
  margin-bottom: 0;
}

.profile-panel {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
}

.panel-label {
  margin-bottom: 12px;
  color: var(--sage-deep);
}

.timeline-list,
.education-list,
.check-list,
.tag-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list {
  display: grid;
  gap: 13px;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.96rem;
}

.timeline-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline-list span {
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.education-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.education-list li {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--wash);
}

.education-list strong,
.education-list span {
  display: block;
}

.education-list span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-section {
  border-top: 1px solid var(--line);
}

.service-path-section {
  border-top: 0;
}

.path-helper {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: 26px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: rgba(242, 245, 238, 0.76);
}

.path-helper .eyebrow {
  margin: 0;
}

.path-helper div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.path-helper p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.path-helper strong {
  color: var(--ink);
}

.service-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-path-card {
  display: grid;
  min-height: 420px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-path-card:hover {
  border-color: var(--sage);
  box-shadow: 0 18px 46px rgba(45, 55, 50, 0.1);
  transform: translateY(-2px);
}

.service-path-card span {
  margin-bottom: 52px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-path-card h2 {
  margin-bottom: 16px;
  font-size: 2.48rem;
}

.service-path-card p {
  max-width: 520px;
  color: var(--muted);
}

.service-path-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  border-bottom: 2px solid var(--sage);
  color: var(--ink);
  font-size: 0.98rem;
}

.product-section {
  border-top: 1px solid var(--line);
}

.child-fit-layout {
  margin-bottom: 16px;
}

.followup-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.service-layout,
.expect-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.service-column {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
}

.service-column h2,
.service-column h3 {
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 1.14rem;
  line-height: 1.28;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card,
.expect-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
}

.service-card {
  min-height: 230px;
  padding: 24px;
}

.service-card span,
.expect-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h2,
.service-card h3 {
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 1.32rem;
  line-height: 1.28;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 36px rgba(45, 55, 50, 0.06);
}

.product-card span {
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 14px;
  font-size: 1.32rem;
}

.product-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.98rem;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 18px;
}

.mini-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sage);
  content: "";
}

.product-note {
  max-width: 920px;
  margin-top: 18px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(242, 245, 238, 0.76);
  color: var(--muted);
}

.product-note strong {
  color: var(--ink);
}

.product-note a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(31, 42, 44, 0.24);
  text-underline-offset: 4px;
}

.followup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.followup-grid.single {
  grid-template-columns: minmax(0, 760px);
}

.followup-card {
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(242, 245, 238, 0.78);
}

.followup-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.followup-card h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
}

.followup-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--wash);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.process-section {
  border-top: 1px solid var(--line);
}

.expect-section,
.faq-section,
.process-detail-section {
  border-top: 1px solid var(--line);
}

.page-section-first.expect-section,
.page-section-first.faq-section,
.page-section-first.process-section,
.page-section-first.services-section {
  border-top: 0;
}

.expect-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.expect-grid article {
  padding: 26px;
  background: rgba(242, 245, 238, 0.8);
}

.expect-grid span {
  margin-bottom: 42px;
  color: var(--clay);
}

.expect-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.process-list article {
  border-top: 3px solid var(--sage);
  padding-top: 20px;
}

.process-list span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--sage-deep);
  font-weight: 800;
}

.process-list p {
  color: var(--muted);
  font-size: 0.98rem;
}

.process-note {
  max-width: 860px;
  margin-top: 28px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(242, 245, 238, 0.76);
  color: var(--muted);
}

.process-note strong {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  padding: 0;
}

.faq-list summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-deep);
  content: "+";
  font-weight: 800;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 42px;
  width: min(var(--max), calc(100% - 40px));
  min-height: 760px;
  align-items: center;
  margin: 82px auto;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-section h2 {
  margin-bottom: 18px;
  font-size: 3.35rem;
}

.contact-section h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.35rem;
}

.contact-section p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
}

.email-callout {
  scroll-margin-top: 120px;
  max-width: 690px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.email-callout span,
.email-callout a {
  display: block;
}

.email-callout span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.email-callout a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  margin-top: 4px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  overflow-wrap: break-word;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 4px;
}

.email-callout p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.privacy-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 4px;
}

.contact-section .button.primary {
  background: #fff;
  color: var(--ink);
}

.contact-section .button.secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
}

.contact-section .contact-actions {
  align-self: center;
  flex-direction: column;
  align-items: stretch;
}

.contact-section .contact-actions .button {
  min-width: 260px;
}

.copy-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 800;
  overflow-wrap: break-word;
  text-decoration: underline;
  text-decoration-color: rgba(31, 42, 44, 0.24);
  text-underline-offset: 4px;
}

@media (max-width: 1040px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    width: 100%;
  }

  .hero,
  .profile-section,
  .section-heading,
  .about-preview,
  .service-layout,
  .expect-grid,
  .home-cta,
  .path-helper,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-visual {
    max-width: 560px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .concern-grid,
  .path-helper div {
    grid-template-columns: 1fr;
  }

  .referral-grid,
  .deliverable-grid,
  .audience-grid,
  .scenario-grid,
  .child-scenario-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-path-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .followup-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .home-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cta .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
    background-size: 56px 56px;
  }

  .anchor-target {
    scroll-margin-top: 148px;
  }

  .site-header,
  .site-nav {
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
    width: calc(100% - 28px);
  }

  .site-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding-bottom: 2px;
    font-size: 0.86rem;
  }

  .site-nav a,
  .site-nav summary {
    padding-block: 8px;
    padding-inline: 4px;
    text-align: center;
  }

  .nav-menu {
    min-width: 0;
  }

  .nav-menu summary {
    justify-content: center;
  }

  .nav-menu[open] {
    grid-column: 1 / -1;
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu[open] .nav-dropdown {
    display: grid;
    transform: none;
  }

  .site-nav .nav-cta {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    min-height: 52px;
    margin-top: 4px;
    margin-left: 0;
    box-shadow: 0 14px 34px rgba(31, 42, 44, 0.16);
  }

  .hero,
  .section,
  .page-masthead,
  .home-cta,
  .credential-strip,
  .contact-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .brand-mark {
    width: 42px;
    height: 36px;
  }

  .hero {
    gap: 38px;
    padding: 40px 0 50px;
  }

  .hero-actions {
    display: grid;
  }

  h1 {
    max-width: 100%;
    font-size: 2.78rem;
  }

  .home-hero h1 {
    font-size: 2.2rem;
  }

  .page-masthead {
    padding: 54px 0 18px;
  }

  .page-masthead h1 {
    font-size: 2.28rem;
  }

  .page-masthead p:last-child {
    font-size: 1.05rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .contact-section h1,
  .contact-section h2 {
    font-size: 2.28rem;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-points,
  .education-list,
  .referral-grid,
  .concern-grid,
  .deliverable-grid,
  .home-card-grid,
  .pathway-grid,
  .audience-grid,
  .scenario-grid,
  .child-scenario-grid,
  .hero-start-grid,
  .path-helper div,
  .service-path-grid,
  .service-card-grid,
  .expect-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-start-panel {
    margin-top: 20px;
    padding: 12px;
  }

  .hero-start-card {
    min-height: 0;
    padding: 13px;
  }

  .hero-points {
    margin-top: 30px;
  }

  .hero-points li {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }

  .pathway-card {
    min-height: auto;
    padding: 24px;
  }

  .pathway-card h3 {
    font-size: 1.44rem;
  }

  .scenario-card {
    min-height: auto;
    padding: 22px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .step-icon {
    width: 52px;
    height: 52px;
  }

  .bio-quote {
    padding-left: 20px;
  }

  .bio-quote p {
    font-size: 1.48rem;
  }

  .portrait-frame {
    aspect-ratio: 1 / 1.03;
  }

  .clinician-note {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .note-mark {
    width: 58px;
    height: 50px;
  }

  .section {
    padding: 64px 0;
  }

  .profile-panel,
  .concern-card,
  .home-card,
  .service-path-card,
  .service-column,
  .service-card,
  .product-card,
  .followup-card,
  .expect-grid article {
    padding: 22px;
  }

  .home-card {
    min-height: auto;
  }

  .home-card span {
    margin-bottom: 28px;
  }

  .service-path-card {
    min-height: auto;
  }

  .service-path-card span {
    margin-bottom: 28px;
  }

  .service-path-card h2 {
    font-size: 2.05rem;
  }

  .home-cta {
    margin: 0 auto 64px;
    padding: 24px;
  }

  .home-cta h2 {
    font-size: 2.16rem;
  }

  .service-card {
    min-height: auto;
  }

  .service-card span,
  .product-card span,
  .followup-card span,
  .expect-grid span {
    margin-bottom: 28px;
  }

  .faq-list summary {
    align-items: flex-start;
    min-height: 0;
    padding: 17px 18px;
  }

  .faq-list details p {
    padding: 0 18px 18px;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-section {
    margin: 64px auto;
    min-height: auto;
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
  }
}
