/**
 * Spravato hub page
 * Bright Horizons Psychiatry
 */

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

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

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

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

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

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

/* Right column: photo */
.bhp-spravato-hero__aside {
	position: relative;
	width: 100%;
	min-height: 22rem;
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
	isolation: isolate;
	background-color: var(--bhp-surface-2);
	background-image: var(--bhp-spravato-hero-aside-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	animation: bhp-spravato-hero-fade 1s var(--bhp-ease-out) 0.12s both;
}

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

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

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

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

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

/* ——— What Spravato is ——— */
.bhp-spravato-what {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

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

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

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

.bhp-spravato-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-spravato-what__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-spravato-what__timeline {
	--bhp-spravato-dot: 0.85rem;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: clamp(1.75rem, 3.5vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-spravato-what__timeline::before {
	content: "";
	position: absolute;
	top: 0.85rem;
	bottom: 0.85rem;
	left: calc(var(--bhp-spravato-dot) / 2);
	width: 1px;
	transform: translateX(-50%);
	background-color: var(--bhp-border-strong);
	pointer-events: none;
}

.bhp-spravato-what__milestone {
	position: relative;
	display: grid;
	grid-template-columns: var(--bhp-spravato-dot) minmax(0, 1fr);
	column-gap: var(--bhp-space-5);
	row-gap: var(--bhp-space-2);
	margin: 0;
	align-items: start;
}

.bhp-spravato-what__milestone::before {
	content: "";
	grid-column: 1;
	grid-row: 1 / span 2;
	justify-self: center;
	align-self: start;
	width: var(--bhp-spravato-dot);
	height: var(--bhp-spravato-dot);
	margin-top: 0.35rem;
	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);
	z-index: 1;
}

.bhp-spravato-what__year {
	grid-column: 2;
	margin: 0;
	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-spravato-what__milestone-text {
	grid-column: 2;
	margin: 0;
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-ink);
	text-wrap: pretty;
}

/* ——— How it is different ——— */
.bhp-spravato-diff {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

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

.bhp-spravato-diff__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-spravato-diff__grid {
	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-spravato-diff__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: clamp(1.25rem, 2.5vw, 1.75rem);
	}
}

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

.bhp-spravato-diff__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-spravato-diff__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-primary-dark);
	text-wrap: balance;
}

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

/* ——— Who Spravato is for ——— */
.bhp-spravato-fit {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

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

.bhp-spravato-fit__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-spravato-fit__columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 800px) {
	.bhp-spravato-fit__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(2.5rem, 5vw, 4rem);
	}
}

.bhp-spravato-fit__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-5);
	min-width: 0;
}

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

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

.bhp-spravato-fit__icon {
	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);
	font-size: 0.65rem;
	line-height: 1;
}

.bhp-spravato-fit__icon--yes {
	background-color: var(--bhp-primary);
	color: var(--bhp-white);
}

.bhp-spravato-fit__icon--no {
	background-color: var(--bhp-border-strong);
	color: var(--bhp-ink-muted);
}

.bhp-spravato-fit__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-spravato-fit__note {
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	max-width: 48rem;
	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;
}

/* ——— How esketamine works ——— */
.bhp-spravato-works {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

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

.bhp-spravato-works__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-spravato-works__compare {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	align-items: stretch;
}

@media (min-width: 800px) {
	.bhp-spravato-works__compare {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(1.5rem, 3vw, 2rem);
	}
}

.bhp-spravato-works__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	min-width: 0;
	height: 100%;
	padding: clamp(1.35rem, 2.5vw, 1.85rem);
	border-radius: var(--bhp-btn-radius);
}

.bhp-spravato-works__col--conventional {
	background-color: var(--bhp-surface-soft);
}

.bhp-spravato-works__col--esketamine {
	background-color: var(--bhp-primary-light);
}

.bhp-spravato-works__label {
	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-spravato-works__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-spravato-works__stats {
	margin-top: clamp(2rem, 4vw, 3rem);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	background-color: var(--bhp-primary-dark);
	border-radius: var(--bhp-btn-radius);
	color: var(--bhp-white);
}

.bhp-spravato-works__figures {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.bhp-spravato-works__figure {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-2);
	margin: 0;
	min-width: 0;
}

.bhp-spravato-works__value {
	font-size: clamp(2.25rem, 4.5vw, 3.25rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1;
	color: var(--bhp-white);
}

.bhp-spravato-works__caption {
	font-size: var(--bhp-fs-base);
	font-weight: var(--bhp-fw-medium);
	line-height: var(--bhp-lh-snug);
	color: rgba(255, 255, 255, 0.85);
	text-wrap: pretty;
}

.bhp-spravato-works__note {
	margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
	max-width: 48rem;
	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;
}

/* ——— What a session looks like ——— */
.bhp-spravato-session {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

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

.bhp-spravato-session__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-spravato-session__steps {
	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-spravato-session__steps {
		grid-template-columns: 1fr 1fr 1.65fr 1fr;
		gap: clamp(1.25rem, 2.5vw, 2rem);
		align-items: start;
	}

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

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

.bhp-spravato-session__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-spravato-session__step:not(:last-child)::before {
		display: none;
	}
}

.bhp-spravato-session__icon {
	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-radius-full);
	background-color: var(--bhp-primary);
	color: var(--bhp-white);
	font-size: 0.95rem;
	line-height: 1;
	box-shadow: 0 0 0 0.35rem var(--bhp-surface-soft);
}

.bhp-spravato-session__step--wide .bhp-spravato-session__icon {
	background-color: var(--bhp-primary-dark);
}

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

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

.bhp-spravato-session__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-spravato-session__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-spravato-session__note {
	margin-top: clamp(2rem, 4vw, 3rem);
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
	background-color: var(--bhp-white);
	border-radius: var(--bhp-btn-radius);
}

.bhp-spravato-session__note 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-muted);
	text-wrap: pretty;
}

/* ——— Treatment schedule ——— */
.bhp-spravato-schedule {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-spravato-schedule__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-5);
	margin-bottom: clamp(4rem, 8vw, 6.5rem);
}

@media (min-width: 800px) {
	.bhp-spravato-schedule__header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: var(--bhp-space-8);
	}
}

.bhp-spravato-schedule__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-3);
	max-width: 36rem;
}

.bhp-spravato-schedule__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-spravato-schedule__cta {
	flex-shrink: 0;
	margin: 0;
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
}

.bhp-spravato-schedule__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-spravato-schedule__stage {
	position: relative;
}

.bhp-spravato-schedule__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	margin: 0;
	min-width: 0;
	min-height: 100%;
	padding: clamp(1.5rem, 3vw, 2rem);
	overflow: hidden;
	background-color: var(--bhp-surface-soft);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
}

@media (min-width: 900px) {
	.bhp-spravato-schedule__stage {
		--bhp-spravato-offset-2: 8.5;
		--bhp-spravato-offset-3: 17;
		/* Only enough scroll room for the two rises — keeps the section snappy. */
		min-height: calc(100vh + 20rem);
	}

	.bhp-spravato-schedule__grid {
		position: sticky;
		top: calc(var(--bhp-header-height, 4.5rem) + 7rem);
		z-index: 1;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: clamp(1.25rem, 2.5vw, 1.75rem);
		align-items: stretch;
		padding-bottom: clamp(8rem, 14vw, 12rem);
	}

	.bhp-spravato-schedule__card {
		height: 100%;
		transform: translate3d(0, var(--bhp-spravato-y, 0px), 0);
		backface-visibility: hidden;
	}

	.bhp-spravato-schedule__card:nth-child(2) {
		--bhp-spravato-y: calc(var(--bhp-spravato-offset-2) * 1rem);
	}

	.bhp-spravato-schedule__card:nth-child(3) {
		--bhp-spravato-y: calc(var(--bhp-spravato-offset-3) * 1rem);
	}
}

@media (max-width: 899px) {
	.bhp-spravato-schedule__card {
		position: sticky;
		top: calc(
			var(--bhp-header-height, 4.5rem) + 0.75rem + (var(--bhp-spravato-step, 0) * 1.25rem)
		);
		z-index: calc(1 + var(--bhp-spravato-step, 0));
		box-shadow: var(--bhp-shadow-soft);
	}
}

.bhp-spravato-schedule__num {
	position: absolute;
	top: 0.85rem;
	right: 1rem;
	z-index: 0;
	font-size: clamp(3.5rem, 6vw, 4.75rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: 1;
	color: var(--bhp-primary-light);
	pointer-events: none;
	user-select: none;
}

.bhp-spravato-schedule__phase {
	position: relative;
	z-index: 1;
	margin: 6em 0 0;
	font-size: clamp(1.35rem, 2.2vw, 1.65rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-primary-dark);
	text-wrap: balance;
}

.bhp-spravato-schedule__period {
	position: relative;
	z-index: 1;
	margin: 0;
	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-spravato-schedule__detail {
	position: relative;
	z-index: 1;
	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-spravato-schedule__note {
	margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
	max-width: 48rem;
	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;
}

@media (prefers-reduced-motion: reduce) {
	.bhp-spravato-schedule__stage {
		min-height: 0;
	}

	.bhp-spravato-schedule__grid {
		position: static;
	}

	.bhp-spravato-schedule__card {
		position: relative;
		top: auto;
		transform: none !important;
		animation: none !important;
		box-shadow: none;
	}
}

/* ——— On its own or alongside a pill ——— */
.bhp-spravato-routes {
	padding-top: clamp(3rem, 6vw, 4.5rem);
	padding-bottom: clamp(3rem, 6vw, 4.5rem);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-spravato-routes__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 800px) {
	.bhp-spravato-routes__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(3rem, 6vw, 5rem);
	}
}

.bhp-spravato-routes__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	max-width: 32rem;
	min-width: 0;
}

.bhp-spravato-routes__title {
	margin: 0;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	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-spravato-routes__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;
}

/* ——— Spravato, ketamine, or TMS ——— */
.bhp-spravato-compare {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

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

.bhp-spravato-compare__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-spravato-compare__scroll {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--bhp-btn-radius);
	border: 1px solid var(--bhp-border);
	background-color: var(--bhp-white);
}

.bhp-spravato-compare__table {
	width: 100%;
	min-width: 48rem;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.bhp-spravato-compare__table th,
.bhp-spravato-compare__table td {
	padding: clamp(0.95rem, 2vw, 1.2rem) clamp(0.9rem, 1.8vw, 1.35rem);
	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-spravato-compare__table thead th {
	background-color: var(--bhp-primary);
	color: var(--bhp-white);
	font-weight: var(--bhp-fw-semibold);
	border-bottom: 0;
}

.bhp-spravato-compare__table thead th:first-child {
	border-top-left-radius: calc(var(--bhp-btn-radius) - 1px);
}

.bhp-spravato-compare__table thead th:last-child {
	border-top-right-radius: calc(var(--bhp-btn-radius) - 1px);
}

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

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

.bhp-spravato-compare__table thead th.bhp-spravato-compare__featured,
.bhp-spravato-compare__table tbody td.bhp-spravato-compare__featured {
	background-color: var(--bhp-primary);
	color: var(--bhp-white);
	font-weight: var(--bhp-fw-medium);
}

.bhp-spravato-compare__table tbody td.bhp-spravato-compare__featured {
	border-bottom-color: rgba(255, 255, 255, 0.18);
}

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

.bhp-spravato-compare__table tbody tr:last-child td.bhp-spravato-compare__featured {
	border-bottom-left-radius: 0;
}

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

.bhp-spravato-compare__note {
	margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
	max-width: 48rem;
	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;
}

/* ——— Side effects ——— */
.bhp-spravato-effects {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

.bhp-spravato-effects__header {
	max-width: 40rem;
	margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.bhp-spravato-effects__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-spravato-effects__chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--bhp-space-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.bhp-spravato-effects__chip {
	display: inline-flex;
	align-items: center;
	margin: 0;
	padding: var(--bhp-space-3) var(--bhp-space-4);
	background-color: var(--bhp-white);
	border: 1px solid var(--bhp-border);
	border-radius: var(--bhp-btn-radius);
	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-spravato-effects__note {
	margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
	max-width: 48rem;
	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-spravato-effects__note a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

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

/* ——— Insurance and cost ——— */
.bhp-spravato-insurance {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-white);
	color: var(--bhp-ink);
}

.bhp-spravato-insurance__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--bhp-space-5);
	width: 100%;
	max-width: none;
	min-width: 0;
	text-align: center;
}

.bhp-spravato-insurance__title,
.bhp-spravato-insurance__text,
.bhp-spravato-insurance__note {
	max-width: 40rem;
	width: 100%;
}

.bhp-spravato-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-spravato-insurance__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-spravato-insurance__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(1.25rem, 2.5vw, 2.25rem) clamp(1.5rem, 3vw, 2.75rem);
	width: 100%;
	margin-block: calc(var(--bhp-space-5) * 2);
	margin-inline: 0;
	padding: 0;
	list-style: none;
}

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

.bhp-spravato-insurance__logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 7.5rem;
	max-height: 2.35rem;
	object-fit: contain;
	filter: grayscale(1) contrast(0.85) brightness(1.05);
	opacity: 0.72;
}

.bhp-spravato-insurance__steps {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--bhp-space-4);
	width: auto;
	max-width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 900px) {
	.bhp-spravato-insurance__steps {
		flex-direction: row;
		align-items: flex-start;
		justify-content: center;
		gap: clamp(1.5rem, 3vw, 2.5rem);
	}

	.bhp-spravato-insurance__step {
		flex: 0 1 auto;
		width: auto;
		min-width: 0;
	}
}

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

.bhp-spravato-insurance__step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: var(--bhp-radius-full);
	background-color: var(--bhp-primary-light);
	color: var(--bhp-primary);
	font-size: 0.85rem;
	line-height: 1;
}

.bhp-spravato-insurance__step-text {
	padding-top: 0.3rem;
	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-spravato-insurance__note {
	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-spravato-insurance__note a {
	color: var(--bhp-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

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

/* ——— Where we provide Spravato ——— */
.bhp-spravato-locations {
	padding-top: var(--bhp-section-y);
	padding-bottom: var(--bhp-section-y);
	background-color: var(--bhp-surface-soft);
	color: var(--bhp-ink);
}

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

.bhp-spravato-locations__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-spravato-locations__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: stretch;
}

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

.bhp-spravato-locations__card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	margin: 0;
	min-width: 0;
	height: 100%;
	padding: 0;
	background-color: var(--bhp-white);
	border-radius: var(--bhp-btn-radius);
	overflow: hidden;
}

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

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

.bhp-spravato-locations__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--bhp-space-4);
	flex: 1 1 auto;
	padding: clamp(1.5rem, 3vw, 2rem);
}

.bhp-spravato-locations__name {
	margin: 0;
	font-size: clamp(1.35rem, 2.2vw, 1.65rem);
	font-weight: var(--bhp-fw-bold);
	letter-spacing: var(--bhp-ls-tight);
	line-height: var(--bhp-lh-snug);
	color: var(--bhp-primary-dark);
}

.bhp-spravato-locations__text {
	margin: 0;
	flex: 1 1 auto;
	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-spravato-locations__cta {
	margin: 0;
	margin-top: auto;
	border-radius: var(--bhp-btn-radius);
	box-shadow: none;
}

.bhp-spravato-locations__trust {
	margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 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-muted);
	text-wrap: pretty;
}

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

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

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

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

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

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

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

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