/* =============================================================================
 * Section — Primary CTA → Boutique (Accueil)
 * Full-bleed cinematic photo with sage overlay, centered call to action.
 * ========================================================================== */

.exspa-cta {
	position: relative;
	background: var(--exspa-sage-deep, #2A3325);
	color: var(--exspa-cream, #F5F1E8);
	padding: clamp(120px, 14vw, 200px) clamp(24px, 5vw, 80px);
	overflow: hidden;
	isolation: isolate;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.exspa-cta__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	/* Photo now mostly unfiltered — let the Poitiers cityscape breathe */
	filter: saturate(0.95) brightness(0.88);
}

/* Soft radial vignette ONLY behind the text — center stays dark enough to
   keep the cream serif readable; the edges of the photo (sky, city, river)
   remain fully visible. Replaces the previous flat olive wash. */
.exspa-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(
			ellipse 55% 50% at 50% 55%,
			rgba(42, 51, 37, 0.62) 0%,
			rgba(42, 51, 37, 0.42) 35%,
			rgba(42, 51, 37, 0.18) 65%,
			rgba(42, 51, 37, 0.08) 100%
		);
	pointer-events: none;
}

.exspa-cta__content {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.exspa-cta__eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	margin: 0;
	opacity: 0.78;
}

.exspa-cta__heading {
	font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
	font-size: clamp(36px, 6vw, 76px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0;
	color: var(--exspa-cream, #F5F1E8);
}

.exspa-cta__heading em {
	font-style: italic;
	opacity: 0.78;
}

.exspa-cta__sub {
	font-size: 18px;
	line-height: 1.65;
	margin: 0;
	max-width: 44ch;
	opacity: 0.82;
}

.exspa-cta__button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 16px;
	padding: 18px 36px;
	border: 1px solid var(--exspa-cream, #F5F1E8);
	color: var(--exspa-cream, #F5F1E8);
	background: transparent;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	transition: background 250ms ease, color 250ms ease, gap 250ms ease;
}

.exspa-cta__button:hover {
	background: var(--exspa-cream, #F5F1E8);
	color: var(--exspa-sage-deep, #2A3325);
	gap: 18px;
}

.exspa-cta__button svg {
	transition: transform 250ms ease;
}

.exspa-cta__button:hover svg {
	transform: translateX(2px);
}

/* -----------------------------------------------------------------------------
 * Mobile
 * -------------------------------------------------------------------------- */
@media (max-width: 540px) {
	.exspa-cta {
		padding: 88px 20px 104px;
	}
	.exspa-cta__heading {
		font-size: clamp(30px, 9vw, 44px);
	}
	.exspa-cta__button {
		padding: 16px 28px;
	}
}
