:root {
	--ehf-navy: #082f49;
	--ehf-navy-deep: #06243a;
	--ehf-blue: #0b6b8f;
	--ehf-cyan: #cbeff2;
	--ehf-cyan-soft: #effafb;
	--ehf-coral: #e85572;
	--ehf-coral-dark: #bd304f;
	--ehf-ink: #17242d;
	--ehf-muted: #52636d;
	--ehf-line: #d9e5e8;
	--ehf-white: #ffffff;
	--ehf-shadow: 0 22px 70px rgba(6, 47, 73, 0.11);
	--ehf-radius: 1.25rem;
	--ehf-container: min(1120px, calc(100% - 2rem));
}

.ehf-front-page .content-area,
.ehf-front-page .site-main,
.ehf-front-page .entry-content {
	margin: 0;
	padding: 0;
	max-width: none;
}

.ehf-front-page .site-content {
	padding: 0;
}

.ehf-home,
.ehf-home * {
	box-sizing: border-box;
}

.ehf-home {
	overflow: clip;
	color: var(--ehf-ink);
	background: var(--ehf-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1rem;
	line-height: 1.7;
}

.ehf-home :where(h1, h2, h3, p, ul) {
	margin-top: 0;
}

.ehf-home :where(h1, h2, h3) {
	color: var(--ehf-navy);
	font-family: "DM Serif Display", Georgia, serif;
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.ehf-home h1 {
	max-width: 10ch;
	margin-bottom: 1.35rem;
	color: var(--ehf-white);
	font-size: clamp(3.35rem, 8vw, 6.7rem);
	line-height: 0.94;
}

.ehf-home h2 {
	margin-bottom: 1.25rem;
	font-size: clamp(2.25rem, 5vw, 4rem);
}

.ehf-home h3 {
	margin-bottom: 0.9rem;
	font-size: clamp(1.65rem, 2.6vw, 2.1rem);
}

.ehf-home a {
	color: var(--ehf-blue);
	text-decoration-thickness: 0.1em;
	text-underline-offset: 0.18em;
}

.ehf-home a:focus-visible,
.ehf-home summary:focus-visible {
	outline: 3px solid #f7be4b;
	outline-offset: 4px;
}

.ehf-container {
	width: var(--ehf-container);
	margin-inline: auto;
}

.ehf-section {
	padding: clamp(4.5rem, 9vw, 8rem) 0;
	scroll-margin-top: 7rem;
}

.ehf-section--tint {
	background: var(--ehf-cyan-soft);
}

.ehf-kicker,
.ehf-eyebrow {
	margin-bottom: 1rem;
	color: var(--ehf-coral-dark);
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ehf-kicker--light {
	color: #aee9ee;
}

.ehf-prose > *:last-child,
.ehf-section-heading > *:last-child {
	margin-bottom: 0;
}

.ehf-prose {
	color: var(--ehf-muted);
	font-size: 1.05rem;
}

.ehf-prose--large {
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.ehf-hero {
	position: relative;
	isolation: isolate;
	min-height: min(780px, 88vh);
	display: grid;
	align-items: center;
	background: var(--ehf-navy-deep);
}

.ehf-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(4, 28, 45, 0.96) 0%, rgba(4, 37, 58, 0.87) 42%, rgba(4, 37, 58, 0.28) 78%, rgba(4, 37, 58, 0.18) 100%),
		linear-gradient(0deg, rgba(4, 29, 45, 0.45), transparent 48%);
	content: "";
}

.ehf-hero::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	width: 42%;
	height: 0.42rem;
	background: var(--ehf-coral);
	content: "";
}

.ehf-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.ehf-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 65% center;
}

.ehf-hero__inner {
	position: relative;
	z-index: 1;
	padding-block: clamp(5rem, 10vw, 8rem);
}

.ehf-hero__content {
	max-width: 640px;
}

.ehf-eyebrow {
	color: #b9f0f2;
}

.ehf-hero__lead {
	max-width: 610px;
	margin-bottom: 2rem;
	color: #f7fbfc;
	font-size: clamp(1.08rem, 2vw, 1.35rem);
	line-height: 1.6;
}

.ehf-hero__note {
	margin: 1.25rem 0 0;
	color: #c9dce3;
	font-size: 0.94rem;
}

.ehf-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.ehf-actions--center {
	justify-content: center;
}

.ehf-button {
	display: inline-flex;
	min-height: 3.25rem;
	align-items: center;
	justify-content: center;
	padding: 0.84rem 1.3rem;
	border: 2px solid transparent;
	border-radius: 0.45rem;
	font-size: 0.97rem;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.2;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.ehf-button--primary {
	background: var(--ehf-coral);
	color: var(--ehf-white) !important;
}

.ehf-button--primary:hover {
	background: var(--ehf-coral-dark);
}

.ehf-button--secondary {
	border-color: rgba(255, 255, 255, 0.65);
	color: var(--ehf-white) !important;
}

.ehf-button--secondary:hover {
	border-color: var(--ehf-white);
	background: rgba(255, 255, 255, 0.1);
}

.ehf-button--dark {
	margin-top: 0.75rem;
	background: var(--ehf-navy);
	color: var(--ehf-white) !important;
}

.ehf-button--dark:hover {
	background: var(--ehf-blue);
}

.ehf-button--light {
	background: var(--ehf-white);
	color: var(--ehf-navy) !important;
}

.ehf-button--outline-light {
	border-color: rgba(255, 255, 255, 0.65);
	color: var(--ehf-white) !important;
}

.ehf-button--outline-light:hover {
	border-color: var(--ehf-white);
	background: rgba(255, 255, 255, 0.1);
}

.ehf-jump {
	position: relative;
	z-index: 2;
	border-bottom: 1px solid var(--ehf-line);
	background: rgba(255, 255, 255, 0.97);
}

.ehf-jump__inner {
	display: flex;
	overflow-x: auto;
	justify-content: center;
	gap: clamp(1.25rem, 3vw, 2.8rem);
	scrollbar-width: thin;
}

.ehf-jump a {
	flex: 0 0 auto;
	padding: 1.1rem 0;
	color: var(--ehf-navy);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
}

.ehf-jump a:hover {
	color: var(--ehf-coral-dark);
}

.ehf-intro__grid,
.ehf-affiliation__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 6vw, 6rem);
	align-items: start;
}

.ehf-section-heading {
	max-width: 720px;
	margin-bottom: 3rem;
}

.ehf-section-heading > p:last-child {
	color: var(--ehf-muted);
	font-size: 1.1rem;
}

.ehf-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.ehf-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.ehf-card {
	position: relative;
	display: flex;
	min-height: 365px;
	flex-direction: column;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid var(--ehf-line);
	border-radius: var(--ehf-radius);
	background: var(--ehf-white);
	box-shadow: 0 8px 30px rgba(6, 47, 73, 0.05);
}

.ehf-card__number {
	margin-bottom: 2.1rem;
	color: var(--ehf-coral-dark);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.ehf-card p {
	margin-bottom: 1.5rem;
	color: var(--ehf-muted);
}

.ehf-text-link {
	margin-top: auto;
	font-size: 0.94rem;
	font-weight: 800;
}

.ehf-story__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
	gap: clamp(3rem, 8vw, 7rem);
	align-items: center;
}

.ehf-story__visual {
	position: relative;
	min-height: 465px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem clamp(2rem, 5vw, 4rem);
	border-radius: 50% 50% 10% 10% / 35% 35% 10% 10%;
	background: var(--ehf-navy);
	box-shadow: var(--ehf-shadow);
}

.ehf-story__mark {
	color: var(--ehf-white);
	font-family: "DM Serif Display", Georgia, serif;
	font-size: clamp(3.2rem, 7vw, 6rem);
	line-height: 0.9;
	letter-spacing: -0.04em;
}

.ehf-story__mark--accent {
	align-self: flex-end;
	color: #f68aa1;
}

.ehf-story__line {
	width: 78%;
	height: 1px;
	margin: 1.4rem auto;
	background: rgba(255, 255, 255, 0.5);
	transform: rotate(-9deg);
}

.ehf-promise {
	padding-top: 0;
}

.ehf-promise__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
	padding: clamp(2.25rem, 6vw, 5rem);
	border-radius: var(--ehf-radius);
	background: var(--ehf-navy);
	box-shadow: var(--ehf-shadow);
}

.ehf-promise h2 {
	margin-bottom: 0;
	color: var(--ehf-white);
}

.ehf-check-list {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	color: #e8f3f6;
	list-style: none;
}

.ehf-check-list li {
	position: relative;
	padding-left: 2rem;
}

.ehf-check-list li::before {
	position: absolute;
	top: 0.15rem;
	left: 0;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: var(--ehf-coral);
	color: var(--ehf-white);
	content: "✓";
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.25rem;
	text-align: center;
}

.ehf-involve {
	padding-top: 2rem;
}

.ehf-involve__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--ehf-line);
	border-radius: var(--ehf-radius);
	background: var(--ehf-line);
}

.ehf-action-card {
	padding: clamp(1.6rem, 3.5vw, 2.7rem);
	background: var(--ehf-white);
}

.ehf-action-card p {
	min-height: 5.2em;
	color: var(--ehf-muted);
}

.ehf-action-card a {
	font-weight: 800;
}

.ehf-affiliation {
	border-top: 1px solid var(--ehf-line);
}

.ehf-faq__grid {
	display: grid;
	grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(2.5rem, 7vw, 6rem);
	align-items: start;
}

.ehf-faq__intro {
	position: sticky;
	top: 2rem;
}

.ehf-faq__intro p:last-child {
	color: var(--ehf-muted);
}

.ehf-faq__items {
	border-top: 1px solid #bed5da;
}

.ehf-faq details {
	border-bottom: 1px solid #bed5da;
}

.ehf-faq summary {
	position: relative;
	padding: 1.35rem 3rem 1.35rem 0;
	color: var(--ehf-navy);
	cursor: pointer;
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.4;
	list-style: none;
}

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

.ehf-faq summary::after {
	position: absolute;
	top: 1.25rem;
	right: 0;
	width: 1.9rem;
	height: 1.9rem;
	border: 1px solid #91b9c2;
	border-radius: 50%;
	content: "+";
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.72rem;
	text-align: center;
}

.ehf-faq details[open] summary::after {
	content: "–";
}

.ehf-faq details > div {
	padding: 0 3rem 1.35rem 0;
	color: var(--ehf-muted);
}

.ehf-faq details > div p {
	margin-bottom: 0;
}

.ehf-final-cta {
	padding: clamp(5rem, 10vw, 8rem) 0;
	background:
		radial-gradient(circle at 15% 10%, rgba(48, 168, 187, 0.35), transparent 32%),
		linear-gradient(135deg, var(--ehf-navy-deep), var(--ehf-navy));
	color: #e8f3f6;
	text-align: center;
}

.ehf-final-cta__inner {
	max-width: 800px;
}

.ehf-final-cta h2 {
	color: var(--ehf-white);
}

.ehf-final-cta p:not(.ehf-kicker) {
	max-width: 650px;
	margin: 0 auto 2rem;
	font-size: 1.12rem;
}

.ehf-disclaimer {
	padding: 1.35rem 0;
	border-top: 1px solid var(--ehf-line);
	background: #f8fbfc;
}

.ehf-disclaimer p {
	margin: 0;
	color: #52636d;
	font-size: 0.83rem;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.ehf-hero {
		min-height: 700px;
	}

	.ehf-hero::before {
		background: linear-gradient(90deg, rgba(4, 28, 45, 0.97) 0%, rgba(4, 37, 58, 0.84) 65%, rgba(4, 37, 58, 0.45) 100%);
	}

	.ehf-hero__media img {
		object-position: 62% center;
	}

	.ehf-card-grid,
	.ehf-involve__grid {
		grid-template-columns: 1fr;
	}

	.ehf-card {
		min-height: 0;
	}

	.ehf-action-card p {
		min-height: 0;
	}

	.ehf-story__grid,
	.ehf-promise__panel {
		grid-template-columns: 1fr;
	}

	.ehf-story__visual {
		min-height: 360px;
	}
}

@media (max-width: 720px) {
	:root {
		--ehf-container: min(100% - 1.3rem, 1120px);
	}

	.ehf-home h1 {
		font-size: clamp(3.2rem, 18vw, 5rem);
	}

	.ehf-home h2 {
		font-size: clamp(2.15rem, 11vw, 3.1rem);
	}

	.ehf-hero {
		min-height: auto;
		align-items: end;
		padding-top: 11rem;
	}

	.ehf-hero::before {
		background:
			linear-gradient(0deg, rgba(4, 28, 45, 0.99) 0%, rgba(4, 28, 45, 0.94) 55%, rgba(4, 28, 45, 0.25) 100%),
			linear-gradient(90deg, rgba(4, 28, 45, 0.68), rgba(4, 28, 45, 0.08));
	}

	.ehf-hero__media img {
		object-position: 63% top;
	}

	.ehf-hero__inner {
		padding-block: 5rem 4rem;
	}

	.ehf-actions,
	.ehf-button {
		width: 100%;
	}

	.ehf-jump__inner {
		justify-content: flex-start;
	}

	.ehf-intro__grid,
	.ehf-affiliation__grid,
	.ehf-faq__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ehf-faq__intro {
		position: static;
	}

	.ehf-story__visual {
		min-height: 320px;
		border-radius: var(--ehf-radius);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ehf-home *,
	.ehf-home *::before,
	.ehf-home *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media (prefers-contrast: more) {
	.ehf-card,
	.ehf-involve__grid,
	.ehf-promise__panel {
		border: 2px solid currentColor;
	}
}
