﻿:root {
	--bmhc-navy: #071f35;
	--bmhc-navy-2: #123653;
	--bmhc-navy-3: #1d4968;
	--bmhc-ink: #152635;
	--bmhc-muted: #64717d;
	--bmhc-white: #ffffff;
	--bmhc-ivory: #faf7ef;
	--bmhc-ivory-2: #f3eee3;
	--bmhc-gold: #c7a45d;
	--bmhc-gold-2: #d9bf82;
	--bmhc-gold-soft: #efe3c6;
	--bmhc-border: #e8dfd0;
	--bmhc-shadow: 0 24px 70px rgba(7, 31, 53, 0.12);
	--bmhc-shadow-soft: 0 12px 36px rgba(7, 31, 53, 0.08);
	--bmhc-radius: 8px;
	--bmhc-max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bmhc-white);
	color: var(--bmhc-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
	margin: 0;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--bmhc-navy);
	text-decoration-color: rgba(199, 164, 93, 0.65);
	text-underline-offset: 0.2em;
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

a:hover {
	color: var(--bmhc-gold);
	text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--bmhc-gold-soft);
	outline-offset: 4px;
}

h1,
h2,
h3 {
	color: var(--bmhc-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 1rem;
}

h1 {
	font-size: clamp(2.65rem, 5.6vw, 5.75rem);
	max-width: 860px;
}

h2 {
	font-size: clamp(2rem, 3.2vw, 3.35rem);
	max-width: 820px;
}

h3 {
	font-size: 1.35rem;
}

p {
	margin: 0 0 1rem;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.screen-reader-text:focus {
	background: var(--bmhc-white);
	clip: auto;
	color: var(--bmhc-navy);
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 1000;
}

.bmhc-container {
	margin: 0 auto;
	max-width: var(--bmhc-max);
	padding: 0 clamp(1.15rem, 4vw, 2rem);
	width: 100%;
}

.site-header {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(232, 223, 208, 0.9);
	position: sticky;
	top: 0;
	z-index: 50;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	min-height: 82px;
}


.site-branding {
	align-items: center;
	display: flex;
	gap: 0.85rem;
}

.site-branding__text {
	display: grid;
	gap: 0.1rem;
}

.site-branding__tagline {
	color: var(--bmhc-muted);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.25;
	margin: 0;
	max-width: 320px;
}
.site-branding__name {
	color: var(--bmhc-navy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	font-weight: 700;
	text-decoration: none;
}

.site-navigation__menu,
.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-navigation a,
.site-footer a {
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.site-navigation__toggle {
	background: var(--bmhc-navy);
	border: 1px solid rgba(7, 31, 53, 0.9);
	border-radius: var(--bmhc-radius);
	box-shadow: 0 10px 24px rgba(7, 31, 53, 0.14);
	display: none;
	height: 44px;
	place-items: center;
	width: 44px;
}

.site-navigation__toggle-line,
.site-navigation__toggle-line::before,
.site-navigation__toggle-line::after {
	background: var(--bmhc-white);
	border-radius: 999px;
	content: "";
	display: block;
	height: 2px;
	position: relative;
	width: 20px;
}

.site-navigation__toggle-line::before {
	position: absolute;
	top: -6px;
}

.site-navigation__toggle-line::after {
	position: absolute;
	top: 6px;
}

.site-navigation a {
	border-radius: 999px;
	color: var(--bmhc-ink);
	display: inline-flex;
	padding: 0.45rem 0.65rem;
}

.site-navigation a:hover {
	background: var(--bmhc-ivory);
	color: var(--bmhc-navy);
}

.bmhc-hero {
	background:
		radial-gradient(circle at 80% 20%, rgba(217, 191, 130, 0.24), transparent 28rem),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 1px),
		linear-gradient(115deg, rgba(7, 31, 53, 0.98), rgba(18, 54, 83, 0.94) 52%, rgba(7, 31, 53, 0.98)),
		var(--bmhc-navy);
	color: var(--bmhc-white);
	isolation: isolate;
	overflow: hidden;
	padding: clamp(5rem, 9vw, 8.5rem) 0 clamp(4.5rem, 8vw, 7.5rem);
	position: relative;
}

.bmhc-hero::before {
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 48px 48px;
	content: "";
	inset: 0;
	opacity: 0.32;
	position: absolute;
	z-index: -2;
}

.bmhc-hero::after {
	background: linear-gradient(90deg, var(--bmhc-gold), transparent);
	bottom: 0;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 42%;
}

.bmhc-hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
}

.bmhc-hero h1,
.bmhc-section--navy h2 {
	color: var(--bmhc-white);
}

.bmhc-hero__lead {
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.08rem, 1.5vw, 1.28rem);
	line-height: 1.75;
	margin-bottom: 1.7rem;
	max-width: 700px;
}

.bmhc-hero__panel {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055)),
		rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(239, 227, 198, 0.38);
	border-radius: var(--bmhc-radius);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
	min-height: 340px;
	padding: clamp(1.75rem, 3vw, 2.5rem);
	position: relative;
}

.bmhc-hero__panel > * {
	position: relative;
	z-index: 1;
}

.bmhc-hero__panel::before {
	background: linear-gradient(180deg, var(--bmhc-gold), rgba(199, 164, 93, 0.12));
	border-radius: 999px;
	content: "";
	height: 72%;
	position: absolute;
	right: 1.25rem;
	top: 14%;
	width: 3px;
}

.bmhc-hero__panel::after {
	background:
		radial-gradient(circle, rgba(239, 227, 198, 0.16), transparent 65%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent);
	border: 1px solid rgba(239, 227, 198, 0.18);
	border-radius: 50%;
	content: "";
	height: 170px;
	position: absolute;
	right: -46px;
	top: -42px;
	width: 170px;
}

.bmhc-hero__panel p,
.bmhc-hero__panel span {
	color: rgba(255, 255, 255, 0.76);
	display: block;
	margin: 0;
	max-width: 270px;
}

.bmhc-hero__panel strong {
	color: var(--bmhc-white);
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	font-weight: 600;
	line-height: 1.08;
	margin: 1rem 0;
	max-width: 310px;
}

.bmhc-hero__list,
.bmhc-check-list {
	display: grid;
	gap: 0.65rem;
	list-style: none;
	margin: 1.35rem 0 0;
	padding: 0;
}

.bmhc-hero__list li,
.bmhc-check-list li {
	align-items: start;
	display: flex;
	gap: 0.6rem;
}

.bmhc-hero__list li {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	line-height: 1.45;
}

.bmhc-hero__list li::before,
.bmhc-check-list li::before {
	background: var(--bmhc-gold);
	border-radius: 999px;
	box-shadow: 0 0 0 5px rgba(199, 164, 93, 0.14);
	content: "";
	flex: 0 0 auto;
	height: 0.45rem;
	margin-top: 0.55rem;
	width: 0.45rem;
}

.bmhc-eyebrow {
	align-items: center;
	color: var(--bmhc-gold-2);
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 850;
	gap: 0.7rem;
	letter-spacing: 0.15em;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.bmhc-eyebrow::before {
	background: currentColor;
	content: "";
	display: inline-block;
	height: 1px;
	width: 2.3rem;
}

.bmhc-button,
.wp-block-button__link {
	align-items: center;
	background: linear-gradient(180deg, var(--bmhc-navy-2), var(--bmhc-navy));
	border: 1px solid rgba(7, 31, 53, 0.95);
	border-radius: var(--bmhc-radius);
	box-shadow: 0 12px 24px rgba(7, 31, 53, 0.18);
	color: var(--bmhc-white);
	display: inline-flex;
	font-size: 0.94rem;
	font-weight: 850;
	gap: 0.65rem;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: 0.95rem 1.25rem;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.bmhc-button::after,
.wp-block-button__link::after {
	content: ">";
	font-size: 1rem;
	line-height: 1;
}

.bmhc-button:hover,
.bmhc-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
	background: linear-gradient(180deg, var(--bmhc-navy-3), var(--bmhc-navy-2));
	box-shadow: 0 16px 34px rgba(7, 31, 53, 0.24);
	color: var(--bmhc-white);
	transform: translateY(-1px);
}

.bmhc-button--gold {
	background: linear-gradient(180deg, var(--bmhc-gold-2), var(--bmhc-gold));
	border-color: rgba(199, 164, 93, 0.95);
	box-shadow: 0 14px 30px rgba(199, 164, 93, 0.2);
	color: var(--bmhc-navy);
}

.bmhc-button--gold:hover,
.bmhc-button--gold:focus {
	background: linear-gradient(180deg, var(--bmhc-gold-soft), var(--bmhc-gold-2));
	color: var(--bmhc-navy);
}

.bmhc-trust {
	background: linear-gradient(180deg, var(--bmhc-ivory), #fff);
	border-bottom: 1px solid var(--bmhc-border);
	padding: clamp(1rem, 2.5vw, 1.6rem) 0;
}

.bmhc-trust__grid {
	display: grid;
	gap: 0.8rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bmhc-trust__item {
	align-items: center;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(232, 223, 208, 0.9);
	border-radius: var(--bmhc-radius);
	box-shadow: var(--bmhc-shadow-soft);
	color: var(--bmhc-navy);
	display: flex;
	font-size: 0.9rem;
	font-weight: 800;
	gap: 0.7rem;
	min-height: 72px;
	padding: 0.9rem 1rem;
}

.bmhc-trust__item span {
	background: radial-gradient(circle, var(--bmhc-gold-soft), var(--bmhc-gold));
	border-radius: 999px;
	box-shadow: 0 0 0 5px rgba(199, 164, 93, 0.13);
	flex: 0 0 auto;
	height: 0.58rem;
	width: 0.58rem;
}

.bmhc-section {
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.bmhc-section--navy {
	background:
		radial-gradient(circle at 12% 18%, rgba(199, 164, 93, 0.16), transparent 22rem),
		linear-gradient(135deg, var(--bmhc-navy), #0b2a45);
	color: rgba(255, 255, 255, 0.84);
}

.bmhc-section--soft {
	background: linear-gradient(180deg, var(--bmhc-ivory), #fff);
}

.bmhc-section__header {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	max-width: 820px;
}

.bmhc-section__header h2 {
	margin-bottom: 0;
}

.bmhc-section__intro {
	color: var(--bmhc-muted);
	font-size: 1.05rem;
	margin: 1rem 0 0;
	max-width: 680px;
}

.bmhc-card-grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.35rem);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bmhc-card,
.bmhc-form-panel,
.bmhc-faq__item,
.bmhc-doctor-card {
	background: var(--bmhc-white);
	border: 1px solid rgba(232, 223, 208, 0.9);
	border-radius: var(--bmhc-radius);
	box-shadow: var(--bmhc-shadow-soft);
}

.bmhc-card {
	min-height: 260px;
	overflow: hidden;
	padding: clamp(1.35rem, 2.2vw, 1.8rem);
	position: relative;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bmhc-card::before {
	background: linear-gradient(90deg, var(--bmhc-gold), rgba(199, 164, 93, 0.1));
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.bmhc-card::after {
	background: var(--bmhc-ivory);
	border: 1px solid var(--bmhc-border);
	border-radius: 50%;
	color: var(--bmhc-gold);
	content: "+";
	display: grid;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
	height: 42px;
	line-height: 1;
	place-items: center;
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	width: 42px;
}

.bmhc-card:hover {
	border-color: rgba(199, 164, 93, 0.62);
	box-shadow: var(--bmhc-shadow);
	transform: translateY(-3px);
}

.bmhc-card h3 {
	margin-right: 3.4rem;
	margin-top: 1.1rem;
}

.bmhc-card p,
.bmhc-content,
.bmhc-entry__content {
	color: var(--bmhc-muted);
}

.bmhc-feature-list {
	display: grid;
	gap: 0.75rem;
	margin-top: 1.35rem;
}

.bmhc-feature-list span {
	background: linear-gradient(90deg, rgba(250, 247, 239, 0.96), rgba(255, 255, 255, 0.92));
	border: 1px solid var(--bmhc-border);
	border-radius: var(--bmhc-radius);
	color: var(--bmhc-navy);
	display: block;
	font-size: 0.94rem;
	font-weight: 800;
	padding: 0.9rem 1rem;
}

.bmhc-steps {
	counter-reset: bmhc-step;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.bmhc-steps li {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(239, 227, 198, 0.22);
	border-radius: var(--bmhc-radius);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
	padding: clamp(1.25rem, 2vw, 1.6rem);
}

.bmhc-steps span {
	color: var(--bmhc-gold-2);
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.2rem;
	line-height: 1;
	margin-bottom: 1rem;
}

.bmhc-steps p {
	margin: 0;
}

.bmhc-split,
.bmhc-contact-layout {
	align-items: start;
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.bmhc-doctor-card {
	align-items: center;
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	grid-template-columns: 190px minmax(0, 1fr);
	padding: clamp(1.5rem, 4vw, 3rem);
}

.bmhc-doctor-card p {
	color: var(--bmhc-muted);
	max-width: 790px;
}

.bmhc-doctor-card__mark {
	align-items: center;
	aspect-ratio: 1;
	background:
		linear-gradient(145deg, rgba(199, 164, 93, 0.18), transparent),
		var(--bmhc-navy);
	border: 1px solid rgba(199, 164, 93, 0.28);
	border-radius: 50%;
	box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.035), var(--bmhc-shadow-soft);
	color: var(--bmhc-gold-soft);
	display: flex;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	font-weight: 700;
	justify-content: center;
}

.bmhc-faq {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.bmhc-faq__items {
	display: grid;
	gap: 0.85rem;
}

.bmhc-faq__item {
	padding: 1.1rem 1.25rem;
}

.bmhc-faq__item summary {
	color: var(--bmhc-navy);
	cursor: pointer;
	font-weight: 850;
	list-style-position: outside;
}

.bmhc-faq__item p {
	color: var(--bmhc-muted);
	margin: 0.75rem 0 0;
}

.bmhc-faq__item[open] {
	border-color: rgba(199, 164, 93, 0.58);
	box-shadow: var(--bmhc-shadow);
}

.bmhc-cta {
	align-items: center;
	background:
		radial-gradient(circle at 90% 12%, rgba(217, 191, 130, 0.26), transparent 18rem),
		linear-gradient(135deg, var(--bmhc-navy), var(--bmhc-navy-2));
	border: 1px solid rgba(199, 164, 93, 0.24);
	border-radius: var(--bmhc-radius);
	box-shadow: var(--bmhc-shadow);
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	overflow: hidden;
	padding: clamp(1.75rem, 4.5vw, 3rem);
	position: relative;
}

.bmhc-cta::before {
	background: var(--bmhc-gold);
	content: "";
	inset: 0 auto 0 0;
	position: absolute;
	width: 5px;
}

.bmhc-cta__title {
	color: var(--bmhc-white);
	margin: 0 0 0.65rem;
}

.bmhc-cta__content {
	color: rgba(255, 255, 255, 0.78);
	margin: 0;
	max-width: 680px;
}

.bmhc-disclaimer {
	background: var(--bmhc-ivory-2);
	border-top: 1px solid var(--bmhc-border);
	color: #4d5660;
	font-size: 0.92rem;
	padding: 1.5rem 0;
}

.bmhc-disclaimer p {
	margin: 0;
}

.bmhc-entry__title {
	margin-bottom: 1.5rem;
}

.bmhc-content,
.bmhc-entry__content {
	max-width: 820px;
}

.bmhc-content p,
.bmhc-entry__content p {
	margin-bottom: 1.15rem;
}

.bmhc-form-panel {
	padding: clamp(1.25rem, 3vw, 2rem);
}

.site-footer {
	background: linear-gradient(135deg, var(--bmhc-navy), #051827);
	color: rgba(255, 255, 255, 0.76);
	padding: 3rem 0;
}

.site-footer__inner {
	align-items: start;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.site-footer__brand {
	color: var(--bmhc-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.site-footer__text {
	margin: 0;
	max-width: 420px;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 980px) {
	.bmhc-hero__grid,
	.bmhc-trust__grid,
	.bmhc-card-grid,
	.bmhc-steps,
	.bmhc-split,
	.bmhc-contact-layout,
	.bmhc-doctor-card,
	.bmhc-faq {
		grid-template-columns: 1fr;
	}

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

	.bmhc-hero__panel {
		min-height: auto;
	}

	.bmhc-doctor-card__mark {
		max-width: 165px;
	}
}

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

	h1 {
		font-size: clamp(2.35rem, 12vw, 3.5rem);
	}

	.site-header__inner,
	.site-footer__inner,
	.bmhc-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-header__inner {
		gap: 0.9rem;
		padding-bottom: 1rem;
		padding-top: 1rem;
	}

	.site-navigation__toggle {
		display: grid;
		position: absolute;
		right: 1.15rem;
		top: 1.2rem;
	}

	.site-navigation {
		display: none;
		width: 100%;
	}

	.site-navigation-open .site-navigation {
		display: block;
	}

	.site-navigation__menu {
		background: var(--bmhc-white);
		border: 1px solid var(--bmhc-border);
		border-radius: var(--bmhc-radius);
		box-shadow: var(--bmhc-shadow-soft);
		display: grid;
		gap: 0;
		padding: 0.5rem;
		width: 100%;
	}

	.site-navigation a {
		display: block;
		padding: 0.75rem 0.8rem;
	}

	.site-navigation__menu,
	.site-footer__menu {
		gap: 0.25rem 0.75rem;
	}

	.site-navigation a {
		padding-left: 0;
	}

	.bmhc-hero {
		padding: 4rem 0;
	}

	.bmhc-hero__grid {
		gap: 2rem;
	}

	.bmhc-hero__panel {
		padding: 1.4rem;
	}

	.bmhc-trust__grid,
	.bmhc-card-grid {
		grid-template-columns: 1fr;
	}

	.bmhc-section {
		padding: 3.5rem 0;
	}

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

	.bmhc-cta .bmhc-button {
		width: 100%;
	}
}


