/**
 * New Patients page
 * Bright Horizons Psychiatry
 */

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

.bhp-np-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-np-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-np-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(1.25rem, 2.8vh, 1.85rem);
	width: 100%;
	max-width: 36rem;
	animation: bhp-np-hero-rise 0.85s var(--bhp-ease-out) both;
}

.bhp-np-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-np-hero__reassure {
	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-np-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bhp-space-3);
}

.bhp-np-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-np-hero__cta:hover,
.bhp-np-hero__cta:focus-visible {
	transform: translateY(-1px);
}

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

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

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

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

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

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

@keyframes bhp-np-hero-fade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

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

@media (max-width: 575px) {
	.bhp-np-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.bhp-np-hero__actions .bhp-btn {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}

/* ——— Scope: treat / refer ——— */
.bhp-np-scope {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-np-scope__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	max-width: 42rem;
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.bhp-np-scope__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-scope__intro {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
}

.bhp-np-scope__intro 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-np-scope__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	align-items: stretch;
}

@media (min-width: 900px) {
	.bhp-np-scope__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.bhp-np-scope__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-5);
	min-width: 0;
	height: 100%;
	padding: clamp(1.35rem, 2.5vw, 1.85rem);
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
}

.bhp-np-scope__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 0.95rem;
	line-height: 1;
}

.bhp-np-scope__card--treat .bhp-np-scope__icon {
	border-radius: var(--bhp-radius-full);
	background-color: var(--bhp-primary);
	color: var(--bhp-white);
}

.bhp-np-scope__card--refer .bhp-np-scope__icon {
	border-radius: var(--bhp-radius-full);
	background-color: var(--bhp-primary-light);
	color: var(--bhp-ink-muted);
	font-size: 1.05rem;
}

.bhp-np-scope__card-title {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	text-wrap: balance;
}

.bhp-np-scope__card--treat .bhp-np-scope__card-title {
	color: var(--bhp-primary);
}

.bhp-np-scope__card--refer .bhp-np-scope__card-title {
	color: var(--bhp-ink-muted);
}

.bhp-np-scope__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-np-scope__list > li {
	margin: 0;
	padding: var(--bhp-space-4) 0;
	border-bottom: 1px solid var(--bhp-border);
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
}

.bhp-np-scope__list > li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bhp-np-scope__card--treat .bhp-np-scope__list > li {
	color: var(--bhp-ink);
	border-bottom-color: rgba(1, 58, 101, 0.12);
}

.bhp-np-scope__card--refer .bhp-np-scope__list > li {
	color: var(--bhp-ink-muted);
}

.bhp-np-scope__list a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-scope__list a:hover,
.bhp-np-scope__list a:focus-visible {
	color: var(--bhp-primary);
}

.bhp-np-scope__note {
	margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
	max-width: 48rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	letter-spacing: var(--bhp-ls-tight);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

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

.bhp-np-process__header {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.bhp-np-process__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-process__timeline {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 3vw, 2.25rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

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

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

@media (min-width: 992px) {
	.bhp-np-process__step {
		flex-direction: column;
		gap: var(--bhp-space-4);
		height: 100%;
	}

	.bhp-np-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-np-process__step:last-child::after {
		right: 0;
	}
}

.bhp-np-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;
}

@media (min-width: 992px) {
	.bhp-np-process__step:not(:last-child)::before {
		display: none;
	}
}

.bhp-np-process__num {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	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-np-process__body {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
	width: 100%;
	padding-top: 0.25rem;
}

@media (min-width: 992px) {
	.bhp-np-process__body {
		padding-top: 0;
	}
}

.bhp-np-process__step-title {
	margin: 0;
	font-size: clamp(1.1rem, 1.8vw, 1.3rem);
	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-np-process__step-text {
	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-np-process__step-text a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-process__step-text a:hover,
.bhp-np-process__step-text a:focus-visible {
	color: var(--bhp-primary-dark);
}

/* ——— First appointment expect ——— */
.bhp-np-expect {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-np-expect__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	max-width: 44rem;
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.bhp-np-expect__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-expect__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-np-expect__track {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 992px) {
	.bhp-np-expect__track {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(1.25rem, 2.5vw, 1.75rem);
	}
}

.bhp-np-expect__chip {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	margin: 0;
	min-width: 0;
	height: 100%;
	padding: clamp(1.25rem, 2.5vw, 1.65rem);
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
}

.bhp-np-expect__time {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.95rem;
	background-color: var(--bhp-primary-light);
	color: var(--bhp-primary);
	border-radius: var(--bhp-btn-radius);
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1.3;
}

.bhp-np-expect__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-np-expect__text a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-expect__text a:hover,
.bhp-np-expect__text a:focus-visible {
	color: var(--bhp-primary-dark);
}

.bhp-np-expect__note {
	margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
	max-width: 48rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	letter-spacing: var(--bhp-ls-tight);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

/* ——— What to bring ——— */
.bhp-np-bring {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-np-bring__header {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.bhp-np-bring__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-bring__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	align-items: stretch;
}

@media (min-width: 900px) {
	.bhp-np-bring__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.bhp-np-bring__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-5);
	min-width: 0;
	height: 100%;
	padding: clamp(1.35rem, 2.5vw, 1.85rem);
	background-color: var(--bhp-surface-soft);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
}

.bhp-np-bring__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--bhp-radius-full);
	font-size: 0.95rem;
	line-height: 1;
}

.bhp-np-bring__card--required .bhp-np-bring__icon {
	background-color: var(--bhp-primary);
	color: var(--bhp-white);
}

.bhp-np-bring__card--optional .bhp-np-bring__icon {
	background-color: var(--bhp-primary-light);
	color: var(--bhp-primary);
}

.bhp-np-bring__card-title {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	text-wrap: balance;
}

.bhp-np-bring__card--required .bhp-np-bring__card-title {
	color: var(--bhp-primary);
}

.bhp-np-bring__card--optional .bhp-np-bring__card-title {
	color: var(--bhp-ink-muted);
}

.bhp-np-bring__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-np-bring__list > li {
	margin: 0;
	padding: var(--bhp-space-4) 0;
	border-bottom: 1px solid var(--bhp-border);
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
}

.bhp-np-bring__list > li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bhp-np-bring__card--required .bhp-np-bring__list > li {
	color: var(--bhp-ink);
	border-bottom-color: rgba(1, 58, 101, 0.12);
}

.bhp-np-bring__card--optional .bhp-np-bring__list > li {
	color: var(--bhp-ink-muted);
}

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

.bhp-np-insurance__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2.5rem, 5vw, 4rem);
	align-items: start;
}

@media (min-width: 992px) {
	.bhp-np-insurance__layout {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		gap: clamp(3rem, 6vw, 5rem);
	}
}

.bhp-np-insurance__main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	min-width: 0;
}

.bhp-np-insurance__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	max-width: 40rem;
	margin: 0;
}

.bhp-np-insurance__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-insurance__body {
	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-np-insurance__body a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-insurance__body a:hover,
.bhp-np-insurance__body a:focus-visible {
	color: var(--bhp-primary-dark);
}

.bhp-np-insurance__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2.5vw, 2rem);
	width: 100%;
	margin: 0;
	padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
	list-style: none;
	border-top: 1px solid var(--bhp-border);
	border-bottom: 1px solid var(--bhp-border);
}

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

.bhp-np-insurance__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 6.5rem;
	max-height: 2.35rem;
	object-fit: contain;
}

.bhp-np-insurance__note {
	margin: 0;
	max-width: 40rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	letter-spacing: var(--bhp-ls-tight);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

.bhp-np-insurance__note a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-insurance__note a:hover,
.bhp-np-insurance__note a:focus-visible {
	color: var(--bhp-primary-dark);
}

.bhp-np-insurance__faq {
	margin: 0;
	min-width: 0;
	width: 100%;
}

.bhp-np-insurance__faq .bhp-faq-item:last-child {
	border-bottom: 0;
}

/* ——— Costs ——— */
.bhp-np-costs {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-np-costs__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	max-width: 44rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bhp-np-costs__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-costs__body {
	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-np-costs__table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.bhp-np-costs__table {
	width: 100%;
	min-width: 36rem;
	border-collapse: collapse;
	table-layout: fixed;
}

.bhp-np-costs__table th,
.bhp-np-costs__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-np-costs__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-np-costs__table thead th:first-child {
	width: 34%;
}

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

.bhp-np-costs__table tbody td {
	color: var(--bhp-ink-muted);
}

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

.bhp-np-costs__note {
	margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
	max-width: 44rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	letter-spacing: var(--bhp-ls-tight);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

.bhp-np-costs__note a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-costs__note a:hover,
.bhp-np-costs__note a:focus-visible {
	color: var(--bhp-primary-dark);
}

/* ——— Offices ——— */
.bhp-np-offices {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-np-offices__header {
	max-width: 36rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bhp-np-offices__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-offices__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	align-items: stretch;
}

@media (min-width: 900px) {
	.bhp-np-offices__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.bhp-np-offices__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: clamp(1.35rem, 2.5vw, 1.85rem);
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
}

.bhp-np-offices__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--bhp-radius-full);
	background-color: var(--bhp-primary);
	color: var(--bhp-white);
	font-size: 0.95rem;
	line-height: 1;
}

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

.bhp-np-offices__name a {
	color: inherit;
	text-decoration: none;
}

.bhp-np-offices__name a:hover,
.bhp-np-offices__name a:focus-visible {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-offices__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-np-offices__hours {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-primary);
}

.bhp-np-offices__areas {
	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-np-offices__note {
	margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
	max-width: 48rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	letter-spacing: var(--bhp-ls-tight);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

/* ——— Telehealth / first visit ——— */
.bhp-np-telehealth {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-np-telehealth__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-5);
	max-width: 44rem;
}

.bhp-np-telehealth__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-telehealth__body 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-np-telehealth__body a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-telehealth__body a:hover,
.bhp-np-telehealth__body a:focus-visible {
	color: var(--bhp-primary-dark);
}

/* ——— Care team ——— */
.bhp-np-team {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-np-team__header {
	max-width: 36rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bhp-np-team__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-team__mosaic {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.bhp-np-team__card {
	margin: 0;
	min-width: 0;
}

.bhp-np-team__link {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	transition:
		transform var(--bhp-transition),
		box-shadow var(--bhp-transition),
		border-color var(--bhp-transition);
}

a.bhp-np-team__link:hover,
a.bhp-np-team__link:focus-visible {
	transform: translateY(-2px);
	border-color: var(--bhp-border-strong);
	box-shadow: var(--bhp-shadow-soft);
}

a.bhp-np-team__link:focus-visible {
	outline: 2px solid var(--bhp-primary);
	outline-offset: 2px;
}

.bhp-np-team__photo {
	position: relative;
	aspect-ratio: 4 / 5;
	background-color: var(--bhp-primary-light);
	overflow: hidden;
}

.bhp-np-team__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform var(--bhp-transition-slow);
}

a.bhp-np-team__link:hover .bhp-np-team__photo img,
a.bhp-np-team__link:focus-visible .bhp-np-team__photo img {
	transform: scale(1.03);
}

.bhp-np-team__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	color: var(--bhp-primary);
}

.bhp-np-team__meta {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-2);
	padding: clamp(1rem, 2vw, 1.35rem);
}

.bhp-np-team__name {
	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-np-team__role {
	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-np-team__note {
	margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
	max-width: 48rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	letter-spacing: var(--bhp-ls-tight);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

@media (prefers-reduced-motion: reduce) {
	a.bhp-np-team__link:hover,
	a.bhp-np-team__link:focus-visible {
		transform: none;
	}

	a.bhp-np-team__link:hover .bhp-np-team__photo img,
	a.bhp-np-team__link:focus-visible .bhp-np-team__photo img {
		transform: none;
	}
}

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

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

@media (min-width: 992px) {
	.bhp-np-faq__inner {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
		gap: clamp(3rem, 6vw, 5rem);
	}
}

.bhp-np-faq__header {
	max-width: 28rem;
}

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

.bhp-np-faq__title {
	margin: 0;
	font-size: clamp(1.85rem, 3.4vw, 2.65rem);
	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-np-faq__list {
	min-width: 0;
	width: 100%;
}

.bhp-np-faq__list .bhp-faq-item:last-child {
	border-bottom: 0;
}

.bhp-np-faq__more {
	margin: clamp(1.5rem, 3vw, 2rem) 0 0;
	grid-column: 1 / -1;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-semibold);
}

.bhp-np-faq__more a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-np-faq__more a:hover,
.bhp-np-faq__more a:focus-visible {
	color: var(--bhp-primary-dark);
}
