:root {
  --forest: #173f36;
  --forest-deep: #0d302a;
  --leaf: #4c7c63;
  --sage: #a8c3ad;
  --mint: #dfece2;
  --cream: #fbf7ef;
  --paper: #fffdf8;
  --peach: #f4c5a9;
  --coral: #e86d32;
  --coral-dark: #c95321;
  --gold: #dbaa4d;
  --ink: #1b342e;
  --muted: #5b6d67;
  --line: rgba(23, 63, 54, .14);
  --shadow: 0 28px 80px rgba(29, 61, 52, .16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.sr-only, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus { position: fixed; z-index: 100; top: 12px; left: 12px; background: white; padding: 10px 16px; }

.welcome-bar {
  height: 34px; display: flex; align-items: center; justify-content: center; gap: 15px;
  background: var(--forest); color: #f5f2e8; font-size: 12px; letter-spacing: .05em;
}
.welcome-divider { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.site-header {
  height: 88px; display: flex; align-items: center; gap: 38px; padding: 0 clamp(24px, 5vw, 82px);
  position: sticky; top: 0; z-index: 30; background: rgba(255,253,248,.94);
  border-bottom: 1px solid rgba(23,63,54,.08); backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand img { width: 57px; height: 57px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font: 600 21px/1 var(--serif); }
.brand small { margin-top: 7px; color: var(--leaf); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: clamp(12px, 1.35vw, 22px); }
nav a, nav summary, .text-link { text-decoration: none; font-weight: 600; font-size: 13px; white-space: nowrap; }
nav a:hover, nav summary:hover, .text-link:hover { color: var(--coral); }
.nav-dropdown { position:relative; }
.nav-dropdown summary { display:flex; align-items:center; gap:6px; cursor:pointer; list-style:none; }
.nav-dropdown summary::-webkit-details-marker { display:none; }
.nav-dropdown summary span { color:var(--coral); font-size:15px; transition:transform .2s; }
.nav-dropdown[open] summary span { transform:rotate(180deg); }
.nav-dropdown-menu {
  position:absolute; left:50%; top:calc(100% + 20px); z-index:40; display:flex; flex-direction:column;
  width:265px; padding:10px; border:1px solid var(--line); border-radius:16px; background:rgba(255,253,248,.98);
  box-shadow:0 22px 55px rgba(23,63,54,.18); transform:translateX(-50%); backdrop-filter:blur(14px);
}
.nav-dropdown-menu::before { content:""; position:absolute; left:0; right:0; top:-22px; height:22px; }
.nav-dropdown-menu a { display:flex; flex-direction:column; padding:11px 13px; border-radius:10px; white-space:normal; }
.nav-dropdown-menu a:hover { color:var(--forest); background:var(--mint); }
.nav-dropdown-menu a:first-child { color:var(--coral-dark); border-bottom:1px solid var(--line); border-radius:10px 10px 4px 4px; }
.nav-dropdown-menu strong { font-size:13px; }
.nav-dropdown-menu small { margin-top:2px; color:var(--muted); font-size:10px; font-weight:500; letter-spacing:.04em; text-transform:uppercase; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 26px; border-radius: 100px; text-decoration: none;
  font-size: 14px; font-weight: 700; transition: transform .2s, background .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 45px; padding-inline: 21px; background: var(--coral); color: white; }
.button-header { min-height: 41px; padding-inline: 16px; font-size: 12px; }
.button-outline { border: 1px solid rgba(23,63,54,.24); background: transparent; }
.button-outline:hover { color: white; border-color: var(--forest); background: var(--forest); }
.button-small:hover, .button-primary:hover { background: var(--coral-dark); box-shadow: 0 12px 26px rgba(232,109,50,.25); }
.button-primary { background: var(--coral); color: white; box-shadow: 0 12px 28px rgba(232,109,50,.18); }
.button-ghost { border: 1px solid rgba(23,63,54,.24); background: rgba(255,255,255,.44); }
.button-icon { font-size: 17px; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }

.hero {
  min-height: 760px; position: relative; overflow: hidden; display: grid; grid-template-columns: .93fr 1.07fr;
  align-items: center; gap: clamp(45px, 7vw, 110px); padding: 80px clamp(24px, 7vw, 115px) 96px;
  background:
    radial-gradient(circle at 13% 80%, rgba(168,195,173,.24), transparent 29%),
    linear-gradient(110deg, #fffaf2 0%, #fbf7ef 57%, #edf4ed 100%);
}
.hero-copy { position: relative; z-index: 2; max-width: 650px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0 0 20px;
  color: var(--coral-dark); font-size: 11px; line-height: 1.3; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow > span { width: 26px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 25px; font: 500 clamp(55px, 5vw, 82px)/.99 var(--serif);
  letter-spacing: -.045em; text-wrap: balance;
}
h1 em { color: var(--coral); font-weight: 500; }
.hero-lead { max-width: 600px; color: var(--muted); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.72; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 34px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.hero-notes i {
  display: inline-flex; justify-content: center; align-items: center; width: 20px; height: 20px; margin-right: 6px;
  color: var(--forest); background: var(--mint); border-radius: 50%; font-style: normal; font-size: 11px;
}
.hero-visual { position: relative; width: min(100%, 660px); justify-self: end; padding: 13px 34px 36px 0; }
.photo-frame {
  position: relative; aspect-ratio: 1 / 1.08; overflow: hidden; border-radius: 52% 52% 23% 23% / 45% 45% 18% 18%;
  box-shadow: var(--shadow); border: 8px solid rgba(255,255,255,.68);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(16,60,49,.13)); pointer-events: none; }
.floating-card {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px; max-width: 235px;
  padding: 15px 18px; border: 1px solid rgba(255,255,255,.62); border-radius: 16px; background: rgba(255,253,248,.91);
  box-shadow: 0 18px 50px rgba(23,63,54,.16); backdrop-filter: blur(12px);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { margin-top: 2px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.floating-icon { display: grid; place-items: center; flex: 0 0 36px; height: 36px; border-radius: 50%; color: var(--coral); background: #ffebe0; }
.floating-care { left: -50px; bottom: 82px; }
.floating-welcome { right: -8px; top: 64px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #69a77e; box-shadow: 0 0 0 6px #e2f0e6; margin: 0 8px 0 4px; }
.hero-orb { position: absolute; border-radius: 50%; opacity: .6; filter: blur(1px); }
.hero-orb-one { width: 220px; height: 220px; right: 36%; top: -100px; background: rgba(244,197,169,.3); }
.hero-orb-two { width: 130px; height: 130px; left: -65px; bottom: 40px; border: 1px solid rgba(76,124,99,.2); }

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); padding: 27px clamp(24px, 7vw, 115px);
  border-block: 1px solid var(--line); background: white;
}
.trust-strip div { display: flex; flex-direction: column; align-items: center; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border: 0; }
.trust-strip strong { font-family: var(--serif); font-size: 16px; }
.trust-strip span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }

.section { padding: 110px clamp(24px, 7vw, 115px); }
.intro { display: grid; grid-template-columns: 1.08fr .92fr; gap: 10vw; align-items: end; background: var(--paper); }
.section-heading h2, .faq-intro h2 {
  margin-bottom: 18px; max-width: 750px; font: 500 clamp(38px, 4.1vw, 62px)/1.08 var(--serif); letter-spacing: -.035em;
}
.section-heading > p:last-child, .faq-intro > p { color: var(--muted); max-width: 610px; }
.intro-copy { padding-bottom: 8px; color: var(--muted); font-size: 17px; }
.arrow-link { display: inline-flex; gap: 14px; margin-top: 18px; color: var(--forest); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(23,63,54,.3); }
.services { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; padding-top: 0; background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card {
  padding: 37px; border: 1px solid var(--line); border-radius: 24px; background: white;
  box-shadow: 0 14px 40px rgba(29,61,52,.05);
}
.service-card h3 { margin: 16px 0 10px; font: 600 24px/1.22 var(--serif); }
.service-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.service-icon {
  display: grid; place-items: center; width: 45px; height: 45px; border-radius: 50%; background: var(--mint); color: var(--forest);
  font: 22px var(--serif);
}
.service-feature {
  position: relative; min-height: 540px; display: flex; align-items: flex-end; overflow: hidden;
  color: white; border: 0; background:
    radial-gradient(circle at 80% 12%, rgba(219,170,77,.34), transparent 28%),
    linear-gradient(145deg, #1d5b4b, var(--forest-deep));
}
.service-feature::before {
  content: ""; position: absolute; width: 280px; height: 370px; right: -105px; top: 75px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 50%;
}
.service-feature > div:last-child { position: relative; }
.service-feature h3 { margin: 18px 0; font-size: clamp(33px, 3vw, 46px); }
.service-feature p { color: rgba(255,255,255,.72); font-size: 16px; }
.service-feature a { display: inline-block; margin-top: 24px; color: white; font-weight: 700; text-decoration: none; }
.service-number { position: absolute; top: 26px; right: 32px; color: rgba(255,255,255,.25); font: 56px var(--serif); }
.light { color: var(--peach); }

.statement {
  position: relative; min-height: 470px; display: grid; place-items: center; padding: 95px 15%;
  overflow: hidden; color: var(--forest); text-align: center; background: #e8f0e7;
}
.statement blockquote { max-width: 1100px; margin: 0; font: 500 clamp(33px, 4.2vw, 58px)/1.25 var(--serif); letter-spacing: -.03em; }
.statement-mark { position: absolute; left: 7%; top: 0; color: rgba(23,63,54,.09); font: 260px/.9 var(--serif); }
.statement-leaves { position: absolute; right: 6%; bottom: -45px; color: rgba(23,63,54,.1); font-size: 190px; transform: rotate(-30deg); }
.centered { text-align: center; margin-inline: auto; }
.centered .eyebrow { justify-content: center; }
.centered h2, .centered p { margin-inline: auto; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 66px auto 0; }
.process-grid article { position: relative; text-align: center; padding: 0 32px; }
.process-grid article:not(:last-child)::after { content: ""; position: absolute; top: 24px; right: -30%; width: 60%; border-top: 1px dashed rgba(23,63,54,.25); }
.process-grid span { display: grid; place-items: center; width: 51px; height: 51px; margin: 0 auto 24px; border-radius: 50%; color: white; background: var(--coral); font-family: var(--serif); }
.process-grid h3 { margin-bottom: 12px; font: 600 22px var(--serif); }
.process-grid p { color: var(--muted); font-size: 14px; }

.team { color: white; background: var(--forest); }
.team > .section-heading { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; }
.team > .section-heading .eyebrow { grid-column: 1 / -1; }
.team > .section-heading h2 { color: white; }
.team > .section-heading > p:last-child { align-self: end; color: rgba(255,255,255,.66); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 60px; }
.team-card { overflow: hidden; border-radius: 25px; background: rgba(255,255,255,.07); }
.team-card-link { color: inherit; text-decoration: none; transition: transform .25s, background .25s; }
.team-card-link:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.team-photo { aspect-ratio: 1 / .98; overflow: hidden; background: #cedbcf; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s; }
.team-card:hover img { transform: scale(1.025); }
.team-card > div:last-child { padding: 25px 27px 28px; }
.team-card h3 { margin-bottom: 6px; font: 600 22px/1.28 var(--serif); }
.team-card p { margin: 0; color: var(--peach); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; }
.team-role-note, .team-profile-link { display: inline-block; margin-top: 15px; color: rgba(255,255,255,.66); font-size: 12px; }
.team-profile-link { color: white; font-weight: 700; }

/* Team directory and clinician profiles */
.inner-page { background: var(--paper); }
.inner-header { position: sticky; }
.inner-hero { position: relative; overflow: hidden; padding: 105px clamp(24px, 9vw, 150px) 95px; background: linear-gradient(120deg,#fff8ef,#edf4ed); }
.inner-hero::after { content:""; position:absolute; width:360px; height:360px; right:-90px; top:-150px; border-radius:50%; background:rgba(244,197,169,.25); }
.inner-hero-content { position:relative; z-index:1; max-width:900px; }
.inner-hero h1 { max-width:900px; margin-bottom:22px; font-size:clamp(50px,6vw,82px); }
.inner-hero p:last-child { max-width:700px; color:var(--muted); font-size:18px; }
.team-visual-hero { display:grid; grid-template-columns:.88fr 1.12fr; gap:6vw; align-items:center; min-height:620px; padding-top:72px; padding-bottom:72px; }
.team-visual-hero .inner-hero-content { max-width:680px; }
.team-visual-hero h1 { font-size:clamp(50px,5.2vw,76px); }
.team-visual-hero .arrow-link { margin-top:13px; }
.team-hero-portraits { position:relative; min-height:520px; }
.hero-portrait { position:absolute; overflow:hidden; border:7px solid rgba(255,255,255,.82); background:var(--mint); box-shadow:0 24px 65px rgba(29,61,52,.18); }
.hero-portrait img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.julia-headshot { object-position:center 36% !important; }
.elizabeth-headshot { object-position:center 32% !important; }
.hero-portrait span { position:absolute; left:13px; bottom:13px; padding:7px 11px; color:var(--forest); border-radius:100px; background:rgba(255,253,248,.9); font-size:10px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; backdrop-filter:blur(8px); }
.hero-portrait-keana { left:31%; top:0; z-index:6; width:36%; aspect-ratio:.78/1; border-radius:110px 110px 24px 24px; transform:none; }
.hero-portrait-jordan { left:0; top:62px; z-index:2; width:27%; aspect-ratio:.8/1; border-radius:68px 22px 22px 22px; transform:rotate(-4deg); }
.hero-portrait-julia { right:0; top:62px; z-index:2; width:27%; aspect-ratio:.8/1; border-radius:22px 68px 22px 22px; transform:rotate(4deg); }
.hero-portrait-elizabeth { left:37%; top:285px; z-index:3; width:25%; aspect-ratio:.8/1; border-radius:58px 20px 20px 20px; transform:rotate(2deg); }
.hero-portrait-jennifer { left:4%; top:335px; z-index:3; width:23%; aspect-ratio:.8/1; border-radius:58px 20px 20px 20px; transform:rotate(-2deg); }
.hero-portrait-nicole { right:4%; top:335px; z-index:3; width:23%; aspect-ratio:.8/1; border-radius:20px 58px 20px 20px; transform:rotate(2deg); }
.portrait-placeholder-small { display:grid; place-items:center; color:white; background:linear-gradient(145deg,#5f8d76,#214f43); }
.portrait-placeholder-small.hero-portrait-julia { background:linear-gradient(145deg,#d99066,#9e5534); }
.portrait-placeholder-small b { font:600 clamp(34px,4vw,58px) var(--serif); letter-spacing:.03em; }
.breadcrumbs { margin-bottom:22px; color:var(--leaf); font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.breadcrumbs a { text-decoration:none; }
.team-directory { padding-top:85px; }
.directory-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.directory-card { overflow:hidden; border:1px solid var(--line); border-radius:26px; background:white; box-shadow:0 16px 45px rgba(29,61,52,.07); }
.directory-card-link { color:inherit; text-decoration:none; transition:transform .25s, box-shadow .25s; }
.directory-card-link:hover { transform:translateY(-6px); box-shadow:0 24px 60px rgba(29,61,52,.14); }
.directory-photo { aspect-ratio:1/.9; overflow:hidden; background:var(--mint); }
.directory-photo img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.profile-photo-placeholder { display:grid; place-items:center; position:relative; overflow:hidden; color:white; background:linear-gradient(145deg,#628e78,#1f4b40); }
.profile-photo-placeholder::before { content:""; position:absolute; width:70%; height:70%; left:-25%; top:-25%; border:1px solid rgba(255,255,255,.22); border-radius:50%; }
.profile-photo-placeholder::after { content:""; position:absolute; width:55%; height:55%; right:-20%; bottom:-22%; background:rgba(255,255,255,.08); border-radius:50%; }
.profile-photo-placeholder > span { position:relative; z-index:1; font:600 clamp(48px,6vw,78px) var(--serif); letter-spacing:.04em; }
.placeholder-julia { background:linear-gradient(145deg,#d8936c,#924c31); }
.directory-body { padding:28px; }
.directory-body .role { margin-bottom:10px; color:var(--coral-dark); font-size:11px; font-weight:700; letter-spacing:.13em; text-transform:uppercase; }
.directory-body h2 { margin-bottom:12px; font:600 28px/1.2 var(--serif); }
.directory-body p { color:var(--muted); font-size:14px; }
.directory-action { display:inline-flex; align-items:center; justify-content:space-between; gap:12px; margin-top:14px; padding:10px 14px; border-radius:100px; color:white; background:var(--forest); font-size:13px; font-weight:700; }
.directory-card-link:hover .directory-action { background:var(--coral); }
.leadership-note { display:flex; align-items:center; gap:9px; margin-top:16px; color:var(--leaf); font-size:12px; font-weight:700; }
.leadership-note::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--gold); }
.directory-intro { display:grid; grid-template-columns:1fr 1fr; gap:8vw; align-items:end; margin-bottom:55px; }
.directory-intro p { color:var(--muted); }
.founder-feature { display:grid; grid-template-columns:210px 1fr; gap:32px; align-items:center; max-width:880px; margin-bottom:86px; padding:22px; border:1px solid var(--line); border-radius:28px; background:linear-gradient(125deg,#fff,#f0f6ef); box-shadow:0 18px 50px rgba(29,61,52,.08); }
.founder-feature-photo { overflow:hidden; aspect-ratio:1; border-radius:21px; background:var(--mint); }
.founder-feature-photo img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.founder-feature h2 { margin:5px 0 10px; font-size:clamp(32px,4vw,48px); }
.founder-feature p:not(.role) { max-width:590px; color:var(--muted); }
.clinician-directory-heading { display:flex; justify-content:space-between; gap:28px; align-items:end; margin-bottom:28px; }
.clinician-directory-heading h2 { margin-top:8px; }
.clinician-directory-heading > p { color:var(--leaf); font-size:13px; font-weight:700; }
.directory-tools { margin-bottom:34px; padding:20px; border:1px solid var(--line); border-radius:24px; background:rgba(255,255,255,.72); }
.directory-search { display:flex; align-items:center; gap:11px; min-height:54px; padding:0 18px; border:1px solid rgba(23,63,54,.2); border-radius:15px; background:white; }
.directory-search > span[aria-hidden] { color:var(--coral); font-size:25px; line-height:1; }
.directory-search input { width:100%; border:0; outline:0; color:var(--ink); background:transparent; font:500 15px var(--sans); }
.directory-search input::placeholder { color:#72847e; }
.directory-filter-help { margin:14px 2px 0; color:var(--muted); font-size:12px; font-weight:600; }
.directory-filters { display:flex; flex-wrap:wrap; gap:9px; margin-top:14px; }
.directory-filter { min-height:38px; padding:0 15px; border:1px solid rgba(23,63,54,.18); border-radius:100px; color:var(--forest); background:white; font:700 12px var(--sans); cursor:pointer; transition:background .2s,color .2s,border-color .2s; }
.directory-filter:hover, .directory-filter.is-active { border-color:var(--forest); color:white; background:var(--forest); }
.directory-card[hidden] { display:none; }
.directory-empty { margin:28px 0 0; padding:24px; border-radius:18px; color:var(--muted); text-align:center; background:var(--cream); }
.profile-hero { display:grid; grid-template-columns:.82fr 1.18fr; gap:8vw; align-items:center; padding:80px clamp(24px,9vw,150px); background:linear-gradient(115deg,#f4eee4,#e4efe6); }
.profile-portrait { max-width:500px; position:relative; }
.profile-portrait img { width:100%; aspect-ratio:1/.98; object-fit:cover; object-position:top center; border-radius:48% 48% 22px 22px; box-shadow:var(--shadow); }
.profile-portrait::after { content:""; position:absolute; inset:18px -18px -18px 18px; z-index:-1; border:1px solid rgba(23,63,54,.22); border-radius:48% 48% 22px 22px; }
.profile-portrait-placeholder { display:grid; place-items:center; aspect-ratio:1/.98; color:white; border-radius:48% 48% 22px 22px; background:linear-gradient(145deg,#668f7b,#214e43); box-shadow:var(--shadow); }
.profile-portrait-placeholder.placeholder-julia { background:linear-gradient(145deg,#d69470,#91492f); }
.profile-portrait-placeholder > span { font:600 clamp(75px,10vw,140px) var(--serif); letter-spacing:.04em; }
.profile-hero h1 { margin-bottom:15px; font-size:clamp(48px,5.5vw,78px); }
.profile-credentials { margin-bottom:10px; color:var(--coral-dark); font-size:13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.profile-title { margin-bottom:25px; color:var(--leaf); font:600 22px var(--serif); }
.profile-lead { max-width:650px; color:var(--muted); font-size:18px; }
.profile-badges { display:flex; flex-wrap:wrap; gap:9px; margin-top:25px; }
.profile-badges span { padding:8px 13px; border:1px solid rgba(23,63,54,.18); border-radius:100px; background:rgba(255,255,255,.45); font-size:11px; font-weight:700; }
.profile-content { display:grid; grid-template-columns:1.3fr .7fr; gap:9vw; align-items:start; }
.profile-story h2 { font:500 clamp(36px,4vw,54px)/1.12 var(--serif); }
.profile-story p { color:var(--muted); font-size:16px; }
.profile-sidebar { position:sticky; top:130px; padding:30px; border-radius:22px; background:var(--mint); }
.profile-sidebar h2 { margin-bottom:20px; font:600 23px var(--serif); }
.profile-sidebar ul { margin:0; padding:0; list-style:none; }
.profile-sidebar li { padding:11px 0; border-bottom:1px solid rgba(23,63,54,.12); color:var(--forest); font-size:13px; }
.profile-sidebar li:last-child { border:0; }
.profile-cta { display:flex; align-items:center; justify-content:space-between; gap:40px; padding:58px clamp(24px,9vw,150px); color:white; background:var(--forest); }
.profile-cta h2 { margin:0; font:500 clamp(32px,4vw,48px) var(--serif); }
.profile-cta p { margin:8px 0 0; color:rgba(255,255,255,.68); }
.profile-cta-actions { display:flex; gap:10px; flex-wrap:wrap; }
.profile-cta .button-ghost { color:white; border-color:rgba(255,255,255,.35); }
.simple-footer { padding:35px clamp(24px,7vw,115px); }
.simple-footer .footer-bottom { padding:0; border:0; }

.faq-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 10vw; background: var(--cream); }
.faq-intro { position: sticky; top: 150px; align-self: start; }
.faq-intro .button { margin-top: 18px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 25px;
  padding: 25px 0; cursor: pointer; font: 600 20px/1.35 var(--serif);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font: 300 29px var(--sans); color: var(--coral); transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; padding-right: 40px; color: var(--muted); }

.appointment-section {
  position: relative; overflow: hidden; padding: 120px 24px; color: white; text-align: center;
  background: linear-gradient(140deg, #19483e, #275f50);
}
.appointment-inner { position: relative; z-index: 2; max-width: 860px; margin: auto; }
.appointment-section h2 { margin: 0 auto 18px; font: 500 clamp(43px, 5vw, 67px)/1.08 var(--serif); letter-spacing: -.035em; }
.appointment-section p { color: rgba(255,255,255,.72); font-size: 17px; }
.centered-label { justify-content: center; color: var(--peach); }
.spwidget-button-wrapper { margin-top: 32px; text-align: center; }
.spwidget-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 18px; padding: 17px 31px;
  color: white !important; background: var(--coral); border: 0; border-radius: 100px;
  font-size: 15px; font-weight: 700; text-decoration: none; box-shadow: 0 15px 35px rgba(8,30,25,.23);
}
.spwidget-button:hover { background: var(--coral-dark); transform: translateY(-2px); }
.appointment-alternatives { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 27px; }
.appointment-alternatives > span { width: 1px; height: 33px; background: rgba(255,255,255,.2); }
.appointment-alternatives .contact-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-width: 132px; padding: 11px 19px;
  color: white; border: 1px solid rgba(255,255,255,.34); border-radius: 100px; background: rgba(255,255,255,.08);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase;
}
.appointment-alternatives .contact-pill:hover { background: rgba(255,255,255,.16); }
.appointment-decoration { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.appointment-decoration-one { width: 470px; height: 470px; left: -220px; top: -160px; }
.appointment-decoration-two { width: 620px; height: 620px; right: -310px; bottom: -320px; }

footer { color: #e8f0e7; background: #23594b; }
.footer-main {
  display: grid; grid-template-columns: 1.45fr .85fr .7fr 1.1fr; gap: 55px;
  padding: 76px clamp(24px, 7vw, 115px) 60px;
}
.brand-light strong { color: white; }
.brand-light small { color: var(--peach); }
.footer-brand > p { max-width: 320px; margin: 22px 0; color: rgba(255,255,255,.68); }
.footer-brand address { color: rgba(255,255,255,.64); font-style: normal; font-size: 13px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column h2 { margin: 5px 0 10px; color: var(--peach); font: 600 12px var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.76); font-size: 13px; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-button {
  display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 100px; background: rgba(255,255,255,.06);
}
.footer-button span { color: white; font-weight: 700; }
.crisis p { margin: 0 0 8px; color: rgba(255,255,255,.65); font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 18px clamp(24px, 7vw, 115px); color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.11); font-size: 11px; }
.mobile-cta { display: none; }

.career-hero-new {
  display:grid; grid-template-columns:1.15fr .85fr; align-items:center; gap:clamp(45px,8vw,120px);
  min-height:650px; padding:95px clamp(24px,7vw,115px);
  background:radial-gradient(circle at 82% 18%,rgba(244,197,169,.7),transparent 30%),linear-gradient(120deg,#fffaf2,#edf5ed);
}
.career-hero-new > div { max-width:720px; }
.career-hero-new h1 em { display:block; }
.career-promise { position:relative; overflow:hidden; padding:54px; border-radius:38px; background:var(--forest); color:white; box-shadow:var(--shadow); }
.career-promise::after { content:""; position:absolute; width:260px; height:260px; right:-110px; bottom:-130px; border:1px solid rgba(255,255,255,.18); border-radius:50%; }
.career-promise .eyebrow { color:var(--peach); }
.career-promise h2 { margin-bottom:20px; font:500 clamp(34px,3.2vw,52px)/1.05 var(--serif); letter-spacing:-.03em; }
.career-promise p:last-child { color:rgba(255,255,255,.76); }
.career-openings > .section-heading { display:grid; grid-template-columns:.85fr 1fr; gap:30px 80px; align-items:end; max-width:1100px; margin-bottom:50px; }
.career-openings > .section-heading .eyebrow { grid-column:1/-1; margin-bottom:-12px; }
.career-openings > .section-heading h2 { margin:0; font:500 clamp(42px,4vw,64px)/1.04 var(--serif); }
.career-openings > .section-heading > p:last-child { margin:0; color:var(--muted); }
.career-grid-new { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.career-card-new { display:flex; flex-direction:column; min-height:430px; padding:38px; border:1px solid var(--line); border-radius:28px; background:white; box-shadow:0 16px 50px rgba(29,61,52,.07); }
.career-card-new > span { color:var(--coral); font-size:12px; font-weight:700; letter-spacing:.15em; }
.career-card-new h3 { margin:18px 0 12px; font:500 31px/1.12 var(--serif); }
.career-card-new p,.career-card-new li { color:var(--muted); }
.career-card-new ul { padding-left:20px; }
.career-card-new a { margin-top:auto; color:var(--coral-dark); font-weight:700; text-decoration:none; }
.library-hero { display:grid; grid-template-columns:1.08fr .92fr; align-items:center; gap:70px; min-height:590px; padding:80px clamp(24px,7vw,115px); overflow:hidden; background:radial-gradient(circle at 78% 35%,rgba(168,195,173,.45),transparent 30%),linear-gradient(120deg,#fffaf2,#f2e9dc); }
.library-hero > div:first-child { max-width:750px; }
.library-orbit { position:relative; justify-self:center; display:grid; place-items:center; width:min(38vw,420px); aspect-ratio:1; border:1px solid rgba(23,63,54,.18); border-radius:50%; }
.library-orbit::before,.library-orbit::after { content:""; position:absolute; border:1px solid rgba(232,109,50,.25); border-radius:50%; }
.library-orbit::before { width:72%; height:72%; }.library-orbit::after { width:42%; height:42%; background:rgba(255,255,255,.42); }
.library-orbit strong { z-index:2; font:500 48px var(--serif); color:var(--forest); }
.library-orbit span { position:absolute; z-index:3; padding:8px 15px; border-radius:100px; background:white; color:var(--coral-dark); font-size:11px; font-weight:700; box-shadow:0 10px 30px rgba(23,63,54,.1); }
.library-orbit span:nth-child(1){top:8%;left:42%}.library-orbit span:nth-child(2){right:-2%;top:50%}.library-orbit span:nth-child(3){bottom:8%;left:12%}
.library-heading { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; margin-bottom:48px; }
.library-heading h2 { margin:0; font:500 clamp(42px,4vw,64px)/1.04 var(--serif); }
.library-heading > p { color:var(--muted); }
.article-grid-new { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.article-card-new,.linkartemis-card { overflow:hidden; border:1px solid var(--line); border-radius:24px; background:white; box-shadow:0 16px 45px rgba(29,61,52,.08); text-decoration:none; transition:transform .2s,box-shadow .2s; }
.article-card-new:hover,.linkartemis-card:hover { transform:translateY(-5px); box-shadow:0 22px 55px rgba(29,61,52,.14); }
.article-card-new img,.linkartemis-card .article-thumb img { width:100%; aspect-ratio:1.45/1; object-fit:cover; }
.article-card-new > div,.linkartemis-card .article-card-body { padding:25px; }
.article-card-new span,.linkartemis-card span { color:var(--coral-dark); font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.article-card-new h3,.linkartemis-card h3 { margin:10px 0; font:500 25px/1.15 var(--serif); }
.article-card-new p,.linkartemis-card p { color:var(--muted); font-size:14px; }
.article-card-new b,.linkartemis-card b { color:var(--forest); font-size:13px; }
.article-detail-hero { padding:90px clamp(24px,9vw,150px) 76px; background:radial-gradient(circle at 82% 20%,rgba(168,195,173,.42),transparent 30%),linear-gradient(120deg,#fffaf2,#f2e9dc); }
.article-detail-hero > div { max-width:900px; }
.article-detail-hero h1 { max-width:850px; font-size:clamp(48px,6vw,82px); }
.article-detail-hero .text-link { display:inline-block; margin-top:18px; color:var(--forest); font-weight:700; text-decoration:none; }
.article-detail-section { background:white; }
.article-detail-body { width:min(760px,100%); margin:auto; color:#38534a; font-size:17px; line-height:1.8; }
.article-detail-body h2 { margin:52px 0 18px; color:var(--forest); font:500 clamp(31px,4vw,44px)/1.1 var(--serif); }
.article-detail-body h3 { margin:38px 0 14px; color:var(--forest); font:500 29px/1.15 var(--serif); }
.article-detail-body a { color:var(--coral-dark); font-weight:700; }
.article-detail-body img { height:auto; margin:32px auto; border-radius:24px; }
.article-detail-body blockquote { margin:35px 0; padding:22px 28px; border-left:4px solid var(--coral); border-radius:0 18px 18px 0; background:var(--cream); color:var(--forest); font:500 22px/1.5 var(--serif); }
.article-detail-body table { display:block; max-width:100%; overflow-x:auto; border-collapse:collapse; }
.article-detail-body th,.article-detail-body td { padding:12px; border:1px solid var(--line); text-align:left; }
.about-hero { grid-template-columns:1.05fr .7fr; align-items:center; }
.about-founder-visual { position:relative; justify-self:center; width:min(100%,440px); }
.about-founder-visual img { width:100%; aspect-ratio:.82/1; object-fit:cover; border:8px solid rgba(255,255,255,.75); border-radius:190px 190px 34px 34px; box-shadow:var(--shadow); }
.about-founder-visual > span { position:absolute; left:-20px; bottom:24px; padding:14px 20px; border-radius:16px; background:white; color:var(--forest); font-weight:700; box-shadow:0 14px 35px rgba(23,63,54,.14); }
.about-founder-visual small { color:var(--coral-dark); font-size:10px; letter-spacing:.1em; text-transform:uppercase; }
.about-mission { display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:start; }
.about-mission h2 { font:500 clamp(43px,4vw,64px)/1.04 var(--serif); }
.about-mission > p { color:var(--muted); font-size:20px; line-height:1.85; }
.about-values { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding-top:0; }
.about-values article { min-height:285px; padding:32px; border:1px solid var(--line); border-radius:24px; background:linear-gradient(145deg,#fff,#f5efe5); }
.about-values span { color:var(--coral); font-size:12px; font-weight:700; }
.about-values h3 { margin:45px 0 12px; font:500 28px var(--serif); }
.about-values p { color:var(--muted); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1320px) {
  .header-actions .button-header { display: none; }
}
@media (max-width: 1180px) {
  .site-header { gap: 22px; padding-inline: 28px; }
  nav { gap: 17px; }
  nav a { font-size: 13px; }
  .hero { padding-inline: 55px; }
  .floating-care { left: -25px; }
  .team-grid, .directory-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 900px) {
  .site-header { height: 75px; }
  .brand img { width: 49px; height: 49px; }
  .brand strong { font-size: 18px; }
  .menu-button { display: flex; flex-direction: column; gap: 5px; order: 3; }
  .menu-button span:not(.sr-only) { width: 25px; height: 2px; background: var(--forest); }
  nav {
    display: none; position: absolute; left: 0; right: 0; top: 75px; padding: 22px 28px;
    flex-direction: column; align-items: flex-start; background: var(--paper); border-bottom: 1px solid var(--line);
  }
  nav.open { display: flex; }
  .nav-dropdown { width:100%; }
  .nav-dropdown summary { justify-content:space-between; width:100%; }
  .nav-dropdown-menu { position:static; width:100%; margin-top:10px; padding:6px; box-shadow:none; transform:none; background:var(--cream); }
  .nav-dropdown-menu::before { display:none; }
  .header-actions { margin-left: auto; }
  .header-actions .button-small { display: none; }
  .hero { grid-template-columns: 1fr; padding: 72px 28px 90px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { justify-self: center; max-width: 650px; margin-top: 20px; }
  .floating-care { left: 0; }
  .trust-strip { grid-template-columns: repeat(2,1fr); row-gap: 25px; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .section { padding: 85px 28px; }
  .intro, .services, .faq-section { grid-template-columns: 1fr; }
  .intro { gap: 30px; }
  .services { padding-top: 0; }
  .service-feature { min-height: 450px; }
  .team > .section-heading { grid-template-columns: 1fr; }
  .team > .section-heading > p:last-child { margin-top: 0; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .directory-grid { grid-template-columns:repeat(2,1fr); }
  .team-visual-hero { grid-template-columns:1fr; min-height:auto; }
  .team-hero-portraits { width:min(100%,700px); min-height:545px; margin:0 auto; }
  .profile-hero, .profile-content { grid-template-columns:1fr; }
  .profile-portrait { max-width:470px; }
  .profile-sidebar { position:static; }
  .profile-cta { align-items:flex-start; flex-direction:column; }
  .career-hero-new { grid-template-columns:1fr; min-height:auto; padding:75px 28px; }
  .career-promise { max-width:700px; }
  .library-hero { grid-template-columns:1fr; }
  .library-orbit { width:min(70vw,420px); }
  .article-grid-new { grid-template-columns:repeat(2,1fr); }
  .about-hero,.about-mission { grid-template-columns:1fr; }
  .about-founder-visual { justify-self:start; }
  .about-values { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 620px) {
  body { padding-bottom: 64px; }
  .welcome-bar { height: auto; min-height: 32px; padding: 7px 15px; font-size: 10px; text-align: center; }
  .welcome-bar span:last-child { display: none; }
  .site-header { padding-inline: 16px; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: 17px; }
  .hero { min-height: auto; padding: 55px 20px 72px; }
  h1 { font-size: 48px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-notes { flex-direction: column; gap: 8px; }
  .hero-visual { padding: 8px 5px 50px; }
  .photo-frame { border-radius: 48% 48% 20% 20% / 38% 38% 17% 17%; }
  .floating-card { padding: 12px 13px; max-width: 210px; }
  .floating-welcome { right: -2px; top: 40px; }
  .floating-care { left: 5px; bottom: 18px; }
  .trust-strip { padding: 25px 15px; }
  .trust-strip div { padding: 7px 5px; }
  .trust-strip strong { font-size: 13px; }
  .trust-strip span { font-size: 9px; }
  .section { padding: 70px 20px; }
  .section-heading h2, .faq-intro h2 { font-size: 39px; }
  .service-grid, .process-grid, .team-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }
  .service-feature { min-height: 430px; }
  .statement { min-height: 420px; padding: 75px 24px; }
  .statement blockquote { font-size: 31px; }
  .process-grid article:not(:last-child)::after { display: none; }
  .team > .section-heading { display: block; }
  .team-grid { gap: 16px; }
  .appointment-section { padding: 85px 20px; }
  .appointment-alternatives { align-items: stretch; flex-direction: column; }
  .appointment-alternatives > span { width: 50px; height: 1px; margin: auto; }
  .footer-main { grid-template-columns: 1fr; padding: 60px 20px 42px; }
  .footer-bottom { flex-direction: column; gap: 5px; padding-inline: 20px; }
  .mobile-cta {
    position: fixed; z-index: 50; display: grid; grid-template-columns: .75fr 1.25fr; left: 0; right: 0; bottom: 0;
    min-height: 64px; padding: 8px; gap: 8px; background: white; box-shadow: 0 -6px 25px rgba(23,63,54,.15);
  }
  .mobile-cta a { display: grid; place-items: center; border: 1px solid var(--line); border-radius: 100px; color: var(--forest); font-size: 13px; font-weight: 700; text-decoration: none; }
  .mobile-cta a:last-child { color: white; border-color: var(--coral); background: var(--coral); }
  .inner-hero { padding:70px 20px 65px; }
  .inner-hero h1 { font-size:48px; }
  .team-visual-hero { padding-top:55px; padding-bottom:45px; }
  .team-visual-hero h1 { font-size:47px; }
  .team-hero-portraits { min-height:340px; margin-top:12px; }
  .hero-portrait { border-width:4px; }
  .hero-portrait-keana { left:31%; top:0; width:38%; border-radius:75px 75px 17px 17px; }
  .hero-portrait-jordan { left:0; right:auto; top:45px; width:27%; border-radius:50px 15px 15px 15px; }
  .hero-portrait-julia { right:0; left:auto; top:45px; width:27%; border-radius:15px 50px 15px 15px; }
  .hero-portrait-elizabeth { left:36.5%; right:auto; top:205px; width:27%; border-radius:45px 14px 14px 14px; }
  .hero-portrait-jennifer { left:4%; top:225px; width:23%; border-radius:45px 14px 14px 14px; }
  .hero-portrait-nicole { right:4%; top:225px; width:23%; border-radius:14px 45px 14px 14px; }
  .hero-portrait span { left:7px; bottom:7px; padding:5px 8px; font-size:8px; }
  .directory-intro, .directory-grid { grid-template-columns:1fr; }
  .team-directory { padding-top:65px; }
  .founder-feature { grid-template-columns:1fr; margin-bottom:65px; }
  .founder-feature-photo { max-width:240px; }
  .clinician-directory-heading { align-items:flex-start; flex-direction:column; gap:8px; }
  .directory-tools { padding:14px; }
  .profile-hero { padding:55px 20px 70px; }
  .profile-portrait { width:92%; }
  .profile-hero h1 { font-size:47px; }
  .profile-content { gap:45px; }
  .profile-cta { padding:55px 20px; }
  .profile-cta-actions { width:100%; }
  .profile-cta-actions .button { width:100%; }
  .career-hero-new { padding:60px 20px; }
  .career-promise { padding:34px 28px; border-radius:26px; }
  .career-openings > .section-heading,.career-grid-new { grid-template-columns:1fr; }
  .career-card-new { min-height:0; padding:30px 26px; }
  .career-card-new a { margin-top:20px; }
  .library-hero { padding:60px 20px; }
  .library-orbit { width:min(86vw,360px); }
  .library-heading,.article-grid-new { grid-template-columns:1fr; }
  .article-detail-hero { padding:60px 20px; }
  .article-detail-hero h1 { font-size:47px; }
  .about-values { grid-template-columns:1fr; }
  .about-founder-visual > span { left:8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
