/*
 * kp-values.css — Section "Nos valeurs / Ce qui nous anime" (Home bloc 5).
 *
 * Figma : 10132:725. Header (eyebrow + titre "Nos valeurs") + watermark KARREPROD
 * + grille 2×2 de value-cards (image + titre 40px + texte).
 * Auto-enqueué (kp-pattern-values, dep kp-tokens). Réutilise .kp-eyebrow.
 */

.kp-values {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.75rem;
	padding: var(--kp-section-padding-y, 9.375rem) var(--kp-section-padding-x, 4.5rem);
	background: var(--kp-color-surface-deep);
}

.kp-values__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--kp-space-8);
	text-align: center;
}

.kp-values__title {
	margin: 0;
	font-family: var(--kp-font-sans);
	font-size: var(--kp-font-size-62);
	font-weight: var(--kp-font-weight-light);
	letter-spacing: var(--kp-letter-spacing-h2, -0.06em);
	line-height: 1.06;
	color: var(--kp-color-text-inverse);
}

.kp-values__title-muted {
	color: var(--kp-color-text-faint);
}

/* Grille 2×2 + watermark centré derrière */
.kp-values__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--kp-space-37, 9.375rem) 6.25rem; /* row 150 / col 100 */
	width: 100%;
	overflow: clip;
}

.kp-values__watermark {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-family: var(--kp-font-sans);
	font-size: 20vw;
	font-weight: var(--kp-font-weight-medium);
	letter-spacing: -0.055em;
	line-height: 1;
	color: #121212;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.kp-values__card {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: var(--kp-space-8);
}

.kp-values__img {
	width: 100%;
	aspect-ratio: 598 / 520;
	object-fit: cover;
	display: block;
}

.kp-values__card-title {
	margin: 0;
	font-family: var(--kp-font-sans);
	font-size: var(--kp-font-size-40);
	font-weight: var(--kp-font-weight-regular);
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--kp-color-text-inverse);
}

.kp-values__card-text {
	margin: 0;
	font-family: var(--kp-font-sans);
	font-size: var(--kp-font-size-18);
	font-weight: var(--kp-font-weight-regular);
	line-height: 1.33;
	color: var(--kp-color-text-muted);
}

@media (max-width: 900px) {
	.kp-values__grid {
		grid-template-columns: 1fr;
		gap: var(--kp-space-16);
	}
	.kp-values {
		padding: var(--kp-space-16) var(--kp-space-6);
	}
}
