/**
 * Service page
 * Bright Horizons Psychiatry
 */

/* ——— Hero (white split layout) ——— */
.bhp-service-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-service-hero__inner {
	display: grid;
	align-items: center;
	gap: clamp(2rem, 4vw, 3.5rem);
	padding-top: clamp(2.25rem, 5vw, 3.75rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 992px) {
	.bhp-service-hero__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: clamp(2.5rem, 5vw, 4.5rem);
		min-height: clamp(32rem, 72vh, 42rem);
	}
}

.bhp-service-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(1.15rem, 2.5vh, 1.65rem);
	width: 100%;
	max-width: 36rem;
	animation: bhp-service-hero-rise 0.85s var(--bhp-ease-out) both;
}

.bhp-service-hero__title {
	margin: 0;
	font-size: clamp(2.1rem, 4.5vw, 3.25rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1.1;
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-hero__text {
	margin: 0;
	max-width: 34rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

.bhp-service-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bhp-space-3);
	margin-top: var(--bhp-space-2);
}

.bhp-service-hero__cta {
	margin: 0;
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
	transition:
		background-color var(--bhp-transition),
		border-color var(--bhp-transition),
		color var(--bhp-transition),
		transform var(--bhp-transition);
}

.bhp-service-hero__cta:hover,
.bhp-service-hero__cta:focus-visible {
	transform: translateY(-1px);
}

.bhp-service-hero__cta--secondary {
	background-color: transparent;
	border-color: var(--bhp-primary);
	color: var(--bhp-primary);
}

.bhp-service-hero__cta--secondary:hover,
.bhp-service-hero__cta--secondary:focus-visible {
	background-color: var(--bhp-primary-dark);
	border-color: var(--bhp-primary-dark);
	color: var(--bhp-white);
}

/* Media */
.bhp-service-hero__media {
	position: relative;
	width: 100%;
	min-height: 18rem;
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	animation: bhp-service-hero-fade 1s var(--bhp-ease-out) 0.12s both;
}

@media (min-width: 992px) {
	.bhp-service-hero__media {
		min-height: 100%;
		height: 100%;
		align-self: stretch;
	}
}

.bhp-service-hero__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 18rem;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 992px) {
	.bhp-service-hero__image {
		position: absolute;
		inset: 0;
		min-height: 0;
	}
}

/* ——— Trust strip (below fold) ——— */
.bhp-service-hero__trust {
	border-top: 1px solid var(--bhp-border);
	background-color: var(--bhp-white);
	animation: bhp-service-hero-rise 0.9s var(--bhp-ease-out) 0.2s both;
}

.bhp-service-hero__trust-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bhp-space-4);
	margin: 0;
	padding: clamp(1.25rem, 3vw, 1.75rem) 0;
	list-style: none;
}

@media (min-width: 576px) {
	.bhp-service-hero__trust-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--bhp-space-5) var(--bhp-space-6);
	}
}

@media (min-width: 992px) {
	.bhp-service-hero__trust-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--bhp-space-6);
		align-items: center;
	}
}

.bhp-service-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
}

.bhp-service-hero__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	color: var(--bhp-primary);
	font-size: 0.95rem;
}

.bhp-service-hero__trust-text {
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
	text-wrap: pretty;
}

@keyframes bhp-service-hero-rise {
	from {
		opacity: 0;
		transform: translateY(1.25rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bhp-service-hero-fade {
	from {
		opacity: 0;
		transform: translateY(0.75rem) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.bhp-service-hero__content,
	.bhp-service-hero__media,
	.bhp-service-hero__trust,
	.bhp-service-hero__cta {
		animation: none;
		transition: none;
	}

	.bhp-service-hero__cta:hover,
	.bhp-service-hero__cta:focus-visible {
		transform: none;
	}
}

/* ——— Paths (how people get here) ——— */
.bhp-service-paths {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-service-paths__header {
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.bhp-service-paths__title {
	margin: 0;
	max-width: 28rem;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-paths__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bhp-space-5);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 768px) {
	.bhp-service-paths__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--bhp-space-6);
	}
}

.bhp-service-paths__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	height: 100%;
	margin: 0;
	padding: clamp(1.35rem, 2.5vw, 1.75rem);
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
}

.bhp-service-paths__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: var(--bhp-primary);
	font-size: 1.15rem;
	line-height: 1;
}

.bhp-service-paths__card-title {
	margin: 0;
	font-size: clamp(1.05rem, 1.6vw, 1.2rem);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-paths__card-text {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

/* ——— Services grid ——— */
.bhp-service-grid {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-service-grid__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	max-width: 40rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.bhp-service-grid__title {
	margin: 0;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-grid__intro {
	margin: 0;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

.bhp-service-grid__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bhp-space-5);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 768px) {
	.bhp-service-grid__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--bhp-space-6);
	}
}

@media (min-width: 1100px) {
	.bhp-service-grid__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.bhp-service-grid__list > li {
	margin: 0;
	min-height: 100%;
}

.bhp-service-grid__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	height: 100%;
	padding: clamp(1.35rem, 2.5vw, 1.75rem);
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
	text-decoration: none;
	color: inherit;
	transition:
		border-color var(--bhp-transition),
		background-color var(--bhp-transition);
}

.bhp-service-grid__card:hover,
.bhp-service-grid__card:focus-visible {
	border-color: var(--bhp-border-strong);
	background-color: var(--bhp-surface-soft);
	color: inherit;
	outline: none;
}

.bhp-service-grid__card:focus-visible {
	outline: 2px solid var(--bhp-primary);
	outline-offset: 3px;
}

.bhp-service-grid__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: var(--bhp-primary);
	font-size: 1.15rem;
	line-height: 1;
}

.bhp-service-grid__body {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
	flex: 1;
	width: 100%;
}

.bhp-service-grid__card-title {
	margin: 0;
	font-size: clamp(1.05rem, 1.6vw, 1.2rem);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-grid__card-text {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

.bhp-service-grid__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1.3;
	color: var(--bhp-primary);
	transition: color var(--bhp-transition);
}

.bhp-service-grid__card:hover .bhp-service-grid__link,
.bhp-service-grid__card:focus-visible .bhp-service-grid__link {
	color: var(--bhp-primary-dark);
}

/* ——— Deep dive (alternating image + copy) ——— */
.bhp-service-dive {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-service-dive__inner {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 992px) {
	.bhp-service-dive__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: clamp(2.5rem, 5vw, 4.5rem);
	}

	.bhp-service-dive--flip .bhp-service-dive__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.bhp-service-dive--surface {
	background-color: var(--bhp-white);
}

.bhp-service-dive__media {
	position: relative;
	width: 100%;
	min-height: 18rem;
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	background-color: var(--bhp-primary-light);
}

@media (min-width: 992px) {
	.bhp-service-dive__media {
		min-height: 28rem;
		height: 100%;
		align-self: stretch;
	}
}

.bhp-service-dive__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 18rem;
	object-fit: cover;
	object-position: center;
}

@media (min-width: 992px) {
	.bhp-service-dive__image {
		position: absolute;
		inset: 0;
		min-height: 0;
	}
}

.bhp-service-dive__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	width: 100%;
	max-width: 36rem;
}

.bhp-service-dive__eyebrow {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-wide);
	line-height: 1;
	text-transform: uppercase;
	color: var(--bhp-ocean);
}

.bhp-service-dive__title {
	margin: 0;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-dive__copy {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-4);
	width: 100%;
}

.bhp-service-dive__copy p {
	margin: 0;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

.bhp-service-dive__stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bhp-space-4);
	width: 100%;
	margin: var(--bhp-space-3) 0 0;
	padding: var(--bhp-space-5) 0 0;
	border-top: 1px solid var(--bhp-border);
	list-style: none;
}

@media (min-width: 576px) {
	.bhp-service-dive__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--bhp-space-5);
	}
}

.bhp-service-dive__stat {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
}

.bhp-service-dive__stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: calc(var(--bhp-fs-sm) * var(--bhp-lh-snug) * 2);
	height: calc(var(--bhp-fs-sm) * var(--bhp-lh-snug) * 2);
	border-radius: var(--bhp-btn-radius);
	background-color: var(--bhp-primary-light);
	color: var(--bhp-primary);
	font-size: 0.95rem;
}

.bhp-service-dive__stat-text {
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
	text-wrap: pretty;
}

/* ——— Comparison table ——— */
.bhp-service-compare {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-service-compare__header {
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.bhp-service-compare__title {
	margin: 0;
	max-width: 32rem;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-compare__scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.bhp-service-compare__table {
	width: 100%;
	min-width: 40rem;
	border-collapse: collapse;
	table-layout: fixed;
}

.bhp-service-compare__table th,
.bhp-service-compare__table td {
	padding: clamp(0.9rem, 2vw, 1.15rem) clamp(0.85rem, 1.8vw, 1.25rem);
	text-align: left;
	vertical-align: top;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	border-bottom: 1px solid var(--bhp-border);
}

.bhp-service-compare__table thead th {
	font-weight: var(--bhp-fw-semibold);
	color: var(--bhp-primary-dark);
	background-color: var(--bhp-surface-soft);
	border-bottom: 1px solid var(--bhp-border-strong);
}

.bhp-service-compare__table thead th:first-child {
	background-color: var(--bhp-white);
}

.bhp-service-compare__table tbody th {
	font-weight: var(--bhp-fw-semibold);
	color: var(--bhp-ink);
	background-color: var(--bhp-white);
}

.bhp-service-compare__table tbody td {
	color: var(--bhp-ink-muted);
}

.bhp-service-compare__table tbody tr:last-child th,
.bhp-service-compare__table tbody tr:last-child td {
	border-bottom: 0;
}

@media (min-width: 768px) {
	.bhp-service-compare__table th,
	.bhp-service-compare__table td {
		font-size: var(--bhp-fs-base);
	}
}

/* ——— Conditions chips ——— */
.bhp-service-conditions {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-service-conditions__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	max-width: 40rem;
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.bhp-service-conditions__eyebrow {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-wide);
	line-height: 1;
	text-transform: uppercase;
	color: var(--bhp-ocean);
}

.bhp-service-conditions__title {
	margin: 0;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-conditions__intro {
	margin: 0;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

.bhp-service-conditions__chips {
	display: flex;
	flex-wrap: wrap;
	gap: var(--bhp-space-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-service-conditions__chips > li {
	margin: 0;
}

.bhp-service-conditions__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.65rem 1.1rem;
	background-color: var(--bhp-primary-light);
	color: var(--bhp-primary);
	border-radius: var(--bhp-radius-full);
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1.3;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.bhp-service-conditions__chip {
		font-size: var(--bhp-fs-base);
		padding: 0.7rem 1.25rem;
	}
}

/* ——— Out of scope (dark band) ——— */
.bhp-service-scope {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-primary-dark);
	color: var(--bhp-white);
}

.bhp-service-scope__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 900px) {
	.bhp-service-scope__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: clamp(3rem, 6vw, 5rem);
		align-items: start;
	}
}

.bhp-service-scope__main,
.bhp-service-scope__aside {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-5);
	min-width: 0;
}

.bhp-service-scope__title {
	margin: 0;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-white);
	text-wrap: balance;
}

.bhp-service-scope__intro {
	margin: 0;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: rgba(255, 255, 255, 0.82);
	text-wrap: pretty;
}

.bhp-service-scope__list {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-service-scope__list li {
	position: relative;
	margin: 0;
	padding-left: 1.15rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-white);
}

.bhp-service-scope__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: var(--bhp-radius-full);
	background-color: var(--bhp-sky);
}

.bhp-service-scope__note {
	margin: var(--bhp-space-2) 0 0;
	max-width: 32rem;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: rgba(255, 255, 255, 0.72);
	text-wrap: pretty;
}

.bhp-service-scope__aside-title {
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-white);
	text-wrap: balance;
}

.bhp-service-scope__aside-copy {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-4);
	max-width: 34rem;
}

.bhp-service-scope__aside-copy p {
	margin: 0;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: rgba(255, 255, 255, 0.82);
	text-wrap: pretty;
}

/* ——— Process timeline ——— */
.bhp-service-process {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-service-process__header {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bhp-service-process__title {
	margin: 0;
	max-width: 32rem;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-process__timeline {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 3vw, 2.25rem);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

@media (min-width: 900px) {
	.bhp-service-process__timeline {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(1.25rem, 2.5vw, 2rem);
	}
}

.bhp-service-process__step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	margin: 0;
	min-width: 0;
}

@media (min-width: 900px) {
	.bhp-service-process__step::after {
		content: "";
		position: absolute;
		top: 1.15rem;
		left: calc(2.3rem + 0.5rem);
		right: calc(-1 * clamp(1.25rem, 2.5vw, 2rem) / 2);
		height: 1px;
		background-color: var(--bhp-border-strong);
		pointer-events: none;
	}

	.bhp-service-process__step:last-child::after {
		right: 0;
	}
}

.bhp-service-process__num {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.3rem;
	height: 2.3rem;
	border-radius: var(--bhp-btn-radius);
	background-color: var(--bhp-primary-dark);
	color: var(--bhp-white);
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1;
}

.bhp-service-process__body {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
	width: 100%;
}

.bhp-service-process__step-title {
	margin: 0;
	font-size: clamp(1.05rem, 1.6vw, 1.2rem);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-process__step-text {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

@media (max-width: 899px) {
	.bhp-service-process__step:not(:last-child)::before {
		content: "";
		position: absolute;
		top: 2.3rem;
		left: calc(2.3rem / 2);
		width: 1px;
		bottom: calc(-1 * clamp(1.75rem, 3vw, 2.25rem));
		background-color: var(--bhp-border-strong);
		pointer-events: none;
	}

	.bhp-service-process__step {
		flex-direction: row;
		align-items: flex-start;
		gap: var(--bhp-space-5);
	}

	.bhp-service-process__body {
		padding-top: 0.25rem;
	}
}

/* ——— Insurance and access ——— */
.bhp-service-insurance {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-service-insurance__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 900px) {
	.bhp-service-insurance__layout {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		gap: clamp(2.5rem, 5vw, 4rem);
		align-items: start;
	}
}

.bhp-service-insurance__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-5);
	max-width: 38rem;
}

.bhp-service-insurance__title {
	margin: 0;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-insurance__text {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-4);
}

.bhp-service-insurance__text p {
	margin: 0;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

.bhp-service-insurance__card {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-5);
	width: 100%;
	padding: clamp(1.5rem, 3vw, 2rem);
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
}

.bhp-service-insurance__card-title {
	margin: 0;
	font-size: clamp(1.1rem, 1.8vw, 1.25rem);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-insurance__card-list {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-4);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-service-insurance__card-list li {
	position: relative;
	margin: 0;
	padding-left: 1.15rem;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
}

.bhp-service-insurance__card-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: var(--bhp-radius-sm);
	background-color: var(--bhp-primary);
}

.bhp-service-insurance__logos {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-5);
	padding-top: clamp(1.75rem, 3vw, 2.25rem);
	border-top: 1px solid var(--bhp-border);
}

.bhp-service-insurance__logo-list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.25rem, 2.5vw, 2.5rem);
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.bhp-service-insurance__logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 0;
	margin: 0;
	min-width: 4.5rem;
	min-height: 2.5rem;
}

.bhp-service-insurance__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 2.35rem;
	object-fit: contain;
}

/* ——— Locations ——— */
.bhp-service-locations {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-service-locations__header {
	margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.bhp-service-locations__title {
	margin: 0;
	max-width: 28rem;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-locations__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bhp-space-6);
	align-items: stretch;
}

@media (min-width: 900px) {
	.bhp-service-locations__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--bhp-space-6);
	}
}

.bhp-service-locations__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0;
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	box-shadow: none;
}

.bhp-service-locations__map {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background-color: var(--bhp-primary-light);
	overflow: hidden;
}

.bhp-service-locations__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.bhp-service-locations__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-3);
	flex: 1;
	padding: clamp(1.35rem, 2.5vw, 1.75rem);
}

.bhp-service-locations__name {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.4rem);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-primary-dark);
}

.bhp-service-locations__address {
	margin: 0;
	font-style: normal;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
}

.bhp-service-locations__hours,
.bhp-service-locations__note,
.bhp-service-locations__phone {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink-muted);
}

.bhp-service-locations__phone a {
	color: var(--bhp-primary);
	text-decoration: none;
	font-weight: var(--bhp-fw-semibold);
}

.bhp-service-locations__phone a:hover,
.bhp-service-locations__phone a:focus-visible {
	color: var(--bhp-primary-dark);
	text-decoration: underline;
}

.bhp-service-locations__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: var(--bhp-space-3);
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1.3;
	color: var(--bhp-primary);
	text-decoration: none;
	transition: color var(--bhp-transition);
}

.bhp-service-locations__link:hover,
.bhp-service-locations__link:focus-visible {
	color: var(--bhp-primary-dark);
}

.bhp-service-locations__telehealth {
	margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
	max-width: 40rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

/* ——— FAQ ——— */
.bhp-service-faq {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-service-faq__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: start;
}

@media (min-width: 900px) {
	.bhp-service-faq__inner {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
		gap: clamp(2.5rem, 5vw, 4.5rem);
	}
}

.bhp-service-faq__header {
	margin: 0;
}

@media (min-width: 900px) {
	.bhp-service-faq__header {
		position: sticky;
		top: calc(var(--bhp-space-8) + 4.5rem);
	}
}

.bhp-service-faq__title {
	margin: 0;
	max-width: 16rem;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-tight);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-service-faq__list {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-width: 0;
	margin: 0;
}

.bhp-service-faq__list .bhp-faq-item:last-child {
	border-bottom: 1px solid var(--bhp-border);
}
