/* =============================================================================
 * Section — Founder note (Accueil)
 * Cream background, sage type. Two-column on desktop, stacks on mobile.
 * ========================================================================== */

.exspa-founder {
	background: var(--exspa-cream, #F5F1E8);
	color: var(--exspa-sage-deep, #2A3325);
	padding: clamp(96px, 12vw, 180px) clamp(24px, 5vw, 80px);
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.exspa-founder__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(40px, 6vw, 96px);
	align-items: center;
}

.exspa-founder__media {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--exspa-sage, #3F4D38);
}

.exspa-founder__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.92);
}

.exspa-founder__body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.exspa-founder__eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	margin: 0;
	color: var(--exspa-sage, #3F4D38);
	opacity: 0.75;
}

.exspa-founder__heading {
	font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
	font-size: clamp(28px, 3.6vw, 46px);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.005em;
	margin: 0;
	color: var(--exspa-sage-deep, #2A3325);
	max-width: 24ch;
}

.exspa-founder__heading em {
	font-style: italic;
	color: var(--exspa-sage, #3F4D38);
}

/* Pull-quote — the actual founder words. Styled like the headline used to be,
   but as a proper <blockquote> so the H2 above is the keyword-bearing title. */
.exspa-founder__quote {
	font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 400;
	font-style: italic;
	line-height: 1.3;
	letter-spacing: -0.005em;
	margin: 24px 0 0;
	padding: 0;
	border: 0;
	color: var(--exspa-sage-deep, #2A3325);
	max-width: 32ch;
	quotes: none;
}
.exspa-founder__quote em {
	font-style: italic;
	color: var(--exspa-sage, #3F4D38);
}

.exspa-founder__quote-open,
.exspa-founder__quote-close {
	color: var(--exspa-sage, #3F4D38);
	opacity: 0.45;
	font-style: italic;
	padding: 0 4px;
}

.exspa-founder__copy {
	font-size: 18px;
	line-height: 1.7;
	margin: 0;
	max-width: 56ch;
	color: var(--exspa-sage-deep, #2A3325);
	opacity: 0.82;
}

.exspa-founder__sign {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 12px;
	border-top: 1px solid rgba(42, 51, 37, 0.18);
	margin-top: 8px;
	max-width: 280px;
}

.exspa-founder__name {
	font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
	font-size: 22px;
	font-style: italic;
	letter-spacing: 0.01em;
	color: var(--exspa-sage-deep, #2A3325);
}

.exspa-founder__role {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--exspa-sage, #3F4D38);
	opacity: 0.7;
}

/* -----------------------------------------------------------------------------
 * Mobile
 * -------------------------------------------------------------------------- */
@media (max-width: 900px) {
	.exspa-founder__inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.exspa-founder__media {
		aspect-ratio: 4 / 3;
		max-width: 440px;
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 540px) {
	.exspa-founder {
		padding: 72px 20px 88px;
	}
}
