/* ==========================================================================
   East Hanover Wellness and Recovery
   Token-based stylesheet built from the approved design.
   Order: tokens → base → primitives → chrome → home → interior → responsive.
   ========================================================================== */

:root {
	/* Surfaces */
	--cream:      #F4F1EA;
	--cream-2:    #EFEADF;
	--cream-3:    #E9E4D8;
	--cream-4:    #E7E3D8;
	--white:      #FFFFFF;
	--field:      #FBFAF6;

	/* Ink */
	--navy:       #234A63;
	--navy-dark:  #16344A;
	--blue:       #5B8199;
	--sage:       #9DB09A;
	--ink:        #3A434C;

	/* Lines — the design uses the blue at a range of opacities */
	--line-16:    rgba(91, 129, 153, 0.16);
	--line-18:    rgba(91, 129, 153, 0.18);
	--line-20:    rgba(91, 129, 153, 0.20);
	--line-22:    rgba(91, 129, 153, 0.22);
	--line-28:    rgba(91, 129, 153, 0.28);
	--line-40:    rgba(91, 129, 153, 0.40);
	--line-45:    rgba(91, 129, 153, 0.45);
	--sage-line:  rgba(157, 176, 154, 0.65);
	--sage-rule:  rgba(157, 176, 154, 0.70);

	/* On navy */
	--on-navy:    rgba(244, 241, 234, 0.86);
	--on-navy-mid:rgba(244, 241, 234, 0.72);
	--on-navy-dim:rgba(244, 241, 234, 0.65);
	--on-navy-label: rgba(244, 241, 234, 0.60);
	--on-navy-line:  rgba(244, 241, 234, 0.20);

	/* Shadows */
	--sh-card:    0 12px 30px rgba(35, 74, 99, 0.07);
	--sh-card-hi: 0 18px 40px rgba(35, 74, 99, 0.13);
	--sh-aside:   0 14px 34px rgba(35, 74, 99, 0.08);
	--sh-form:    0 16px 40px rgba(35, 74, 99, 0.09);
	--sh-btn:     0 6px 16px rgba(35, 74, 99, 0.18);
	--sh-btn-lg:  0 10px 24px rgba(35, 74, 99, 0.22);

	/* Type */
	--serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
	--sans:  'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--mono:  'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

	/* Layout */
	--wrap: 1240px;
	--pad:  40px;
	--r-sm: 10px;
	--r-md: 16px;
	--r-lg: 18px;
	--r-xl: 20px;
	--pill: 999px;
}

/* --------------------------------------------------------------- base --- */

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

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--blue); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; color: var(--navy); }

::selection { background: var(--sage); color: #fff; }

:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 3px;
	border-radius: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
	white-space: nowrap; border: 0;
}

.ehr-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--navy);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 var(--r-sm) 0;
}
.ehr-skip:focus { left: 0; color: #fff; }

/* --------------------------------------------------------- primitives --- */

.ehr-wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding-left: var(--pad);
	padding-right: var(--pad);
}

/* The sage "leaf" — a circle with two square corners. Used as a bullet,
   a divider dot, and a section marker throughout the design. */
.ehr-leaf {
	display: block;
	width: 9px;
	height: 9px;
	flex: none;
	border-radius: var(--pill) 0 var(--pill) 0;
	background: var(--sage);
}

.ehr-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 44px;
}
.ehr-divider span {
	width: 60px;
	height: 1px;
	background: var(--line-40);
}

.ehr-eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sage);
}

.ehr-tag {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	color: var(--sage);
}

.ehr-btn {
	display: inline-block;
	border: 1px solid transparent;
	border-radius: var(--pill);
	padding: 14px 26px;
	font-family: var(--sans);
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}
.ehr-btn--primary {
	background: var(--navy);
	color: #fff;
	box-shadow: var(--sh-btn);
}
.ehr-btn--primary:hover { background: var(--navy-dark); color: #fff; }
.ehr-btn--ghost {
	background: rgba(255, 255, 255, 0.8);
	color: var(--navy);
	border-color: rgba(91, 129, 153, 0.42);
}
.ehr-btn--ghost:hover { background: var(--white); color: var(--navy); }
.ehr-btn--cream {
	background: var(--cream);
	color: var(--navy);
	border-color: var(--line-40);
}
.ehr-btn--cream:hover { background: var(--white); color: var(--navy); }
.ehr-btn--lg { padding: 16px 30px; font-size: 16px; }
.ehr-btn--lg.ehr-btn--primary { box-shadow: var(--sh-btn-lg); }
.ehr-btn--block { display: block; width: 100%; }

/* Underlined text link with the sage rule under it. */
.ehr-link {
	font-size: 15.5px;
	color: var(--navy);
	border-bottom: 1px solid var(--sage-rule);
	padding-bottom: 3px;
}
.ehr-link:hover { color: var(--blue); border-bottom-color: var(--blue); }

.ehr-card {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-md);
}

/* Bulleted item: leaf + text, used on every "what's included" list. */
.ehr-bullets { display: grid; gap: 12px; }
.ehr-bullet {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.ehr-bullet .ehr-leaf { margin-top: 9px; }
.ehr-bullet p { font-size: 16.5px; line-height: 1.7; margin: 0; }

/* Section rhythm */
.ehr-section { padding: 96px var(--pad); }
.ehr-section--tight { padding: 88px var(--pad); }
.ehr-section--white {
	background: var(--white);
	border-top: 1px solid var(--line-16);
	border-bottom: 1px solid var(--line-16);
}
.ehr-section--sand { background: var(--cream-2); }

.ehr-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 42px;
}
.ehr-section__head h2 {
	font-size: 40px;
	line-height: 1.15;
	margin: 14px 0 0;
}
.ehr-section__head p {
	font-size: 16px;
	line-height: 1.7;
	max-width: 360px;
	margin: 0;
}
.ehr-section__head--center {
	display: block;
	text-align: center;
	max-width: 700px;
	margin: 0 auto 56px;
}
.ehr-section__head--center h2 { font-size: 42px; }

/* ------------------------------------------------------------- header --- */

.ehr-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(244, 241, 234, 0.93);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line-22);
}
.ehr-header__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 14px var(--pad);
	display: flex;
	align-items: center;
	gap: 34px;
}

.ehr-lockup {
	display: flex;
	align-items: center;
	gap: 13px;
	flex: none;
}
.ehr-lockup__mark {
	width: 52px;
	height: 52px;
	position: relative;
	overflow: hidden;
	border-radius: var(--pill);
	display: block;
	flex: none;
}
.ehr-lockup__mark img {
	position: absolute;
	width: 94px;
	max-width: none;
	height: 94px;
	left: -21px;
	top: -13px;
	object-fit: cover;
}
.ehr-lockup__text { display: flex; flex-direction: column; line-height: 1.05; }
.ehr-lockup__name {
	font-family: var(--serif);
	font-size: 18px;
	letter-spacing: 0.07em;
	color: var(--navy);
}
.ehr-lockup__sub {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--blue);
	margin-top: 3px;
}
.ehr-lockup--dark .ehr-lockup__mark { width: 58px; height: 58px; background: var(--cream); }
.ehr-lockup--dark .ehr-lockup__mark img { width: 105px; height: 105px; left: -24px; top: -15px; }
.ehr-lockup--dark .ehr-lockup__name { font-size: 17px; color: var(--cream); }
.ehr-lockup--dark .ehr-lockup__sub { color: var(--on-navy-mid); }

.ehr-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1;
	font-size: 15px;
}
.ehr-nav__list {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ehr-nav__list a { color: var(--ink); }
.ehr-nav__list a:hover { color: var(--navy); }
.ehr-nav__list .current-menu-item > a,
.ehr-nav__list .current_page_item > a,
.ehr-nav__list .current-menu-parent > a {
	color: var(--navy);
	box-shadow: inset 0 -1px 0 var(--sage-rule);
}
.ehr-nav__actions {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 22px;
}
.ehr-nav__actions .ehr-btn {
	padding: 11px 20px;
	font-size: 14.5px;
	white-space: nowrap;
}
.ehr-phone { display: flex; flex-direction: column; line-height: 1.15; }
.ehr-phone__label {
	font-size: 10.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--blue);
}
.ehr-phone__number {
	font-family: var(--serif);
	font-size: 18px;
	color: var(--navy);
	white-space: nowrap;
}

/* ------------------------------------------------------ nav dropdown --- */

.ehr-nav__list li { position: relative; }
.ehr-nav__list .menu-item-has-children > a { padding-right: 2px; }

.ehr-subtoggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	padding: 0;
	margin-left: 1px;
	vertical-align: middle;
	background: transparent;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	color: var(--blue);
}
.ehr-caret {
	display: block;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.18s ease;
}
.ehr-subtoggle[aria-expanded="true"] .ehr-caret {
	transform: translateY(1px) rotate(-135deg);
}

.ehr-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 20px);
	left: -20px;
	z-index: 60;
	display: none;
	min-width: 252px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background: var(--white);
	border: 1px solid var(--line-18);
	border-radius: var(--r-md);
	box-shadow: var(--sh-aside);
}
/* Bridges the gap between the link and the panel so the pointer can travel
   into it without the panel closing underneath. */
.ehr-nav__list .sub-menu::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	height: 20px;
}
/* Pointer hover opens it; everything else goes through .is-open, which the
   disclosure button controls. Deliberately no :focus-within — focus returns to
   the toggle when Escape closes the panel, and :focus-within would immediately
   reopen it, leaving keyboard users unable to dismiss it at all. */
.ehr-nav__list li:hover > .sub-menu,
.ehr-nav__list .sub-menu.is-open { display: block; }

.ehr-nav__list .sub-menu li { border: 0; }
.ehr-nav__list .sub-menu a {
	display: block;
	padding: 9px 22px;
	font-size: 15px;
	line-height: 1.45;
	color: var(--ink);
	white-space: nowrap;
}
.ehr-nav__list .sub-menu a:hover,
.ehr-nav__list .sub-menu a:focus-visible {
	background: var(--cream);
	color: var(--navy);
}
.ehr-nav__list .sub-menu .current-menu-item > a {
	color: var(--navy);
	box-shadow: inset 2px 0 0 var(--sage);
}

.ehr-burger {
	display: none;
	margin-left: auto;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--line-28);
	border-radius: var(--r-sm);
	cursor: pointer;
}
.ehr-burger__bars,
.ehr-burger__bars::before,
.ehr-burger__bars::after {
	display: block;
	width: 20px;
	height: 1.5px;
	background: var(--navy);
	margin: 0 auto;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.ehr-burger__bars { position: relative; }
.ehr-burger__bars::before,
.ehr-burger__bars::after { content: ''; position: absolute; left: 0; }
.ehr-burger__bars::before { top: -6px; }
.ehr-burger__bars::after  { top: 6px; }
.ehr-burger[aria-expanded="true"] .ehr-burger__bars { background: transparent; }
.ehr-burger[aria-expanded="true"] .ehr-burger__bars::before { transform: translateY(6px) rotate(45deg); }
.ehr-burger[aria-expanded="true"] .ehr-burger__bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------ banners --- */

.ehr-banner {
	position: relative;
	overflow: hidden;
	background: var(--cream-3);
}
.ehr-banner__photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 62%;
}
.ehr-banner__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(96deg, rgba(244, 241, 234, 0.96) 0%, rgba(244, 241, 234, 0.9) 46%, rgba(244, 241, 234, 0.62) 100%);
}
.ehr-banner__inner {
	position: relative;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 62px var(--pad) 66px;
}
.ehr-crumbs {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.ehr-crumbs a { color: var(--blue); }
.ehr-crumbs__sep { color: rgba(91, 129, 153, 0.6); margin: 0 8px; }
.ehr-crumbs__here { color: var(--sage); }
.ehr-banner__title {
	font-size: 50px;
	line-height: 1.12;
	letter-spacing: -0.012em;
	margin: 18px 0 14px;
	max-width: 780px;
	text-wrap: pretty;
}
.ehr-banner__sub {
	font-size: 19px;
	line-height: 1.7;
	color: var(--ink);
	margin: 0;
	max-width: 620px;
	text-wrap: pretty;
}
.ehr-banner__rule {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 var(--pad) 26px;
}
.ehr-rule__line { width: 54px; height: 1px; background: var(--line-45); }

/* --------------------------------------------------------------- hero --- */

.ehr-hero {
	position: relative;
	min-height: 660px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--cream-4);
}
.ehr-hero__photo {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.ehr-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(244, 241, 234, 0.93) 0%, rgba(244, 241, 234, 0.72) 40%, rgba(244, 241, 234, 0.14) 74%, rgba(244, 241, 234, 0) 100%);
}
.ehr-hero__inner {
	position: relative;
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 96px var(--pad);
	width: 100%;
}
.ehr-hero__copy { max-width: 640px; }
.ehr-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 22px;
}
.ehr-hero__eyebrow::before {
	content: '';
	width: 26px;
	height: 1px;
	background: var(--sage);
}
.ehr-hero__title {
	font-size: 62px;
	line-height: 1.08;
	letter-spacing: -0.015em;
	margin: 0 0 22px;
	text-wrap: pretty;
}
.ehr-hero__body {
	font-size: 20px;
	line-height: 1.65;
	margin: 0 0 34px;
	max-width: 545px;
	text-wrap: pretty;
}
.ehr-hero__buttons { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ehr-hero__buttons .ehr-btn--ghost { background: rgba(255, 255, 255, 0.86); border-color: var(--line-45); }
.ehr-hero__note { margin: 26px 0 0; font-size: 14.5px; color: var(--blue); }

/* ---------------------------------------------------------- trust bar --- */

.ehr-trust {
	background: var(--white);
	border-top: 1px solid var(--line-16);
	border-bottom: 1px solid var(--line-16);
}
.ehr-trust__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 26px var(--pad);
	display: flex;
	align-items: center;
	gap: 34px;
}
.ehr-trust__badges { display: flex; align-items: center; gap: 18px; flex: 1; }
.ehr-badge {
	flex: 1;
	min-height: 54px;
	padding: 8px 12px;
	border-radius: var(--r-sm);
	border: 1px dashed rgba(91, 129, 153, 0.5);
	background-image: repeating-linear-gradient(135deg, rgba(91, 129, 153, 0.09) 0 8px, rgba(91, 129, 153, 0.02) 8px 16px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--mono);
	font-size: 11px;
	color: var(--navy);
	letter-spacing: 0.04em;
}
.ehr-trust__note {
	padding-left: 32px;
	border-left: 1px solid var(--line-22);
	font-size: 15px;
	color: var(--navy);
	line-height: 1.5;
	max-width: 250px;
}
.ehr-trust__note a { color: var(--blue); border-bottom: 1px solid var(--sage-rule); }

/* ---------------------------------------------------------- home body --- */

.ehr-intro { padding: 104px var(--pad) 92px; }
.ehr-intro__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.ehr-intro h2 {
	font-size: 44px;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 26px;
}
.ehr-intro p {
	font-size: 19.5px;
	line-height: 1.8;
	margin: 0 auto 18px;
	max-width: 720px;
	text-wrap: pretty;
}
.ehr-intro p:last-of-type { margin-bottom: 0; }

.ehr-levels { padding: 8px var(--pad) 100px; }
.ehr-levels__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.ehr-level-card {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-lg);
	padding: 30px 28px 32px;
	box-shadow: var(--sh-card);
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ehr-level-card:hover { box-shadow: var(--sh-card-hi); transform: translateY(-3px); }
.ehr-level-card h3 {
	font-weight: 500;
	font-size: 23px;
	line-height: 1.25;
	margin: 16px 0 12px;
}
.ehr-level-card p { font-size: 15.5px; line-height: 1.7; margin: 0 0 22px; }
.ehr-level-card__foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
	color: var(--blue);
	border-top: 1px solid var(--line-20);
	padding-top: 16px;
}
.ehr-level-card__foot a { font-size: 14px; color: var(--navy); white-space: nowrap; }

.ehr-approach__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 46px;
}
.ehr-approach__icon {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: var(--pill);
	background: var(--cream);
	border: 1px solid rgba(157, 176, 154, 0.6);
	margin-bottom: 20px;
}
.ehr-approach__grid h3 { font-weight: 500; font-size: 22px; margin: 0 0 12px; }
.ehr-approach__grid p { font-size: 16.5px; line-height: 1.75; margin: 0; }

.ehr-modalities {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ehr-modality {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-md);
	padding: 26px 26px 28px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.ehr-modality .ehr-leaf { width: 10px; height: 10px; margin-top: 8px; }
.ehr-modality h3 { font-weight: 500; font-size: 20px; margin: 0 0 8px; }
.ehr-modality p { font-size: 15.5px; line-height: 1.7; margin: 0; }

.ehr-roots__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 64px;
	align-items: center;
}
.ehr-roots__photo {
	border-radius: var(--r-xl);
	overflow: hidden;
	height: 460px;
	border: 1px solid var(--line-28);
	background-size: cover;
	background-position: center;
}
.ehr-roots h2 { font-size: 40px; line-height: 1.18; margin: 14px 0 22px; }
.ehr-roots p { font-size: 17.5px; line-height: 1.8; margin: 0 0 18px; }
.ehr-roots__stats {
	display: flex;
	gap: 40px;
	padding-top: 26px;
	margin-top: 30px;
	border-top: 1px solid var(--line-28);
}
.ehr-roots__stat-n { font-family: var(--serif); font-size: 30px; color: var(--navy); }
.ehr-roots__stat-l { font-size: 14.5px; color: var(--blue); margin-top: 4px; }

.ehr-proof { padding: 100px var(--pad); }
.ehr-quotes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 28px;
}
.ehr-quote {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-xl);
	padding: 40px 40px 34px;
	margin: 0;
	box-shadow: 0 12px 30px rgba(35, 74, 99, 0.06);
}
.ehr-quote blockquote {
	font-family: var(--serif);
	font-size: 23px;
	line-height: 1.6;
	color: var(--navy);
	margin: 0 0 22px;
	font-style: italic;
	text-wrap: pretty;
}
.ehr-quote figcaption { font-size: 14.5px; color: var(--blue); }
.ehr-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.ehr-stat {
	border: 1px solid var(--line-22);
	border-radius: var(--r-md);
	padding: 28px 30px;
	background: rgba(255, 255, 255, 0.55);
}
.ehr-stat__n { font-family: var(--serif); font-size: 38px; color: var(--navy); line-height: 1; }
.ehr-stat__l { font-size: 15.5px; line-height: 1.6; margin-top: 12px; }
.ehr-footnote { font-size: 13px; color: var(--blue); margin: 20px 0 0; }

.ehr-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 46px;
}
.ehr-step {
	background: var(--cream);
	border-radius: var(--r-lg);
	padding: 32px 30px 34px;
	border: 1px solid var(--line-18);
}
.ehr-step__n {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--sage);
	letter-spacing: 0.14em;
}
.ehr-step h3 { font-weight: 500; font-size: 22px; margin: 14px 0 10px; }
.ehr-step p { font-size: 16px; line-height: 1.7; margin: 0; }

.ehr-navyband {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	background: var(--navy);
	border-radius: var(--r-xl);
	padding: 34px 44px;
}
.ehr-navyband h3 { font-size: 27px; color: #fff; margin: 0 0 8px; }
.ehr-navyband p { font-size: 15.5px; color: rgba(244, 241, 234, 0.85); margin: 0; }
.ehr-navyband .ehr-btn { white-space: nowrap; }

/* ------------------------------------------------------- closing band --- */

.ehr-cta {
	position: relative;
	padding: 100px var(--pad);
	overflow: hidden;
	background: var(--cream-2);
}
.ehr-cta__texture {
	position: absolute;
	inset: 0;
	background-image: repeating-radial-gradient(circle at 82% 118%, rgba(91, 129, 153, 0.16) 0 1px, rgba(91, 129, 153, 0) 1px 26px);
}
.ehr-cta__inner {
	position: relative;
	max-width: var(--wrap);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: start;
}
.ehr-cta__heading { font-size: 44px; line-height: 1.12; margin: 0 0 20px; }
.ehr-cta__body { font-size: 18px; line-height: 1.8; margin: 0 0 32px; max-width: 460px; }
.ehr-callcard {
	display: inline-flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line-28);
	border-radius: var(--r-md);
	padding: 22px 30px;
	box-shadow: 0 10px 26px rgba(35, 74, 99, 0.08);
}
.ehr-callcard__label {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--blue);
}
.ehr-callcard__number {
	font-family: var(--serif);
	font-size: 34px;
	color: var(--navy);
	margin-top: 6px;
}
.ehr-cta__buttons { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* --------------------------------------------------------------- form --- */

.ehr-form {
	background: var(--white);
	border-radius: var(--r-xl);
	padding: 38px 40px 34px;
	border: 1px solid var(--line-20);
	box-shadow: var(--sh-form);
}
.ehr-form__heading { font-weight: 500; font-size: 24px; margin: 0 0 22px; }
.ehr-form__fields { display: grid; gap: 18px; }
.ehr-field { display: grid; gap: 7px; font-size: 14px; color: var(--navy); }
.ehr-field input,
.ehr-field select,
.ehr-field textarea {
	font-family: var(--sans);
	font-size: 16px; /* 16px keeps iOS from zooming on focus */
	color: var(--ink);
	padding: 13px 15px;
	border-radius: var(--r-sm);
	border: 1px solid var(--line-40);
	background: var(--field);
	outline: none;
	width: 100%;
}
.ehr-field textarea { min-height: 120px; resize: vertical; }
.ehr-field input:focus,
.ehr-field select:focus,
.ehr-field textarea:focus { border-color: var(--blue); background: var(--white); }
.ehr-form .ehr-btn { margin-top: 24px; }
.ehr-form__note { font-size: 13.5px; line-height: 1.65; color: var(--blue); margin: 18px 0 0; }
.ehr-form__hp { position: absolute; left: -9999px; }
.ehr-form__status {
	display: none;
	margin: 0 0 20px;
	padding: 14px 16px;
	border-radius: var(--r-sm);
	background: rgba(157, 176, 154, 0.18);
	border: 1px solid var(--sage-line);
	color: var(--navy);
	font-size: 15px;
}
.ehr-form.is-sent .ehr-form__status { display: block; }

/* ------------------------------------------------------------- footer --- */

.ehr-footer {
	background: var(--navy);
	color: var(--on-navy);
	padding: 66px var(--pad) 34px;
	position: relative;
	overflow: hidden;
}
.ehr-footer__texture {
	position: absolute;
	inset: 0;
	background-image: repeating-radial-gradient(circle at 20% 130%, rgba(244, 241, 234, 0.13) 0 1px, rgba(244, 241, 234, 0) 1px 22px);
}
.ehr-footer__inner { position: relative; max-width: var(--wrap); margin: 0 auto; }
.ehr-footer__cols {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 44px;
	border-bottom: 1px solid var(--on-navy-line);
}
.ehr-footer__brand .ehr-lockup { margin-bottom: 20px; }
.ehr-footer__address,
.ehr-footer__hours { font-size: 15px; line-height: 1.8; margin: 0; }
.ehr-footer__hours { margin-top: 14px; }
.ehr-footer__heading {
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--on-navy-label);
	margin: 0 0 16px;
	font-weight: 500;
}
.ehr-footer__links {
	display: grid;
	gap: 11px;
	font-size: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ehr-footer__links a { color: var(--on-navy); }
.ehr-footer__links a:hover { color: var(--cream); }
.ehr-footer__phone {
	font-family: var(--serif);
	font-size: 26px;
	color: var(--cream);
}
.ehr-footer__crisis { font-size: 14.5px; line-height: 1.7; margin: 14px 0 0; }
.ehr-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding-top: 26px;
	font-size: 13px;
	color: var(--on-navy-dim);
	line-height: 1.7;
}
.ehr-footer__legal p { margin: 0; }
.ehr-footer__legal p:first-child { max-width: 720px; }

/* ------------------------------------------------------- level detail --- */

.ehr-level__top { padding: 90px var(--pad) 80px; }
.ehr-level__top-inner {
	max-width: var(--wrap);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 64px;
	align-items: start;
}
.ehr-level__headline { font-size: 38px; line-height: 1.18; margin: 14px 0 22px; }
.ehr-level__intro { font-size: 18px; line-height: 1.85; margin: 0 0 30px; }
.ehr-level__sub { font-weight: 500; font-size: 22px; margin: 0 0 16px; }

.ehr-glance {
	background: var(--white);
	border: 1px solid var(--line-18);
	border-radius: var(--r-xl);
	padding: 34px 34px 30px;
	box-shadow: var(--sh-aside);
}
.ehr-glance h2 { font-weight: 500; font-size: 21px; margin: 0 0 22px; }
.ehr-glance__facts { display: grid; gap: 18px; }
.ehr-fact {
	display: grid;
	gap: 4px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--line-18);
}
.ehr-fact__k {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--blue);
}
.ehr-fact__v { font-size: 17px; color: var(--ink); line-height: 1.5; }
.ehr-glance__buttons { display: grid; gap: 12px; margin-top: 24px; }

.ehr-day__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 64px;
	align-items: center;
}
.ehr-day h2 { font-size: 34px; margin: 14px 0 26px; }
.ehr-day__row {
	display: grid;
	grid-template-columns: 108px 1fr;
	gap: 22px;
	padding: 16px 0;
	border-top: 1px solid var(--line-20);
}
.ehr-day__time { font-family: var(--mono); font-size: 13px; color: var(--blue); padding-top: 3px; }
.ehr-day__label { font-size: 16.5px; line-height: 1.6; }
.ehr-day__photo {
	width: 100%;
	height: 440px;
	object-fit: cover;
	border-radius: var(--r-xl);
	border: 1px solid var(--line-28);
	display: block;
}

.ehr-included h2 { font-size: 34px; margin: 0 0 32px; }
.ehr-included__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.ehr-included__card {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-md);
	padding: 24px 26px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.ehr-included__card .ehr-leaf { margin-top: 8px; }
.ehr-included__card h3 { font-weight: 500; font-size: 19px; margin: 0 0 6px; }
.ehr-included__card p { font-size: 15.5px; line-height: 1.65; margin: 0; }

.ehr-compare__inner {
	max-width: var(--wrap);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
}
.ehr-compare h2 { font-size: 32px; margin: 0 0 24px; }
.ehr-compare__cards { display: grid; gap: 18px; }
.ehr-compare__card {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--line-20);
	border-radius: var(--r-md);
	padding: 24px 26px;
}
.ehr-compare__card h3 { font-weight: 500; font-size: 20px; margin: 0 0 8px; }
.ehr-compare__card p { font-size: 16px; line-height: 1.7; margin: 0; }

.ehr-path { display: grid; gap: 16px; }
.ehr-path__row {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 18px;
	align-items: start;
}
.ehr-path__n {
	width: 46px;
	height: 46px;
	border-radius: var(--pill);
	background: var(--white);
	border: 1px solid var(--sage-line);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--mono);
	font-size: 13px;
	color: var(--blue);
}
.ehr-path__row h3 { font-weight: 500; font-size: 20px; margin: 6px 0 6px; }
.ehr-path__row p { font-size: 16px; line-height: 1.7; margin: 0; }
.ehr-insnote {
	margin-top: 30px;
	background: var(--white);
	border: 1px solid var(--line-22);
	border-radius: var(--r-md);
	padding: 26px 28px;
}
.ehr-insnote h3 { font-weight: 500; font-size: 19px; margin: 0 0 8px; }
.ehr-insnote p { font-size: 16px; line-height: 1.7; margin: 0 0 16px; }

/* ----------------------------------------------------------- programs --- */

/* Centred statement that opens several interior pages. */
.ehr-statement { padding: 86px var(--pad) 40px; }
.ehr-statement__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.ehr-statement h2 { font-size: 38px; line-height: 1.2; margin: 0 0 22px; }
.ehr-statement p { font-size: 18.5px; line-height: 1.85; margin: 0 0 18px; }
.ehr-statement p:last-child { margin-bottom: 0; }

.ehr-continuum { padding: 40px 0 84px; }
.ehr-continuum__panel {
	background: var(--white);
	border: 1px solid var(--line-18);
	border-radius: 22px;
	padding: 46px 44px 40px;
	box-shadow: var(--sh-aside);
}
.ehr-continuum__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}
.ehr-continuum__note { font-size: 14.5px; color: var(--blue); }
.ehr-continuum__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	align-items: end;
	margin-bottom: 18px;
}
.ehr-continuum__item { display: block; }
.ehr-continuum__bar {
	display: block;
	height: 10px;
	border-radius: var(--pill);
	background: var(--blue);
	margin-bottom: 14px;
	opacity: 0.85;
}
.ehr-continuum__item .ehr-tag { display: block; margin-bottom: 8px; }
.ehr-continuum__title {
	display: block;
	font-family: var(--serif);
	font-size: 21px;
	color: var(--navy);
	margin-bottom: 8px;
}
.ehr-continuum__hours { display: block; font-size: 15px; line-height: 1.6; }
.ehr-continuum__rule {
	height: 1px;
	background: linear-gradient(90deg, rgba(35, 74, 99, 0.55), rgba(157, 176, 154, 0.5));
}

.ehr-proglist { padding: 0 0 96px; }
.ehr-proglist__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.ehr-progcard {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-xl);
	padding: 34px 36px 32px;
	box-shadow: var(--sh-card);
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ehr-progcard:hover { box-shadow: 0 18px 42px rgba(35, 74, 99, 0.13); transform: translateY(-3px); }
.ehr-progcard h2 { font-weight: 500; font-size: 27px; margin: 14px 0 12px; }
.ehr-progcard > p { font-size: 16.5px; line-height: 1.75; margin: 0 0 20px; }
.ehr-progcard__who {
	background: var(--cream);
	border-radius: 14px;
	padding: 18px 20px;
	margin-bottom: 24px;
	font-size: 15.5px;
	line-height: 1.65;
}
.ehr-progcard__who-label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 7px;
}
.ehr-progcard__foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid var(--line-20);
	padding-top: 18px;
	font-size: 14.5px;
	color: var(--blue);
}

/* "Across every level" — therapies sit beside the continuum, not inside it. */
.ehr-crosscut__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.ehr-crosscut h2 { font-size: 32px; line-height: 1.2; margin: 14px 0 18px; }
.ehr-crosscut p { font-size: 17px; line-height: 1.8; margin: 0 0 24px; max-width: 520px; }
.ehr-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ehr-chip {
	background: var(--white);
	border: 1px solid var(--line-22);
	border-radius: var(--pill);
	padding: 10px 18px;
	font-size: 15px;
	line-height: 1.3;
	color: var(--navy);
}

.ehr-helpband {
	background: var(--white);
	border-top: 1px solid var(--line-16);
	border-bottom: 1px solid var(--line-16);
	padding: 76px var(--pad);
}
.ehr-helpband__inner {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}
.ehr-helpband h2 { font-size: 34px; margin: 0 0 12px; }
.ehr-helpband p { font-size: 17.5px; line-height: 1.75; margin: 0; max-width: 520px; }
.ehr-helpband .ehr-btn { white-space: nowrap; }

/* --------------------------------------------------------- alumni ------ */

.ehr-events {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.ehr-event {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-card);
}
.ehr-event__photo { width: 100%; height: 190px; object-fit: cover; display: block; }
.ehr-event__body { padding: 26px 28px 28px; }
.ehr-event__when {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.12em;
	color: var(--sage);
}
.ehr-event h3 { font-weight: 500; font-size: 22px; margin: 12px 0 10px; }
.ehr-event p { font-size: 15.5px; line-height: 1.7; margin: 0; }

/* ------------------------------------------------ therapies & wellness --- */

/* Left-aligned opening paragraph (Therapies). */
.ehr-lede { padding: 86px var(--pad) 70px; }
.ehr-lede__inner { max-width: 860px; margin: 0 auto; }
.ehr-lede p { font-size: 19px; line-height: 1.85; margin: 0 0 18px; }
.ehr-lede p:last-child { margin-bottom: 0; }

.ehr-modgrid { padding: 0 0 90px; }
.ehr-modgrid__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.ehr-modcard {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-xl);
	padding: 30px 30px 32px;
	box-shadow: 0 12px 30px rgba(35, 74, 99, 0.06);
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ehr-modcard:hover { box-shadow: 0 18px 40px rgba(35, 74, 99, 0.12); transform: translateY(-3px); }
.ehr-modcard__icon {
	display: block;
	width: 34px;
	height: 34px;
	border-radius: var(--pill);
	background: var(--cream);
	border: 1px solid rgba(157, 176, 154, 0.6);
	margin-bottom: 18px;
}
.ehr-modcard h2 { font-weight: 500; font-size: 22px; margin: 0 0 10px; }
.ehr-modcard p { font-size: 16px; line-height: 1.7; margin: 0 0 18px; }
.ehr-modcard__where {
	margin-top: auto;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--blue);
	border-top: 1px solid var(--line-20);
	padding-top: 14px;
}

.ehr-wellness__inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 64px;
	align-items: center;
}
.ehr-wellness h2 { font-size: 40px; line-height: 1.18; margin: 14px 0 22px; }
.ehr-wellness p { font-size: 17.5px; line-height: 1.85; margin: 0 0 18px; }
.ehr-wellness .ehr-bullets { margin-top: 30px; gap: 14px; }
.ehr-wellness__photo {
	border-radius: var(--r-xl);
	height: 520px;
	border: 1px solid var(--line-28);
	background-size: cover;
	background-position: center;
}
.ehr-helpband__buttons { display: grid; gap: 12px; }
.ehr-helpband__buttons .ehr-btn { white-space: nowrap; }

/* ------------------------------------------------------------- about --- */

.ehr-story { padding: 90px 0 80px; }
.ehr-story__inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 68px;
	align-items: start;
}
.ehr-story h2 { font-size: 38px; line-height: 1.2; margin: 14px 0 24px; }
.ehr-story p { font-size: 17.5px; line-height: 1.85; margin: 0 0 18px; }
.ehr-story p:last-child { margin-bottom: 0; }
.ehr-story__photo {
	border-radius: var(--r-xl);
	height: 520px;
	border: 1px solid var(--line-28);
	background-size: cover;
	background-position: center 35%;
}

.ehr-values__heading { font-size: 34px; margin: 0 0 40px; text-align: center; }
.ehr-values__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.ehr-values__icon {
	display: block;
	width: 36px;
	height: 36px;
	border-radius: var(--pill);
	background: var(--cream);
	border: 1px solid rgba(157, 176, 154, 0.6);
	margin-bottom: 18px;
}
.ehr-values__grid h3 { font-weight: 500; font-size: 21px; margin: 0 0 10px; }
.ehr-values__grid p { font-size: 16px; line-height: 1.7; margin: 0; }

.ehr-localroots__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-bottom: 46px;
}
.ehr-localroots__photo {
	border-radius: var(--r-xl);
	height: 440px;
	border: 1px solid var(--line-28);
	background-size: cover;
	background-position: center;
}
.ehr-localroots h2 { font-size: 38px; line-height: 1.18; margin: 14px 0 22px; }
.ehr-localroots p { font-size: 17.5px; line-height: 1.85; margin: 0 0 18px; }
.ehr-localroots p:last-child { margin-bottom: 0; }
.ehr-facility {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.ehr-facility img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: var(--r-lg);
	border: 1px solid rgba(91, 129, 153, 0.26);
	display: block;
}

.ehr-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.ehr-person {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(35, 74, 99, 0.06);
}
.ehr-person__photo {
	width: 100%;
	height: 240px;
	object-fit: cover;
	object-position: center 30%;
	display: block;
}
/* Shown where a photograph is still to be supplied. Matches the dashed
   placeholder language the design uses for accreditation and insurer tiles. */
.ehr-photo-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 1px dashed rgba(91, 129, 153, 0.5);
	background-image: repeating-linear-gradient(135deg, rgba(91, 129, 153, 0.09) 0 8px, rgba(91, 129, 153, 0.02) 8px 16px);
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--blue);
}
.ehr-person__body { padding: 24px 26px 26px; }
.ehr-person h3 { font-weight: 500; font-size: 20px; margin: 0 0 6px; }
.ehr-person__creds {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--blue);
	margin: 0 0 12px;
}
.ehr-person__body p:last-child { font-size: 15.5px; line-height: 1.65; margin: 0; }

/* -------------------------------------------------------- admissions --- */

.ehr-admsteps { padding: 0 0 92px; }
.ehr-admsteps__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.ehr-admstep {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-xl);
	padding: 30px 28px 32px;
	box-shadow: 0 12px 30px rgba(35, 74, 99, 0.06);
}
.ehr-admstep h2 { font-weight: 500; font-size: 21px; margin: 14px 0 10px; }
.ehr-admstep p { font-size: 15.5px; line-height: 1.7; margin: 0 0 16px; }
.ehr-admstep__time { font-size: 13.5px; color: var(--blue); }

.ehr-expect__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
}
.ehr-expect h2 { font-size: 34px; margin: 14px 0 24px; }
.ehr-expect .ehr-bullets { gap: 14px; }
.ehr-bullets--blue .ehr-leaf { background: var(--blue); }
.ehr-reassure {
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--blue);
	background: var(--cream);
	border-radius: 14px;
	padding: 20px 22px;
	margin: 24px 0 0;
}

.ehr-faqs { padding: 92px var(--pad); }
.ehr-faqs__inner { max-width: 900px; margin: 0 auto; }
.ehr-faqs__heading { font-size: 38px; margin: 0 0 34px; }
.ehr-faqs__list { display: grid; gap: 12px; }
.ehr-faq {
	background: var(--white);
	border: 1px solid var(--line-18);
	border-radius: var(--r-md);
	overflow: hidden;
}
.ehr-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 28px;
	cursor: pointer;
	font-family: var(--serif);
	font-size: 20px;
	color: var(--navy);
	list-style: none;
}
.ehr-faq summary::-webkit-details-marker { display: none; }
.ehr-faq__sign {
	font-family: var(--mono);
	font-size: 18px;
	color: var(--sage);
	flex: none;
	line-height: 1;
}
.ehr-faq__sign::before { content: '+'; }
.ehr-faq[open] .ehr-faq__sign::before { content: '–'; }
.ehr-faq p {
	font-size: 16.5px;
	line-height: 1.8;
	margin: 0;
	padding: 0 28px 26px;
	max-width: 700px;
}
.ehr-faqs__buttons { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* --------------------------------------------------------- insurance --- */

.ehr-insurers { padding: 78px 0 60px; }
.ehr-insurers__label { margin: 0 0 24px; }
.ehr-insurers__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}
.ehr-insurer {
	min-height: 76px;
	border-radius: 12px;
	border: 1px dashed rgba(91, 129, 153, 0.5);
	background-image: repeating-linear-gradient(135deg, rgba(91, 129, 153, 0.09) 0 8px, rgba(91, 129, 153, 0.02) 8px 16px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--mono);
	font-size: 11px;
	color: var(--navy);
	padding: 8px;
}
.ehr-insurers__note { font-size: 15.5px; line-height: 1.75; color: var(--blue); margin: 22px 0 0; }

.ehr-verify { padding: 40px 0 92px; }
.ehr-verify__inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 60px;
	align-items: start;
}
.ehr-verify__heading { font-size: 36px; line-height: 1.2; margin: 0 0 22px; }
.ehr-verify__body { font-size: 17.5px; line-height: 1.85; margin: 0 0 18px; }
.ehr-verify__cards { display: grid; gap: 16px; margin-top: 30px; }
.ehr-verify__card {
	background: var(--white);
	border: 1px solid var(--line-18);
	border-radius: var(--r-md);
	padding: 24px 26px;
}
.ehr-verify__card h3 { font-weight: 500; font-size: 20px; margin: 0 0 8px; }
.ehr-verify__card p { font-size: 16px; line-height: 1.7; margin: 0; }

/* Wider form variant used on Insurance and Contact. */
.ehr-form--wide {
	border-radius: 22px;
	padding: 40px 42px 36px;
	box-shadow: 0 18px 44px rgba(35, 74, 99, 0.1);
}
.ehr-form__heading--lg { font-size: 27px; margin: 0 0 8px; }
.ehr-form__intro { font-size: 15.5px; line-height: 1.7; color: var(--blue); margin: 0 0 26px; }
.ehr-form__fields--2col { grid-template-columns: 1fr 1fr; }
.ehr-privacy {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-top: 22px;
	background: var(--cream);
	border-radius: 14px;
	padding: 20px 22px;
}
.ehr-privacy .ehr-leaf { margin-top: 7px; }
.ehr-privacy p { font-size: 14.5px; line-height: 1.7; color: var(--navy); margin: 0; }

/* --------------------------------------------------------- resources --- */

.ehr-crisis { padding: 62px 0 40px; }
.ehr-crisis__panel {
	background: var(--white);
	border: 2px solid var(--sage);
	border-radius: 22px;
	padding: 38px 42px;
	box-shadow: var(--sh-form);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
}
.ehr-crisis__copy { max-width: 480px; }
.ehr-crisis__copy h2 { font-size: 32px; line-height: 1.2; margin: 12px 0; }
.ehr-crisis__copy p { font-size: 16.5px; line-height: 1.75; margin: 0; }
.ehr-crisis__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	flex: 1;
}
.ehr-crisisline { background: var(--cream); border-radius: 14px; padding: 20px 22px; }
.ehr-crisisline__label {
	display: block;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
}
.ehr-crisisline__number {
	display: block;
	font-family: var(--serif);
	font-size: 24px;
	color: var(--navy);
	margin-bottom: 6px;
}
.ehr-crisisline__note { display: block; font-size: 14.5px; line-height: 1.6; }

.ehr-articles { padding: 66px 0 90px; }
.ehr-articles__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
.ehr-article {
	background: var(--white);
	border: 1px solid var(--line-16);
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(35, 74, 99, 0.06);
	display: flex;
	color: var(--ink);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
a.ehr-article:hover { box-shadow: 0 18px 42px rgba(35, 74, 99, 0.12); transform: translateY(-3px); color: var(--ink); }
.ehr-article__photo {
	width: 190px;
	flex: none;
	object-fit: cover;
	align-self: stretch;
	display: block;
}
.ehr-article__body { padding: 28px 30px 26px; }
.ehr-article__tag {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	color: var(--sage);
}
.ehr-article h3 { font-weight: 500; font-size: 22px; line-height: 1.3; margin: 12px 0 10px; }
.ehr-article p { font-size: 15.5px; line-height: 1.7; margin: 0 0 16px; }
.ehr-article__read { font-size: 14.5px; color: var(--blue); }

.ehr-family__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
}
.ehr-family h2 { font-size: 34px; line-height: 1.2; margin: 14px 0 20px; }
.ehr-family__body { font-size: 17px; line-height: 1.85; margin: 0 0 24px; }
.ehr-family .ehr-bullets { gap: 14px; }
.ehr-family__link { display: inline-block; margin-top: 26px; }
.ehr-guides { display: grid; gap: 14px; }
.ehr-guide {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: var(--cream);
	border: 1px solid var(--line-22);
	border-radius: var(--r-md);
	padding: 22px 24px;
}
a.ehr-guide:hover { background: var(--cream-2); color: var(--navy); }
.ehr-guide__title {
	display: block;
	font-family: var(--serif);
	font-size: 19px;
	color: var(--navy);
	margin-bottom: 5px;
}
.ehr-guide__body { display: block; font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.ehr-guide__meta { font-family: var(--mono); font-size: 11px; color: var(--blue); flex: none; }

/* ----------------------------------------------------------- contact --- */

.ehr-contact { padding: 82px 0 90px; }
.ehr-contact__inner {
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 60px;
	align-items: start;
}
.ehr-callcard--lg { border-radius: var(--r-lg); padding: 26px 32px; margin-bottom: 28px; }
.ehr-callcard--lg .ehr-callcard__number { font-size: 38px; }
.ehr-detaillist { display: grid; gap: 22px; margin-bottom: 30px; }
.ehr-detail {
	display: grid;
	gap: 5px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line-22);
}
.ehr-detail__k {
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--blue);
}
.ehr-detail__v { font-size: 17px; line-height: 1.6; }
.ehr-area {
	background: var(--white);
	border: 1px solid var(--line-20);
	border-radius: var(--r-md);
	padding: 24px 26px;
}
.ehr-area h2 { font-weight: 500; font-size: 19px; margin: 0 0 8px; }
.ehr-area p { font-size: 15.5px; line-height: 1.75; margin: 0; }
.ehr-map {
	border-radius: var(--r-xl);
	overflow: hidden;
	height: 300px;
	border: 1px solid var(--line-28);
	margin-top: 24px;
}
.ehr-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.ehr-map--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-image:
		repeating-linear-gradient(90deg, rgba(91, 129, 153, 0.12) 0 22px, rgba(157, 176, 154, 0.08) 22px 44px),
		repeating-linear-gradient(0deg, rgba(91, 129, 153, 0.12) 0 22px, rgba(157, 176, 154, 0.08) 22px 44px);
}
.ehr-map--placeholder span {
	font-family: var(--mono);
	font-size: 11.5px;
	color: var(--navy);
	background: rgba(244, 241, 234, 0.9);
	padding: 9px 14px;
	border-radius: 6px;
	text-align: center;
}

/* ----------------------------------------------------------- fallback --- */

.ehr-prose { max-width: 780px; margin: 0 auto; padding: 80px var(--pad); }
.ehr-prose h1 { font-size: 44px; line-height: 1.15; margin: 0 0 24px; }
.ehr-prose h2 { font-size: 30px; margin: 40px 0 14px; }
.ehr-prose h3 { font-size: 23px; font-weight: 500; margin: 32px 0 12px; }
.ehr-prose p,
.ehr-prose li { font-size: 17.5px; line-height: 1.8; }
.ehr-prose img { border-radius: var(--r-md); }

/* --------------------------------------------------------- responsive --- */

@media (max-width: 1180px) {
	:root { --pad: 28px; }

	.ehr-hero__title { font-size: 52px; }
	.ehr-banner__title { font-size: 42px; }
	.ehr-intro h2 { font-size: 38px; }
	.ehr-section__head h2,
	.ehr-section__head--center h2,
	.ehr-roots h2 { font-size: 34px; }

	.ehr-levels__grid { grid-template-columns: repeat(2, 1fr); }
	.ehr-modalities,
	.ehr-included__grid { grid-template-columns: repeat(2, 1fr); }
	.ehr-cta__inner { gap: 44px; }
	.ehr-level__top-inner { gap: 40px; }
	.ehr-day__inner { gap: 40px; }
	.ehr-compare__inner { gap: 40px; }

	.ehr-statement h2 { font-size: 32px; }
	.ehr-continuum__panel { padding: 34px 30px 30px; }
	.ehr-events { grid-template-columns: repeat(2, 1fr); }

	.ehr-modgrid__grid,
	.ehr-values__grid,
	.ehr-team__grid,
	.ehr-admsteps__grid { grid-template-columns: repeat(2, 1fr); }
	.ehr-insurers__grid { grid-template-columns: repeat(3, 1fr); }
	.ehr-article__photo { width: 150px; }
	.ehr-crisis__panel { gap: 32px; padding: 32px 30px; }
	.ehr-wellness__inner,
	.ehr-story__inner,
	.ehr-localroots__inner,
	.ehr-expect__inner,
	.ehr-verify__inner,
	.ehr-family__inner,
	.ehr-contact__inner { gap: 40px; }
	.ehr-wellness__photo,
	.ehr-story__photo { height: 440px; }
	.ehr-form--wide { padding: 32px 30px 28px; }
}

/* Tablet and below: the design is desktop-only, so everything stacks. */
@media (max-width: 1023px) {
	.ehr-header__inner { gap: 16px; flex-wrap: wrap; }
	.ehr-burger { display: block; }

	.ehr-nav {
		display: none;
		order: 3;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px 0 18px;
		border-top: 1px solid var(--line-22);
	}
	.ehr-nav.is-open { display: flex; }
	.ehr-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.ehr-nav__list li { border-bottom: 1px solid var(--line-16); }
	.ehr-nav__list a { display: block; padding: 14px 2px; font-size: 17px; }

	/* In the drawer the submenu is an accordion. The parent keeps its own
	   tappable link — only the caret opens the list. */
	.ehr-nav__list .menu-item-has-children {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.ehr-nav__list .menu-item-has-children > a { flex: 1; }
	.ehr-subtoggle {
		width: 46px;
		height: 46px;
		margin-left: 0;
		flex: none;
	}
	.ehr-caret { width: 8px; height: 8px; }

	.ehr-nav__list .sub-menu {
		position: static;
		width: 100%;
		min-width: 0;
		flex-basis: 100%;
		margin: 0 0 10px;
		padding: 4px 0 4px 16px;
		border: 0;
		border-left: 1px solid var(--sage-line);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}
	.ehr-nav__list .sub-menu::before { content: none; }
	/* Hover must not open it on touch — only the button does. */
	.ehr-nav__list li:hover > .sub-menu { display: none; }
	.ehr-nav__list .sub-menu.is-open { display: block; }
	.ehr-nav__list .sub-menu li { border-bottom: 0; }
	.ehr-nav__list .sub-menu a { padding: 11px 2px; font-size: 16px; }
	.ehr-nav__list .sub-menu a:hover,
	.ehr-nav__list .sub-menu a:focus-visible { background: transparent; }
	.ehr-nav__actions {
		margin-left: 0;
		margin-top: 18px;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}
	.ehr-nav__actions .ehr-btn { padding: 14px 20px; font-size: 16px; }
	.ehr-phone { align-items: center; }

	.ehr-hero { min-height: 0; }
	.ehr-hero__inner { padding: 72px var(--pad); }
	.ehr-hero__veil {
		background: linear-gradient(100deg, rgba(244, 241, 234, 0.96) 0%, rgba(244, 241, 234, 0.86) 55%, rgba(244, 241, 234, 0.55) 100%);
	}

	.ehr-trust__inner { flex-direction: column; align-items: stretch; gap: 20px; }
	.ehr-trust__badges { flex-wrap: wrap; }
	.ehr-badge { flex: 1 1 180px; }
	.ehr-trust__note {
		padding-left: 0;
		padding-top: 18px;
		border-left: 0;
		border-top: 1px solid var(--line-22);
		max-width: none;
	}

	.ehr-section,
	.ehr-section--tight,
	.ehr-proof,
	.ehr-cta,
	.ehr-level__top { padding: 68px var(--pad); }
	.ehr-intro { padding: 72px var(--pad) 64px; }
	.ehr-levels { padding: 8px var(--pad) 68px; }

	.ehr-section__head { flex-direction: column; align-items: flex-start; gap: 18px; }
	.ehr-section__head p { max-width: none; }

	.ehr-approach__grid { grid-template-columns: 1fr; gap: 34px; }
	.ehr-roots__inner,
	.ehr-cta__inner,
	.ehr-level__top-inner,
	.ehr-day__inner,
	.ehr-compare__inner { grid-template-columns: 1fr; }
	.ehr-roots__photo { height: 320px; }
	.ehr-quotes,
	.ehr-stats,
	.ehr-steps { grid-template-columns: 1fr; }
	.ehr-day__photo { height: 320px; }
	.ehr-navyband { flex-direction: column; align-items: flex-start; gap: 22px; padding: 30px 32px; }

	.ehr-footer__cols { grid-template-columns: 1fr 1fr; gap: 36px; }
	.ehr-footer__legal { flex-direction: column; align-items: flex-start; gap: 12px; }

	.ehr-statement { padding: 60px var(--pad) 30px; }
	.ehr-continuum { padding: 30px 0 60px; }
	.ehr-continuum__head { flex-direction: column; align-items: flex-start; gap: 8px; }
	.ehr-continuum__grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
	.ehr-proglist { padding: 0 0 60px; }
	.ehr-proglist__grid { grid-template-columns: 1fr; }
	.ehr-crosscut__inner { grid-template-columns: 1fr; gap: 30px; }
	.ehr-crosscut h2 { font-size: 28px; }
	.ehr-crosscut p { max-width: none; }
	.ehr-helpband { padding: 56px var(--pad); }
	.ehr-helpband__inner { flex-direction: column; align-items: flex-start; gap: 26px; }
	.ehr-helpband p { max-width: none; }
	.ehr-helpband__buttons { grid-auto-flow: column; }

	.ehr-lede { padding: 60px var(--pad) 40px; }
	.ehr-modgrid { padding: 0 0 60px; }
	.ehr-story { padding: 60px 0 56px; }
	.ehr-admsteps { padding: 0 0 60px; }
	.ehr-faqs { padding: 60px var(--pad); }
	.ehr-insurers { padding: 56px 0 40px; }
	.ehr-verify { padding: 24px 0 60px; }
	.ehr-crisis { padding: 44px 0 30px; }
	.ehr-articles { padding: 48px 0 60px; }
	.ehr-contact { padding: 56px 0 60px; }

	.ehr-wellness__inner,
	.ehr-story__inner,
	.ehr-localroots__inner,
	.ehr-expect__inner,
	.ehr-verify__inner,
	.ehr-family__inner,
	.ehr-contact__inner { grid-template-columns: 1fr; }
	.ehr-wellness__photo,
	.ehr-story__photo,
	.ehr-localroots__photo { height: 320px; }
	.ehr-facility img { height: 170px; }
	.ehr-crisis__panel { flex-direction: column; }
	.ehr-articles__grid { grid-template-columns: 1fr; }
	.ehr-faqs__heading,
	.ehr-values__heading { font-size: 28px; }
	.ehr-expect h2,
	.ehr-family h2,
	.ehr-verify__heading,
	.ehr-wellness h2,
	.ehr-story h2,
	.ehr-localroots h2 { font-size: 28px; }
}

@media (max-width: 639px) {
	:root { --pad: 20px; }

	.ehr-hero__title { font-size: 38px; }
	.ehr-hero__body { font-size: 18px; }
	.ehr-banner__title { font-size: 32px; }
	.ehr-banner__sub { font-size: 17px; }
	.ehr-intro h2 { font-size: 30px; }
	.ehr-intro p { font-size: 17.5px; }
	.ehr-section__head h2,
	.ehr-section__head--center h2,
	.ehr-roots h2,
	.ehr-cta__heading,
	.ehr-level__headline { font-size: 28px; }
	.ehr-day h2,
	.ehr-included h2,
	.ehr-compare h2 { font-size: 26px; }
	.ehr-callcard__number { font-size: 28px; }

	.ehr-levels__grid,
	.ehr-modalities,
	.ehr-included__grid { grid-template-columns: 1fr; }
	.ehr-hero__buttons { flex-direction: column; align-items: stretch; }
	.ehr-hero__buttons .ehr-btn { width: 100%; }
	.ehr-cta__buttons .ehr-btn { flex: 1 1 100%; }
	.ehr-quote { padding: 28px 26px 24px; }
	.ehr-quote blockquote { font-size: 20px; }
	.ehr-form { padding: 28px 24px 26px; }
	.ehr-day__row { grid-template-columns: 1fr; gap: 4px; }
	.ehr-roots__stats { flex-direction: column; gap: 22px; }
	.ehr-footer__cols { grid-template-columns: 1fr; }

	.ehr-statement h2 { font-size: 27px; }
	.ehr-statement p { font-size: 17px; }
	.ehr-continuum__grid { grid-template-columns: 1fr; gap: 22px; }
	.ehr-continuum__panel { padding: 26px 22px 24px; }
	.ehr-progcard { padding: 26px 24px 24px; }
	.ehr-progcard h2 { font-size: 23px; }
	.ehr-helpband h2 { font-size: 26px; }
	.ehr-helpband .ehr-btn { width: 100%; }
	.ehr-helpband__buttons { grid-auto-flow: row; width: 100%; }
	.ehr-events { grid-template-columns: 1fr; }

	.ehr-modgrid__grid,
	.ehr-values__grid,
	.ehr-team__grid,
	.ehr-admsteps__grid,
	.ehr-facility,
	.ehr-crisis__grid,
	.ehr-form__fields--2col { grid-template-columns: 1fr; }
	.ehr-insurers__grid { grid-template-columns: repeat(2, 1fr); }
	.ehr-lede p { font-size: 17.5px; }
	.ehr-article { flex-direction: column; }
	.ehr-article__photo { width: 100%; height: 190px; }
	.ehr-crisis__panel { padding: 26px 22px; }
	.ehr-crisis__copy h2 { font-size: 26px; }
	.ehr-faq summary { font-size: 18px; padding: 20px 22px; }
	.ehr-faq p { padding: 0 22px 22px; }
	.ehr-faqs__buttons .ehr-btn { width: 100%; }
	.ehr-form--wide { padding: 26px 22px 24px; }
	.ehr-form__heading--lg { font-size: 23px; }
	.ehr-guide { flex-direction: column; align-items: flex-start; gap: 10px; }
	.ehr-callcard--lg .ehr-callcard__number { font-size: 30px; }
	.ehr-map { height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
	.ehr-level-card:hover { transform: none; }
}
