/* =============================================================================
 * Section — La suite cocon (L'Expérience)
 * Full-bleed photo with sage overlay, off-center text + specs grid.
 * ========================================================================== */

.exspa-suite {
	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-suite__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	filter: saturate(0.92) brightness(0.7);
}

.exspa-suite__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(100deg,
			rgba(42, 51, 37, 0.88) 0%,
			rgba(42, 51, 37, 0.78) 40%,
			rgba(42, 51, 37, 0.45) 100%);
	pointer-events: none;
}

.exspa-suite__content {
	max-width: 720px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.exspa-suite__eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	margin: 0;
	opacity: 0.9;
	display: inline-flex;
	align-items: center;
	gap: 14px;
}
.exspa-suite__eyebrow::before {
	content: '';
	display: inline-block;
	width: 28px;
	height: 1px;
	background: var(--exspa-gold, #8B6F3D);
	opacity: 0.95;
	transform: translateY(-1px);
}

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

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

.exspa-suite__copy {
	font-size: 18.5px;
	line-height: 1.7;
	margin: 0;
	max-width: 56ch;
	opacity: 0.85;
}

/* Specs */
.exspa-suite__specs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 48px;
	margin: 16px 0 0;
	padding: 28px 0 0;
	border-top: 1px solid rgba(245, 241, 232, 0.22);
	position: relative;
}
.exspa-suite__specs::before {
	content: '';
	position: absolute;
	top: -1px; left: 0;
	width: 36px;
	height: 1px;
	background: var(--exspa-gold, #8B6F3D);
	opacity: 1;
}

.exspa-suite__specs > div {
	min-width: 0;
	padding-left: 14px;
	border-left: 1px solid rgba(245, 241, 232, 0.12);
	transition: border-color 350ms ease, padding-left 350ms ease;
}
.exspa-suite__specs > div:hover {
	border-left-color: var(--exspa-gold, #8B6F3D);
	padding-left: 18px;
}

.exspa-suite__specs dt {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--exspa-cream, #F5F1E8);
	opacity: 0.55;
	margin: 0 0 6px;
}

.exspa-suite__specs dd {
	margin: 0;
	font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
	font-size: 19px;
	font-style: italic;
	color: var(--exspa-cream, #F5F1E8);
}

/* CTA */
.exspa-suite__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	padding: 16px 32px;
	border: 1px solid var(--exspa-cream, #F5F1E8);
	color: var(--exspa-cream, #F5F1E8);
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	transition: background 250ms ease, color 250ms ease, gap 200ms ease;
	width: max-content;
}

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

@media (max-width: 540px) {
	.exspa-suite {
		padding: 88px 20px 104px;
	}
	.exspa-suite__specs {
		grid-template-columns: 1fr;
	}
}

/* -----------------------------------------------------------------------------
 * Background parallax safety — slight pre-scale so the translate never reveals
 * the image edge. JS writes inline transform on top of this.
 * -------------------------------------------------------------------------- */
.exspa-suite__bg {
	transform: scale(1.08);
	transform-origin: center;
	transition: none;
}

/* Reveal-on-scroll for suite content blocks */
.exspa-suite__content > .is-reveal-target {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
	            transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.exspa-suite__content > *:nth-child(2).is-reveal-target { transition-delay: 90ms; }
.exspa-suite__content > *:nth-child(3).is-reveal-target { transition-delay: 180ms; }
.exspa-suite__content > *:nth-child(4).is-reveal-target { transition-delay: 270ms; }
.exspa-suite__content > *:nth-child(5).is-reveal-target { transition-delay: 360ms; }
.exspa-suite__content > .is-revealed {
	opacity: 1;
	transform: translateY(0);
}
