/**
 * TMS page
 * Bright Horizons Psychiatry
 */

/* ——— Hero (white split layout) ——— */
.bhp-tms-hero {
	--bhp-tms-sticky-top: calc(var(--bhp-header-height, 4.5rem) + 2.5rem);
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

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

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

.bhp-tms-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-tms-hero-rise 0.85s var(--bhp-ease-out) both;
}

@media (min-width: 992px) {
	.bhp-tms-hero__content {
		position: sticky;
		top: var(--bhp-tms-sticky-top);
	}
}

.bhp-tms-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0.45rem 0.85rem;
	background-color: var(--bhp-primary-light);
	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;
	color: var(--bhp-primary);
}

.bhp-tms-hero__title {
	margin: 0;
	max-width: 36rem;
	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-tms-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-tms-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bhp-space-3);
	margin-top: var(--bhp-space-2);
}

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

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

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

.bhp-tms-hero__media {
	width: 100%;
	margin: var(--bhp-space-2) 0 0;
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	background-color: var(--bhp-surface-2);
}

.bhp-tms-hero__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
}

/* Right column: GHL booking form */
.bhp-tms-hero__form {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	width: 100%;
	min-width: 0;
	scroll-margin-top: calc(var(--bhp-header-height, 4.5rem) + 0.75rem);
	animation: bhp-tms-hero-fade 1s var(--bhp-ease-out) 0.12s both;
}

.bhp-tms-hero__form-card {
	width: 100%;
	padding: clamp(0.75rem, 1.5vw, 1.15rem);
	background: var(--bhp-white);
	border: 1px solid rgba(0, 17, 30, 0.08);
	border-radius: var(--bhp-btn-radius);
	box-shadow: 0 18px 40px rgba(0, 17, 30, 0.06);
}

.bhp-tms-hero__form-card .bhp-ghl-calendar {
	min-height: 782px;
}

.bhp-tms-hero__form-empty {
	margin: 0 0 1rem;
	font-size: var(--bhp-fs-base);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
}

.bhp-tms-hero__form-legal {
	margin: clamp(0.85rem, 1.5vw, 1.15rem) 0 0;
	padding: 0 0.25rem;
	font-size: var(--bhp-fs-xs);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-subtle);
	text-align: center;
	text-wrap: pretty;
}

.bhp-tms-hero__form-legal a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.bhp-tms-hero__form-legal a:hover,
.bhp-tms-hero__form-legal a:focus-visible {
	color: var(--bhp-primary-dark);
}

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

@keyframes bhp-tms-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-tms-hero__content,
	.bhp-tms-hero__form,
	.bhp-tms-hero__cta {
		animation: none;
		transition: none;
	}

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

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

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

/* ——— Proof strip ——— */
.bhp-tms-proof {
	padding-top: clamp(2.5rem, 5vw, 4rem);
	padding-bottom: clamp(2.5rem, 5vw, 4rem);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-tms-proof__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 576px) {
	.bhp-tms-proof__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
	}
}

@media (min-width: 992px) {
	.bhp-tms-proof__list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(1.5rem, 3vw, 2.75rem);
		align-items: start;
	}
}

.bhp-tms-proof__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-3);
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
}

.bhp-tms-proof__value {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1;
	color: var(--bhp-primary-dark);
}

.bhp-tms-proof__caption {
	margin: 0;
	max-width: 16rem;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink-muted);
	text-wrap: pretty;
}

/* ——— Qualifier ——— */
.bhp-tms-qualify {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-primary-light);
	color: var(--bhp-ink);
}

.bhp-tms-qualify__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	max-width: 40rem;
	margin: 0 0 clamp(2rem, 4vw, 3.25rem);
	text-align: left;
}

@media (min-width: 768px) {
	.bhp-tms-qualify__header {
		align-items: center;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}

.bhp-tms-qualify__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-tms-qualify__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-tms-qualify__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bhp-space-4) clamp(1.5rem, 3vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.bhp-tms-qualify__item {
	display: flex;
	align-items: flex-start;
	gap: var(--bhp-space-3);
	margin: 0;
	padding: 0;
}

.bhp-tms-qualify__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	margin-top: 0.15rem;
	border-radius: var(--bhp-radius-full);
	background-color: var(--bhp-primary);
	color: var(--bhp-white);
	font-size: 0.65rem;
	line-height: 1;
}

.bhp-tms-qualify__text {
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
	text-wrap: pretty;
}

.bhp-tms-qualify__note {
	margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
	max-width: 48rem;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink-muted);
	text-align: left;
	text-wrap: pretty;
}

@media (min-width: 768px) {
	.bhp-tms-qualify__note {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}

.bhp-tms-qualify__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-3);
	margin-top: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
	.bhp-tms-qualify__actions {
		align-items: center;
	}
}

.bhp-tms-qualify__cta {
	display: flex;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
}

.bhp-tms-qualify__cta-sub {
	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);
	text-align: left;
}

@media (min-width: 768px) {
	.bhp-tms-qualify__cta-sub {
		text-align: center;
	}
}

/* ——— Insurance logos (homepage block on TMS) ——— */
.bhp-insurance.bhp-insurance--soft {
	background-color: var(--bhp-surface-soft);
}

.bhp-insurance.bhp-insurance--soft::before {
	background:
		radial-gradient(ellipse 50% 45% at 0% 0%, rgba(1, 58, 101, 0.07), transparent 55%),
		radial-gradient(ellipse 45% 40% at 100% 100%, rgba(75, 190, 221, 0.1), transparent 55%);
}

/* ——— What is TMS ——— */
.bhp-tms-what {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

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

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

.bhp-tms-what__media {
	position: relative;
	width: 100%;
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	background-color: var(--bhp-midnight);
	aspect-ratio: 4 / 5;
}

@media (min-width: 992px) {
	.bhp-tms-what__media {
		aspect-ratio: auto;
		min-height: 28rem;
		align-self: stretch;
		height: 100%;
	}
}

.bhp-tms-what__open {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: inherit;
	overflow: hidden;
	cursor: pointer;
	background: var(--bhp-midnight);
	isolation: isolate;
}

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

.bhp-tms-what__open::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 45%, rgba(0, 17, 30, 0.45) 100%);
}

.bhp-tms-what__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}

@media (min-width: 992px) {
	.bhp-tms-what__video {
		position: absolute;
		inset: 0;
	}
}

.bhp-tms-what__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.25rem;
	height: 4.25rem;
	border-radius: var(--bhp-radius-full);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	color: var(--bhp-white);
	font-size: 1.15rem;
	transform: translate(-50%, -50%);
	box-shadow: 0 10px 28px rgba(0, 17, 30, 0.18);
	transition:
		transform var(--bhp-transition),
		background-color var(--bhp-transition);
}

.bhp-tms-what__play i {
	margin-left: 0.15rem;
}

.bhp-tms-what__open:hover .bhp-tms-what__play,
.bhp-tms-what__open:focus-visible .bhp-tms-what__play {
	transform: translate(-50%, -50%) scale(1.06);
	background: rgba(255, 255, 255, 0.2);
}

@media (prefers-reduced-motion: reduce) {
	.bhp-tms-what__play {
		transition: none;
	}

	.bhp-tms-what__open:hover .bhp-tms-what__play,
	.bhp-tms-what__open:focus-visible .bhp-tms-what__play {
		transform: translate(-50%, -50%);
	}
}

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

.bhp-tms-what__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-tms-what__copy {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-4);
	width: 100%;
}

.bhp-tms-what__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-tms-what__callout {
	width: 100%;
	margin: 0;
	padding: clamp(1.15rem, 2.5vw, 1.5rem);
	background-color: var(--bhp-primary-light);
	border-left: 3px solid var(--bhp-primary);
	border-radius: var(--bhp-btn-radius);
}

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

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

/* ——— How TMS works ——— */
.bhp-tms-how {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

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

.bhp-tms-how__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-tms-how__timeline {
	position: relative;
	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-tms-how__timeline {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(1.25rem, 2.5vw, 2rem);
	}

	.bhp-tms-how__timeline::before {
		content: "";
		position: absolute;
		top: 1.25rem;
		left: 0;
		right: 0;
		height: 1px;
		background-color: var(--bhp-border-strong);
		pointer-events: none;
	}
}

.bhp-tms-how__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-tms-how__step {
		flex-direction: column;
		gap: var(--bhp-space-4);
		height: 100%;
	}
}

.bhp-tms-how__step:not(:last-child)::before {
	content: "";
	position: absolute;
	top: 2.5rem;
	left: calc(2.5rem / 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-tms-how__step:not(:last-child)::before {
		display: none;
	}
}

.bhp-tms-how__num {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	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;
	box-shadow: 0 0 0 0.35rem var(--bhp-surface-soft);
}

.bhp-tms-how__body {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
	width: 100%;
	padding-top: 0.25rem;
}

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

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

/* ——— Conditions ——— */
.bhp-tms-conditions {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-tms-conditions__layout {
	display: grid;
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

@media (min-width: 992px) {
	.bhp-tms-conditions__layout {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
		gap: var(--bhp-space-16);
		align-items: start;
	}
}

.bhp-tms-conditions__header {
	max-width: 28rem;
	margin: 0;
}

@media (min-width: 992px) {
	.bhp-tms-conditions__header {
		position: sticky;
		top: calc(var(--bhp-header-height, 5rem) + 1.5rem);
	}
}

.bhp-tms-conditions__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-tms-conditions__main {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bhp-tms-conditions__list {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
	margin: 0;
	padding: 0;
}

.bhp-tms-conditions__card.bhp-faq-item {
	margin: 0;
	padding: 0;
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
	background-color: var(--bhp-surface);
	overflow: hidden;
}

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

.bhp-tms-conditions__summary.bhp-faq-item__q {
	align-items: center;
	gap: var(--bhp-space-4);
	padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2.5vw, 1.5rem);
	color: var(--bhp-primary-dark);
}

.bhp-tms-conditions__card[open] .bhp-tms-conditions__summary.bhp-faq-item__q {
	color: var(--bhp-primary-dark);
}

.bhp-tms-conditions__lead {
	display: inline-flex;
	align-items: center;
	gap: var(--bhp-space-4);
	min-width: 0;
	flex: 1;
}

.bhp-tms-conditions__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--bhp-btn-radius);
	background-color: var(--bhp-primary-light);
	color: var(--bhp-primary);
	font-size: 1rem;
}

.bhp-tms-conditions__card-title {
	font-size: clamp(1.05rem, 1.8vw, 1.2rem);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	text-wrap: balance;
}

.bhp-tms-conditions__body.bhp-faq-item__a {
	max-width: none;
	padding-left: clamp(1rem, 2.5vw, 1.5rem);
	padding-right: clamp(1rem, 2.5vw, 1.5rem);
}

.bhp-tms-conditions__body.bhp-faq-item__a p {
	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-tms-conditions__note {
	margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
	max-width: 48rem;
	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 (min-width: 768px) {
	.bhp-tms-conditions__body.bhp-faq-item__a {
		padding-left: calc(clamp(1rem, 2.5vw, 1.5rem) + 2.5rem + var(--bhp-space-4));
	}
}

/* ——— What it feels like ——— */
.bhp-tms-feel {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-primary-dark);
	color: var(--bhp-white);
}

.bhp-tms-feel__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-5);
	max-width: 48rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bhp-tms-feel__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-white);
	text-wrap: balance;
}

.bhp-tms-feel__quote {
	margin: 0;
	font-size: clamp(1.25rem, 2.4vw, 1.65rem);
	font-weight: var(--bhp-fw-medium);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-relaxed);
	color: rgba(255, 255, 255, 0.88);
	text-wrap: pretty;
}

.bhp-tms-feel__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 3.5vw, 2.5rem) clamp(2rem, 4vw, 3.5rem);
}

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

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

.bhp-tms-feel__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-3);
	margin: 0;
	min-width: 0;
}

.bhp-tms-feel__item-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-white);
	text-wrap: balance;
}

.bhp-tms-feel__item-text {
	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.78);
	text-wrap: pretty;
}

/* ——— Honest take ——— */
.bhp-tms-honest {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-tms-honest__header {
	max-width: 40rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

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

.bhp-tms-honest__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);
	border-radius: var(--bhp-btn-radius);
	border: 1px solid transparent;
}

.bhp-tms-honest__card--pros {
	background-color: rgba(26, 127, 75, 0.08);
	border-color: rgba(26, 127, 75, 0.18);
}

.bhp-tms-honest__card--cons {
	background-color: rgba(196, 122, 0, 0.1);
	border-color: rgba(196, 122, 0, 0.2);
}

.bhp-tms-honest__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-tms-honest__card--pros .bhp-tms-honest__card-title {
	color: var(--bhp-success);
}

.bhp-tms-honest__card--cons .bhp-tms-honest__card-title {
	color: var(--bhp-warning);
}

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

.bhp-tms-honest__list > li {
	display: flex;
	align-items: flex-start;
	gap: var(--bhp-space-3);
	margin: 0;
	padding: var(--bhp-space-4) 0;
	border-bottom: 1px solid rgba(0, 17, 30, 0.1);
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
	text-wrap: pretty;
}

.bhp-tms-honest__list > li:first-child {
	padding-top: 0;
}

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

.bhp-tms-honest__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	margin-top: 0.1rem;
	border-radius: var(--bhp-radius-full);
	font-size: 0.65rem;
	line-height: 1;
}

.bhp-tms-honest__card--pros .bhp-tms-honest__mark {
	background-color: var(--bhp-success);
	color: var(--bhp-white);
}

.bhp-tms-honest__card--cons .bhp-tms-honest__mark {
	background-color: var(--bhp-warning);
	color: var(--bhp-white);
}

.bhp-tms-honest__callout {
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
	padding: clamp(1.15rem, 2.5vw, 1.5rem);
	background-color: var(--bhp-primary-light);
	border-left: 3px solid var(--bhp-primary);
	border-radius: var(--bhp-btn-radius);
}

.bhp-tms-honest__callout p {
	margin: 0;
	max-width: 52rem;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-relaxed);
	color: var(--bhp-ink);
	text-wrap: pretty;
}

.bhp-tms-honest__callout a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	font-weight: var(--bhp-fw-semibold);
}

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

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

.bhp-tms-cost__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	align-items: stretch;
}

@media (min-width: 992px) {
	.bhp-tms-cost__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: start;
	}
}

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

@media (min-width: 992px) {
	.bhp-tms-cost__header {
		position: sticky;
		top: calc(var(--bhp-header-height, 4.5rem) + 1.5rem);
		padding-right: var(--bhp-space-4);
	}
}

.bhp-tms-cost__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-tms-cost__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-tms-cost__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-3);
	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-tms-cost__label {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-wide);
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--bhp-primary);
}

.bhp-tms-cost__price {
	margin: 0;
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1.15;
	color: var(--bhp-primary-dark);
}

.bhp-tms-cost__unit {
	margin: 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
}

.bhp-tms-cost__text {
	margin: var(--bhp-space-2) 0 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;
}

/* ——— Week-by-week expect ——— */
.bhp-tms-expect {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-tms-expect__header {
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}

.bhp-tms-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-tms-expect__timeline {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-tms-expect__timeline::before {
	content: "";
	position: absolute;
	top: 0.85rem;
	bottom: 0.85rem;
	left: 0.7rem;
	width: 1px;
	background-color: var(--bhp-border-strong);
	pointer-events: none;
}

@media (min-width: 900px) {
	.bhp-tms-expect__timeline::before {
		left: 50%;
		transform: translateX(-0.5px);
	}
}

.bhp-tms-expect__stage {
	position: relative;
	display: grid;
	grid-template-columns: 1.5rem minmax(0, 1fr);
	gap: var(--bhp-space-5);
	margin: 0;
	align-items: start;
}

@media (min-width: 900px) {
	.bhp-tms-expect__stage {
		grid-template-columns: minmax(0, 1fr) minmax(8rem, 12rem) minmax(0, 1fr);
		gap: clamp(1.5rem, 3vw, 2.5rem);
		align-items: center;
	}
}

.bhp-tms-expect__spine {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	grid-column: 1;
	grid-row: 1;
	padding-top: 0.35rem;
}

@media (min-width: 900px) {
	.bhp-tms-expect__spine {
		grid-column: 2;
		grid-row: 1;
		justify-content: center;
		align-items: center;
		padding-top: 0;
	}
}

.bhp-tms-expect__week {
	display: none;
}

.bhp-tms-expect__spine::before {
	content: "";
	display: block;
	width: 0.85rem;
	height: 0.85rem;
	border-radius: var(--bhp-radius-full);
	background-color: var(--bhp-primary);
	border: 2px solid var(--bhp-white);
	box-shadow: 0 0 0 1px var(--bhp-border-strong);
}

@media (min-width: 900px) {
	.bhp-tms-expect__spine::before {
		display: none;
	}

	.bhp-tms-expect__week {
		display: block;
		width: 100%;
		margin: 0;
		padding: var(--bhp-space-3) var(--bhp-space-2);
		background-color: var(--bhp-white);
		font-size: clamp(1.2rem, 2.2vw, 1.55rem);
		font-weight: var(--bhp-fw-bold);
		letter-spacing: var(--bhp-ls-tight);
		line-height: 1.15;
		color: var(--bhp-primary);
		text-align: center;
		text-wrap: balance;
	}
}

.bhp-tms-expect__body {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
	min-width: 0;
}

.bhp-tms-expect__body::before {
	content: attr(data-week);
	display: block;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-wide);
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--bhp-primary);
}

@media (min-width: 900px) {
	.bhp-tms-expect__body::before {
		display: none;
	}

	.bhp-tms-expect__stage--left .bhp-tms-expect__body {
		grid-column: 1;
		grid-row: 1;
		text-align: right;
		align-items: flex-end;
	}

	.bhp-tms-expect__stage--right .bhp-tms-expect__body {
		grid-column: 3;
		grid-row: 1;
		text-align: left;
		align-items: flex-start;
	}
}

.bhp-tms-expect__stage-title {
	margin: 0;
	font-size: clamp(1.15rem, 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);
	text-wrap: balance;
}

.bhp-tms-expect__stage-text {
	margin: 0;
	max-width: 28rem;
	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;
}

/* ——— Your doctor ——— */
.bhp-tms-doctor {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-primary-light);
	color: var(--bhp-ink);
}

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

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

.bhp-tms-doctor__media {
	position: relative;
	width: 100%;
	max-width: 22rem;
	margin: 0 auto;
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	background-color: var(--bhp-primary-light);
	aspect-ratio: 3 / 4;
}

@media (min-width: 900px) {
	.bhp-tms-doctor__media {
		max-width: 26rem;
		margin: 0;
		align-self: start;
		width: 100%;
	}
}

.bhp-tms-doctor__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

@media (min-width: 900px) {
	.bhp-tms-doctor__image {
		position: absolute;
		inset: 0;
	}
}

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

.bhp-tms-doctor__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-tms-doctor__role {
	margin: 0;
	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-primary);
}

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

.bhp-tms-doctor__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-tms-doctor__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bhp-space-3);
	width: 100%;
	margin: var(--bhp-space-2) 0 0;
	padding: 0;
	list-style: none;
}

.bhp-tms-doctor__badge {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0.45rem 0.85rem;
	background-color: var(--bhp-white);
	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;
	color: var(--bhp-primary);
}

/* ——— Patient results ——— */
.bhp-tms-results {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

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

.bhp-tms-results__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-tms-results__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-tms-results__videos.bhp-testimonials {
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.bhp-tms-results__google {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.25rem);
}

.bhp-tms-results__rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bhp-space-3) var(--bhp-space-4);
	padding: clamp(1.15rem, 2.5vw, 1.5rem);
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
}

.bhp-tms-results__google-logo {
	display: block;
	width: auto;
	height: 1.35rem;
}

.bhp-tms-results__score {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1;
	color: var(--bhp-primary-dark);
}

.bhp-tms-results__stars {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	color: #fbbc04;
	font-size: 1rem;
}

.bhp-tms-results__count {
	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-ink);
}

.bhp-tms-results__google-link {
	margin-left: auto;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-tight);
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.bhp-tms-results__google-link:hover,
.bhp-tms-results__google-link:focus-visible {
	color: var(--bhp-primary-dark);
}

.bhp-tms-results__cards {
	margin: 0;
}

.bhp-tms-results__more {
	display: flex;
	justify-content: center;
	margin-top: clamp(0.25rem, 1vw, 0.5rem);
}

.bhp-tms-results__more .bhp-btn {
	margin: 0;
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
}

@media (max-width: 575px) {
	.bhp-tms-results__google-link {
		margin-left: 0;
		width: 100%;
	}
}

/* ——— Rockville location ——— */
.bhp-tms-location {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-tms-location__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-tms-location__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-tms-location__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-tms-location__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 3.5vw, 2.5rem);
	align-items: stretch;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 900px) {
	.bhp-tms-location__layout {
		grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
		gap: clamp(2rem, 4vw, 3.5rem);
	}
}

.bhp-tms-location__map {
	position: relative;
	width: 100%;
	min-height: 18rem;
	aspect-ratio: 16 / 11;
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	background-color: var(--bhp-primary-light);
}

@media (min-width: 900px) {
	.bhp-tms-location__map {
		min-height: 28rem;
		height: 100%;
		aspect-ratio: auto;
		align-self: stretch;
	}
}

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

@media (min-width: 900px) {
	.bhp-tms-location__map iframe {
		position: absolute;
		inset: 0;
	}
}

.bhp-tms-location__details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: var(--bhp-space-5);
	min-width: 0;
	height: 100%;
}

.bhp-tms-location__address-block {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-2);
}

.bhp-tms-location__practice {
	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-primary-dark);
}

.bhp-tms-location__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-tms-location__meta {
	display: flex;
	flex-direction: column;
	gap: var(--bhp-space-3);
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-tms-location__meta > li {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
	margin: 0;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
}

.bhp-tms-location__meta-label {
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-wide);
	text-transform: uppercase;
	color: var(--bhp-ink-muted);
}

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

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

.bhp-tms-location__cta {
	margin: 0;
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
}

.bhp-tms-location__areas-heading {
	margin: var(--bhp-space-2) 0 0;
	font-size: var(--bhp-fs-sm);
	font-weight: var(--bhp-fw-semibold);
	letter-spacing: var(--bhp-ls-wide);
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--bhp-primary);
}

.bhp-tms-location__areas {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bhp-space-2);
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-tms-location__chip {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: 0.45rem 0.85rem;
	background-color: var(--bhp-primary-light);
	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;
	color: var(--bhp-primary);
}

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

.bhp-tms-faq__layout {
	display: grid;
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

@media (min-width: 992px) {
	.bhp-tms-faq__layout {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
		gap: var(--bhp-space-16);
		align-items: start;
	}
}

.bhp-tms-faq__header {
	max-width: 28rem;
	margin: 0;
}

@media (min-width: 992px) {
	.bhp-tms-faq__header {
		position: sticky;
		top: calc(var(--bhp-header-height, 4.5rem) + 1.5rem);
	}
}

.bhp-tms-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-tms-faq__list {
	width: 100%;
	min-width: 0;
}

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

.bhp-tms-faq__list .bhp-faq-item__a {
	max-width: none;
}
