/* === TOKENS === */
:root {
	/* Core palette */
	--c-forest-deep: #1c3123;
	--c-forest-mid: #385032;
	--c-cream-warm: #feeeca;
	--c-cream-light: #fffdf5;
	--c-ink: #0e1a12;
	--c-text: #2a3d2e;
	--c-muted: #5a7360;
	--c-error: #9b2c2c;
	--c-overlay: rgba(14, 26, 18, 0.72);
	--c-overlay-hover: rgba(14, 26, 18, 0.86);

	/* Typography */
	--font-display: "Barlow Condensed", Impact, sans-serif;
	--font-body: "Nunito Sans", "Open Sans", system-ui, sans-serif;

	/* Spacing */
	--sp-xs: 0.5rem;
	--sp-sm: 1rem;
	--sp-md: 2rem;
	--sp-lg: 4rem;
	--sp-xl: 7.5rem;

	/* Legacy aliases kept for Bootstrap overrides below */
	--color-primary: var(--c-forest-deep);
	--color-secondary: var(--c-forest-mid);
	--color-tertiary: var(--c-cream-warm);
	--font-primary: var(--font-body);
	--font-secondary: var(--font-display);

	/* Suppress unused legacy vars */
	--color--text: var(--c-text);
}

/* Utilities */

.color--primary {
	color: var(--color-primary) !important;
}

.color--secondary {
	color: var(--color-secondary) !important;
}

.color--tertiary {
	color: var(--color-tertiary) !important;
}

.bg--primary {
	background-color: var(--color-primary) !important;
}

.bg--secondary {
	background-color: var(--color-secondary) !important;
}

.bg--tertiary {
	background-color: var(--color-tertiary) !important;
}

.font--primary {
	font-family: var(--font-primary) !important;
}

.font--secondary {
	font-family: var(--font-secondary) !important;
}

/* === BASE === */

html {
	scroll-padding-top: 11rem; /* nav ~6.6rem scrollée + ~4.4rem de marge sous le header */
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: var(--font-body);
	color: var(--c-text);
	background-color: var(--c-cream-light);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	line-height: 1.05;
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
}

/* === BUTTONS === */

.btn-tv-primary {
	display: inline-block;
	padding: 0.875rem 2.5rem;
	background-color: var(--c-cream-warm);
	color: var(--c-forest-deep);
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--c-cream-warm);
	border-radius: 0;
	transition:
		background-color 0.2s,
		color 0.2s;
}
.btn-tv-primary:hover,
.btn-tv-primary:focus-visible {
	background-color: var(--c-cream-light);
	border-color: var(--c-cream-light);
	color: var(--c-forest-deep);
}

.btn-tv-outline {
	display: inline-block;
	padding: 0.875rem 2.5rem;
	background-color: transparent;
	color: var(--c-cream-warm);
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--c-cream-warm);
	border-radius: 0;
	transition:
		background-color 0.2s,
		color 0.2s;
}
.btn-tv-outline:hover,
.btn-tv-outline:focus-visible {
	background-color: var(--c-cream-warm);
	color: var(--c-forest-deep);
}

.btn-tv-outline--dark {
	border-color: var(--c-forest-deep);
	color: var(--c-forest-deep);
}

.btn-tv-outline--dark:hover,
.btn-tv-outline--dark:focus-visible {
	background-color: var(--c-forest-deep);
	color: var(--c-cream-warm);
}

.btn-tv-dark {
	display: inline-block;
	padding: 0.875rem 2.5rem;
	background-color: var(--c-forest-deep);
	color: var(--c-cream-warm);
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--c-forest-deep);
	border-radius: 0;
	transition:
		background-color 0.2s,
		color 0.2s;
}
.btn-tv-dark:hover,
.btn-tv-dark:focus-visible {
	background-color: var(--c-forest-mid);
	border-color: var(--c-forest-mid);
	color: var(--c-cream-warm);
}

/* Focus ring */
.btn-tv-primary:focus-visible,
.btn-tv-outline:focus-visible,
.btn-tv-dark:focus-visible {
	outline: 2px solid var(--c-cream-warm);
	outline-offset: 2px;
}

/* === BOOTSTRAP OVERRIDES === */

.btn-primary {
	background-color: var(--c-forest-deep);
	border-color: var(--c-forest-deep);
	color: var(--c-cream-warm);
	border-radius: 0;
}
.btn-primary:hover {
	background-color: var(--c-forest-mid);
	border-color: var(--c-forest-mid);
	color: var(--c-cream-warm);
}

.btn-secondary {
	background-color: var(--c-forest-mid);
	border-color: var(--c-forest-mid);
	color: var(--c-cream-warm);
	border-radius: 0;
}
.btn-secondary:hover {
	background-color: var(--c-forest-deep);
	border-color: var(--c-forest-deep);
	color: var(--c-cream-warm);
}

/* === SECTION LABELS === */

.section-kicker {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.05;
	margin-bottom: var(--sp-md);
}

/* === REVEAL ANIMATION === */

.reveal {
	opacity: 0;
	transform: translateY(28px);
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === NAVBAR === */

.tv-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 0;
	background-color: transparent;
	transition:
		background-color 0.3s ease,
		padding 0.3s ease;
}
.tv-nav.is-scrolled {
	background-color: var(--c-forest-deep);
	padding: 0.5rem 0;
}

.tv-nav .navbar-brand img {
	height: 150px;
	width: auto;
	transition: height 0.5s ease;
}
.tv-nav.is-scrolled .navbar-brand img {
	height: 90px;
	flex: 1;
}

.tv-nav .nav-link {
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(254, 238, 202, 0.58) !important;
	padding: 0.25rem 0.75rem;
	text-decoration: none;
	transition: color 0.2s;
}
.tv-nav .nav-link:hover {
	color: rgba(254, 238, 202, 0.9) !important;
}

.tv-nav .nav-link.btn-nav-devis {
	background-color: var(--c-cream-warm);
	color: var(--c-forest-deep) !important;
	padding: 0.4rem 1.25rem;
	margin-left: 0.5rem;
}
.tv-nav .nav-link.btn-nav-devis:hover {
	background-color: var(--c-cream-light);
	color: var(--c-forest-deep) !important;
}

.tv-nav .navbar-toggler {
	border: 1px solid rgba(254, 238, 202, 0.4);
	padding: 0.4rem 0.6rem;
}
.tv-nav .navbar-toggler:focus {
	box-shadow: 0 0 0 2px var(--c-cream-warm);
}
.tv-nav .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23feeeca' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas — variables Bootstrap et largeur (actif partout) */
.tv-offcanvas {
	--bs-offcanvas-bg: var(--c-forest-deep);
	--bs-offcanvas-transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
	background-color: var(--c-forest-deep) !important;
	color: var(--c-cream-warm);
	width: min(320px, 85vw);
}

/* Backdrop teinté forêt */
.offcanvas-backdrop {
	background-color: var(--c-ink);
}

/* ---- Styles du panneau latéral : mobile uniquement ---- */
@media (max-width: 991.98px) {
	/* En-tête */
	.tv-offcanvas .offcanvas-header {
		padding: 1.5rem 1.5rem 1.25rem;
		border-bottom: 1px solid rgba(254, 238, 202, 0.15);
		align-items: flex-start;
	}
	.tv-offcanvas__brand {
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
		text-decoration: none;
	}
	.tv-offcanvas__brand img {
		height: 60px;
		width: auto;
	}
	.tv-offcanvas__tagline {
		font-family: var(--font-body);
		font-size: 0.6875rem;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: rgba(254, 238, 202, 0.42);
	}
	.tv-offcanvas .btn-close {
		margin-top: 0.25rem;
		opacity: 0.5;
		transition: opacity 0.15s ease-out;
	}
	.tv-offcanvas .btn-close:hover {
		opacity: 1;
	}

	/* Corps */
	.tv-offcanvas .offcanvas-body {
		padding: 0.5rem 0 2.5rem;
		display: flex;
		flex-direction: column;
	}
	.tv-offcanvas .navbar-nav {
		flex-direction: column;
		width: 100%;
	}

	/* Liens de navigation */
	.tv-offcanvas .nav-link {
		font-family: var(--font-display);
		font-size: clamp(1.35rem, 5vw, 1.6rem);
		font-weight: 600;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		color: var(--c-cream-warm) !important;
		padding: 0.85rem 1.5rem;
		border-bottom: 1px solid rgba(254, 238, 202, 0.1);
		transform: translateX(0);
		transition:
			background-color 0.18s ease-out,
			color 0.18s ease-out,
			transform 0.18s ease-out;
	}
	.tv-offcanvas .nav-link:hover {
		background-color: var(--c-forest-mid);
		color: var(--c-cream-warm) !important;
		transform: translateX(6px);
	}
	.tv-offcanvas .nav-item.current-menu-item .nav-link,
	.tv-offcanvas .nav-link.active {
		color: var(--c-cream-warm) !important;
		background-color: rgba(56, 80, 50, 0.5);
	}

	/* Bouton CTA devis */
	.tv-offcanvas .nav-link.btn-nav-devis {
		background-color: var(--c-cream-warm);
		color: var(--c-forest-deep) !important;
		text-align: center;
		font-size: 0.875rem;
		letter-spacing: 0.1em;
		padding: 1rem 1.5rem;
		margin: 1.5rem 1.5rem 0;
		border-bottom: none;
		transform: none;
		display: block;
		transition: background-color 0.18s ease-out;
	}
	.tv-offcanvas .nav-link.btn-nav-devis:hover {
		background-color: var(--c-cream-light);
		color: var(--c-forest-deep) !important;
		transform: none;
	}
}

/* Desktop : Bootstrap réintègre l'offcanvas en inline via .navbar-expand-lg */
@media (min-width: 992px) {
	.navbar-expand-lg .tv-offcanvas {
		background-color: transparent !important;
		width: auto;
	}
	.navbar-expand-lg .tv-offcanvas .offcanvas-body {
		justify-content: flex-end;
		padding: 0;
		flex-direction: row;
		align-items: center;
	}
}

/* === HERO === */

.hero {
	position: relative;
	min-height: 100svh;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	/* Dégradé directionnel : sombre à gauche (texte), clair vers la droite (photo) */
	background: linear-gradient(110deg, rgba(14, 26, 18, 0.88) 0%, rgba(14, 26, 18, 0.62) 48%, rgba(14, 26, 18, 0.26) 100%);
}

.hero__content {
	position: relative;
	z-index: 2;
	padding-top: 12rem;
	padding-bottom: 4rem;
	color: var(--c-cream-warm);
}

.hero__kicker {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(254, 238, 202, 0.7);
	margin-bottom: 1rem;
}

.hero__title {
	font-family: var(--font-display);
	font-size: clamp(3.25rem, 9vw, 7rem);
	font-weight: 700;
	line-height: 0.93;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--c-cream-warm);
	margin-bottom: 1.5rem;
}

.hero__tagline {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 2.4vw, 1.75rem);
	font-weight: 600;
	line-height: 1.3;
	color: rgba(254, 238, 202, 0.82);
	max-width: 38ch;
	margin-bottom: 1.75rem;
}

.hero__sub {
	font-family: var(--font-body);
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.6;
	color: rgba(254, 238, 202, 0.88);
	max-width: 52ch;
	margin-bottom: 2.5rem;
}

.hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: var(--c-cream-warm);
	text-decoration: none;
	opacity: 0.6;
	animation: scroll-bounce 2.2s ease-in-out infinite;
}
.hero__scroll:hover {
	opacity: 1;
}

@keyframes scroll-bounce {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

/* === FEATURES STRIP === */

.s-features {
	background-color: var(--c-forest-mid);
	padding: 1.5rem 0;
}

.features-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.625rem 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.features-list li {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-cream-warm);
	opacity: 0.9;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.features-list li::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: var(--c-cream-warm);
	opacity: 0.4;
	transform: rotate(45deg);
	flex-shrink: 0;
}
.features-list li:first-child::before {
	display: none;
}

/* === PILIERS === */

.s-piliers {
	padding: var(--sp-xl) 0;
	background-color: var(--c-cream-light);
}

.s-piliers .section-kicker {
	color: var(--c-muted);
}

.s-piliers .section-title {
	color: var(--c-forest-deep);
}

.pilier {
	align-items: center;
	padding: var(--sp-lg) 0;
}
.pilier + .pilier {
	border-top: 1px solid rgba(44, 61, 46, 0.1);
}

.pilier__text {
	padding: var(--sp-md);
}

.pilier__num {
	font-family: var(--font-display);
	font-size: clamp(4rem, 8vw, 7rem);
	font-weight: 700;
	line-height: 1;
	color: rgba(28, 49, 35, 0.08);
	margin-bottom: -1rem;
	display: block;
}

.pilier__title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--c-forest-deep);
	margin-bottom: 1rem;
}

.pilier__body {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--c-text);
	max-width: 52ch;
}

.pilier__image {
	overflow: hidden;
}
.pilier__image img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}

/* === DESTINATIONS === */

.s-destinations {
	padding: var(--sp-xl) 0;
	background-color: var(--c-forest-deep);
}

.s-destinations .section-kicker {
	color: rgba(254, 238, 202, 0.6);
}

.s-destinations .section-title {
	color: var(--c-cream-warm);
}

.destinations-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	margin-top: var(--sp-md);
}

.dest-card {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	aspect-ratio: 4 / 3;
}
.dest-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.dest-card:hover img {
	transform: scale(1.04);
}

.dest-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(14, 26, 18, 0.88) 0%, rgba(14, 26, 18, 0.1) 55%, transparent 100%);
	transition: background 0.3s;
}
.dest-card:hover .dest-card__overlay {
	background: linear-gradient(to top, rgba(14, 26, 18, 0.92) 0%, rgba(14, 26, 18, 0.2) 55%, transparent 100%);
}

.dest-card__info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
}

.dest-card__name {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	text-transform: uppercase;
	color: var(--c-cream-warm);
	display: block;
	margin-bottom: 0.25rem;
}

.dest-card__sub {
	font-family: var(--font-body);
	font-size: 1rem;
	color: rgba(254, 238, 202, 0.65);
	display: block;
}

.s-destinations .dest-link {
	display: inline-block;
	margin-top: var(--sp-md);
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-cream-warm);
	text-decoration: none;
	border-bottom: 1px solid rgba(254, 238, 202, 0.3);
	padding-bottom: 0.125rem;
	transition: border-color 0.2s;
}
.s-destinations .dest-link:hover {
	border-color: var(--c-cream-warm);
}

/* === VAN TEASER === */

.s-van {
	padding: var(--sp-xl) 0;
	background-color: var(--c-cream-warm);
}

.s-van .section-kicker {
	color: var(--c-muted);
}

.s-van .section-title {
	color: var(--c-forest-deep);
}

.van-image {
	overflow: hidden;
}
.van-image img {
	width: 100%;
	height: 520px;
	object-fit: cover;
}

.van-specs {
	padding: var(--sp-md);
}

.van-specs-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
}
.van-specs-list li {
	padding: 0.65rem 0;
	font-size: 0.9375rem;
	color: var(--c-text);
	border-bottom: 1px solid rgba(28, 49, 35, 0.12);
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.van-specs-list li::before {
	content: "";
	flex-shrink: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--c-forest-mid);
}

/* === STEPS === */

/* === COMMENT ÇA MARCHE === */

.s-steps {
	padding: var(--sp-xl) 0;
	background-color: var(--c-forest-deep);
	position: relative;
	overflow: hidden;
}

/* Texture photographique en fond, très atténuée */
.s-steps__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 40%;
	opacity: 0.07;
	mix-blend-mode: luminosity;
	pointer-events: none;
	z-index: 0;
}

.s-steps .container-xl {
	position: relative;
	z-index: 1;
}

/* En-tête éditorial : titre à gauche, intro à droite */
.steps-header {
	display: flex;
	align-items: flex-end;
	gap: var(--sp-lg);
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.steps-header__lead {
	flex: 0 0 auto;
	min-width: 0;
}

.s-steps .section-kicker {
	color: rgba(254, 238, 202, 0.5);
}

.s-steps .section-title {
	color: var(--c-cream-warm);
	margin-bottom: 0;
}

.steps-intro {
	color: rgba(254, 238, 202, 0.7);
	font-size: 1.0625rem;
	line-height: 1.65;
	max-width: 42ch;
	margin: 0;
	padding-bottom: 0.25rem; /* aligner optiquement avec la baseline du titre */
}

/* Rangées de steps — timeline horizontale */
.steps-row {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0 0 var(--sp-lg) 0;
	position: relative;
}

/* Ligne de connexion — de centre-à-centre des premier et dernier points */
.steps-row::before {
	content: "";
	position: absolute;
	/* top = num height + gap + demi-dot, tous exprimés en clamp pour suivre le fluide */
	top: calc(clamp(2.5rem, 4vw, 3.5rem) + 1rem);
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: linear-gradient(to right, transparent, rgba(254, 238, 202, 0.22) 4%, rgba(254, 238, 202, 0.22) 96%, transparent);
	z-index: 0;
}

/* Pour la rangée de 3 items, la ligne s'arrête au centre du 3e item */
.steps-row--last::before {
	right: 37.5%;
}

/* Items — colonnes fixes à 25 % pour que les 2 rangées s'alignent */
.step-item {
	flex: 0 0 25%;
	max-width: 25%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 var(--sp-sm);
	position: relative;
	z-index: 1;
}

.step-item__num {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.01em;
	color: rgba(254, 238, 202, 0.48);
	display: block;
	margin-bottom: 0.75rem;
}

/* Point-marqueur sur la ligne */
.step-item__dot {
	display: block;
	width: 8px;
	height: 8px;
	background-color: var(--c-cream-warm);
	flex-shrink: 0;
	margin-bottom: 0.875rem;
	position: relative;
	z-index: 2;
}

.step-item__text {
	font-family: var(--font-display);
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	font-weight: 600;
	line-height: 1.3;
	color: rgba(254, 238, 202, 0.9);
}

/* === TARIFS === */

.s-tarifs {
	padding: var(--sp-xl) 0;
	background-color: var(--c-cream-light);
}

.s-tarifs .section-kicker {
	color: var(--c-muted);
}
.s-tarifs .section-title {
	color: var(--c-forest-deep);
}

.s-tarifs .tarifs-intro {
	color: var(--c-muted);
	font-size: 0.9375rem;
	max-width: 52ch;
	margin-bottom: var(--sp-lg);
}

.tarifs-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-bottom: var(--sp-md);
}

.tarif-bloc {
	padding: var(--sp-md);
	border-right: 1px solid rgba(28, 49, 35, 0.12);
}
.tarif-bloc:first-child {
	padding-left: 0;
}
.tarif-bloc:last-child {
	border-right: none;
	padding-right: 0;
}

.tarif-bloc__season {
	display: block;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 0.75rem;
}

.tarif-bloc__price {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 700;
	line-height: 1;
	color: var(--c-forest-deep);
}

.tarif-bloc__unit {
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: var(--c-muted);
	margin-left: 0.25rem;
	vertical-align: bottom;
}

.tarifs-notes {
	color: var(--c-muted);
	font-size: 0.875rem;
	line-height: 1.7;
	max-width: 56ch;
	margin-bottom: var(--sp-md);
}

.tarifs-examples {
	background-color: var(--c-cream-warm);
	padding: var(--sp-md);
	margin-bottom: var(--sp-lg);
}

.tarifs-examples__title {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 1rem;
}

.tarifs-examples ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.tarifs-examples li {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	font-size: 0.9375rem;
	color: var(--c-text);
	border-bottom: 1px solid rgba(28, 49, 35, 0.1);
}
.tarifs-examples li:last-child {
	border-bottom: none;
}
.tarifs-examples li strong {
	font-weight: 700;
	color: var(--c-forest-deep);
}

/* === ABOUT === */

.s-about {
	padding: var(--sp-xl) 0;
	background-color: var(--c-forest-deep);
}

.s-about .section-kicker {
	color: rgba(254, 238, 202, 0.55);
}

.about-photo {
	overflow: hidden;
}
.about-photo img {
	width: 100%;
	height: 560px;
	object-fit: cover;
}

.about-text {
	padding: var(--sp-md);
	color: var(--c-cream-warm);
}

.about-title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--c-cream-warm);
	margin-bottom: var(--sp-sm);
}

.about-body {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(254, 238, 202, 0.8);
	max-width: 52ch;
}
.about-body p + p {
	margin-top: 1rem;
}

/* === CONTACT BAND === */

.s-contact {
	padding: var(--sp-xl) 0;
	background-color: var(--c-cream-warm);
}

.s-contact .section-title {
	color: var(--c-forest-deep);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--sp-md);
	margin-bottom: var(--sp-lg);
}

.contact-item__label {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-muted);
	display: block;
	margin-bottom: 0.375rem;
}

.contact-item__value {
	font-size: 1rem;
	color: var(--c-forest-deep);
	font-weight: 700;
	text-decoration: none;
}
.contact-item__value:hover {
	text-decoration: underline;
}

.contact-item__note {
	font-size: 1rem;
	color: var(--c-muted);
	margin-top: 0.25rem;
}

/* === FOOTER === */

.site-footer {
	background-color: var(--c-ink);
	padding: var(--sp-lg) 0 var(--sp-md);
	color: rgba(254, 238, 202, 0.5);
}

.footer-logo img {
	height: 48px;
	width: auto;
	margin-bottom: var(--sp-sm);
	opacity: 0.9;
}

.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0 0 var(--sp-md);
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.5rem;
}
.footer-nav a {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(254, 238, 202, 0.5);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-nav a:hover {
	color: var(--c-cream-warm);
}

.footer-copy {
	font-size: 1rem;
	color: rgba(254, 238, 202, 0.3);
}

/* === UTILITIES === */

.color--primary {
	color: var(--c-forest-deep) !important;
}
.color--secondary {
	color: var(--c-forest-mid) !important;
}
.color--tertiary {
	color: var(--c-cream-warm) !important;
}

.bg--primary {
	background-color: var(--c-forest-deep) !important;
}
.bg--secondary {
	background-color: var(--c-forest-mid) !important;
}
.bg--tertiary {
	background-color: var(--c-cream-warm) !important;
}

.font--primary {
	font-family: var(--font-body) !important;
}
.font--secondary {
	font-family: var(--font-display) !important;
}

/* === HEADER === */

/* === SECTION === */

/* === FOOTER === */

/* === RESPONSIVE === */

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
}

/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
	.pilier__image img {
		height: 400px;
	}
	.about-photo img {
		height: 460px;
	}
}

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	.s-piliers,
	.s-destinations,
	.s-van,
	.s-steps,
	.s-tarifs,
	.s-about,
	.s-contact {
		padding: var(--sp-lg) 0;
	}

	.steps-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--sp-sm);
		margin-bottom: var(--sp-lg);
	}

	.steps-intro {
		max-width: 56ch;
	}

	.pilier__image img {
		height: 320px;
	}

	.tarifs-row {
		grid-template-columns: 1fr;
		gap: var(--sp-sm);
	}
	.tarif-bloc {
		padding: var(--sp-sm) 0;
		border-right: none;
		border-bottom: 1px solid rgba(28, 49, 35, 0.12);
	}
	.tarif-bloc:last-child {
		border-bottom: none;
	}

	.about-photo img {
		height: 380px;
	}
}

/* `md` applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.destinations-grid {
		grid-template-columns: 1fr;
	}
	.dest-card {
		aspect-ratio: 16 / 9;
	}

	/* Steps : 2 items par rangée sur tablette */
	.steps-row {
		flex-wrap: wrap;
	}

	.step-item {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: var(--sp-md);
	}

	.pilier {
		padding: 0;
	}

	/* Masquer la ligne de connexion sur tablette */
	.steps-row::before {
		display: none;
	}

	.hero__title {
		font-size: clamp(2.75rem, 12vw, 4rem);
	}

	.van-image img {
		height: 320px;
	}
	.about-photo img {
		height: 300px;
	}

	.tv-contact-form {
		margin-bottom: 4rem;
	}
}

/* `sm` applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
	.hero__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	#van-cta .hero__actions {
		align-items: center;
	}

	/* Steps : 1 colonne sur mobile */
	.steps-row {
		flex-direction: column;
		gap: 0;
		margin-bottom: var(--sp-md);
	}

	.steps-row::before {
		display: none;
	}

	.steps-row li:last-child {
		margin: 0;
	}

	.step-item {
		flex: unset;
		max-width: 100%;
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		padding: 0 0 var(--sp-md) 0;
		gap: var(--sp-sm);
	}

	.step-item__num {
		flex-shrink: 0;
		width: auto;
		text-align: center;
		font-size: 1.5rem;
		margin-bottom: 0;
		letter-spacing: 0;
	}

	.step-item__dot {
		display: none;
	}

	.step-item__text {
		flex: 1;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.hero__scroll {
		animation: none;
		opacity: 0.6;
	}
}

/* ============================================================
   DESTINATIONS PAGE (destinations.html)
   ============================================================ */

/* Anchor navigation strip */
.s-dest-nav {
	background-color: var(--c-forest-mid);
	padding: 1rem 0;
	border-top: 1px solid rgba(254, 238, 202, 0.08);
}

.dest-nav-list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	justify-content: center;
}

.dest-nav-item a {
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(254, 238, 202, 0.65);
	text-decoration: none;
	display: block;
	padding: 0.625rem 1.75rem;
	border-right: 1px solid rgba(254, 238, 202, 0.15);
	transition: color 0.18s;
}

.dest-nav-item:last-child a {
	border-right: none;
}

.dest-nav-item a:hover {
	color: var(--c-cream-warm);
}

.dest-nav-item a:focus-visible {
	outline: 2px solid var(--c-cream-warm);
	outline-offset: 2px;
	border-radius: 2px;
}

/* Base section */
.s-destination {
	padding: var(--sp-xl) 0;
	overflow-x: hidden;
}

.s-destination--dark {
	background-color: var(--c-forest-deep);
}

.s-destination--light {
	background-color: var(--c-cream-light);
}

.s-destination--warm {
	background-color: var(--c-cream-warm);
}

/* Contextual type colors */
.s-destination--dark .section-kicker {
	color: rgba(254, 238, 202, 0.55);
}

.s-destination--light .section-kicker {
	color: var(--c-muted);
}

.s-destination--warm .section-kicker {
	color: var(--c-muted);
}

/* Country display title */
.dest-display {
	font-family: var(--font-display);
	font-size: clamp(4.5rem, 12vw, 9.5rem);
	font-weight: 700;
	line-height: 0.88;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin-bottom: var(--sp-md);
}

.dest-display--compact {
	font-size: clamp(3.5rem, 8vw, 7.5rem);
}

.s-destination--dark .dest-display {
	color: var(--c-cream-warm);
}

.s-destination--light .dest-display {
	color: var(--c-forest-deep);
}

.s-destination--warm .dest-display {
	color: var(--c-forest-deep);
}

/* Body text */
.dest-body {
	font-size: 1rem;
	line-height: 1.78;
	max-width: 58ch;
	margin-bottom: var(--sp-md);
}

.s-destination--dark .dest-body {
	color: rgba(254, 238, 202, 0.82);
}

.s-destination--light .dest-body {
	color: var(--c-text);
}

.s-destination--warm .dest-body {
	color: var(--c-text);
}

/* Feature photo — full container width */
.dest-feature {
	width: 100%;
	overflow: hidden;
	margin-bottom: var(--sp-md);
}

.dest-feature img {
	width: 100%;
	height: 56vh;
	min-height: 320px;
	object-fit: cover;
	display: block;
}

/* Tall photo for side-by-side layout */
.dest-tall-photo {
	width: 100%;
	height: 100%;
	min-height: 560px;
	max-height: 820px;
	object-fit: cover;
	display: block;
}

/* 2×2 photo mosaic */
.dest-mosaic-2x2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
}

.dest-mosaic-2x2 img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	display: block;
}

/* 2 photos stacked vertically */
.dest-mosaic-stacked {
	display: flex;
	flex-direction: column;
	gap: 4px;
	height: 100%;
}

.dest-mosaic-stacked img {
	width: 100%;
	flex: 1;
	min-height: 200px;
	max-height: 340px;
	object-fit: cover;
	display: block;
}

/* 2-col secondary photos (below text) */
.dest-secondary-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
}

.dest-secondary-2col img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}

/* Pyrénées full-width 2-photo strip */
.dest-pyr-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	margin: var(--sp-md) 0;
}

.dest-pyr-photos img {
	width: 100%;
	height: 50vh;
	min-height: 280px;
	object-fit: cover;
	display: block;
}

/* Practical info */
.dest-practical {
	display: flex;
	gap: var(--sp-md);
	flex-wrap: wrap;
	margin-bottom: var(--sp-md);
}

.dest-practical__item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.dest-practical__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.dest-practical__value {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
}

.s-destination--dark .dest-practical__label {
	color: rgba(254, 238, 202, 0.5);
}

.s-destination--dark .dest-practical__value {
	color: var(--c-cream-warm);
}

.s-destination--light .dest-practical__label {
	color: var(--c-muted);
}

.s-destination--light .dest-practical__value {
	color: var(--c-forest-deep);
}

.s-destination--warm .dest-practical__label {
	color: var(--c-muted);
}

.s-destination--warm .dest-practical__value {
	color: var(--c-forest-deep);
}

/* Destinations CTA */
.s-dest-cta {
	padding: var(--sp-xl) 0;
	background-color: var(--c-forest-deep);
	text-align: center;
}

.s-dest-cta .section-kicker {
	color: rgba(254, 238, 202, 0.55);
}

.dest-cta__title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.01em;
	color: var(--c-cream-warm);
	margin-bottom: var(--sp-sm);
}

.dest-cta__sub {
	font-size: 1rem;
	color: rgba(254, 238, 202, 0.72);
	max-width: 44ch;
	margin: 0 auto var(--sp-md);
}

/* Responsive destinations */
@media (max-width: 1199.98px) {
	.s-destination {
		padding: var(--sp-lg) 0;
	}
	.dest-feature img {
		height: 45vh;
	}
	.dest-pyr-photos img {
		height: 38vh;
	}
}

@media (max-width: 991.98px) {
	.dest-tall-photo {
		min-height: 360px;
		max-height: 500px;
		margin-top: var(--sp-md);
	}
	.dest-mosaic-stacked {
		flex-direction: row;
	}
	.dest-mosaic-stacked img {
		min-height: 160px;
		max-height: 260px;
	}
}

@media (max-width: 767.98px) {
	.dest-mosaic-2x2 img {
		height: 150px;
	}
	.dest-pyr-photos {
		grid-template-columns: 1fr;
	}
	.dest-pyr-photos img {
		height: 52vw;
		min-height: 220px;
	}
	.dest-secondary-2col img {
		height: 130px;
	}
}

@media (max-width: 575.98px) {
	.dest-display {
		font-size: clamp(2.5rem, 12vw, 4.5rem);
		letter-spacing: -0.01em;
	}
	.dest-display--compact {
		font-size: clamp(3rem, 14vw, 5rem);
	}
	.dest-mosaic-2x2 {
		grid-template-columns: 1fr;
	}
	.dest-mosaic-2x2 img {
		height: 180px;
	}
	.dest-mosaic-stacked {
		flex-direction: column;
	}
	.dest-mosaic-stacked img {
		min-height: 180px;
		max-height: none;
	}
	.dest-nav-item a {
		padding: 0.5rem 1rem;
		font-size: 0.75rem;
	}
}

/* ============================================================
   VAN PAGE (vans.html)
   ============================================================ */

/* Active nav state */
.tv-nav .nav-link--active,
.tv-nav .nav-link[aria-current="page"] {
	color: var(--c-cream-warm) !important;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1.5px;
	text-underline-offset: 4px;
	text-decoration-color: rgba(254, 238, 202, 0.5);
}

/* --- Stats strip --- */

.s-van-stats {
	background-color: var(--c-forest-mid);
	padding: 2.5rem 0;
	border-top: 1px solid rgba(254, 238, 202, 0.08);
}

.van-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.van-stat {
	text-align: center;
	padding: 1.25rem var(--sp-md);
	border-right: 1px solid rgba(254, 238, 202, 0.15);
}
.van-stat:last-child {
	border-right: none;
}

.van-stat__value {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.5vw, 3rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.01em;
	color: var(--c-cream-warm);
	margin-bottom: 0.5rem;
}

.van-stat__label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(254, 238, 202, 0.5);
}

/* --- Gallery --- */

.s-van-gallery {
	padding: var(--sp-xl) 0;
	background-color: var(--c-forest-deep);
}

.s-van-gallery .section-kicker {
	color: rgba(254, 238, 202, 0.6);
}

.s-van-gallery .section-title {
	color: var(--c-cream-warm);
}

.van-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 260px;
	gap: 4px;
	margin-top: var(--sp-md);
}

.van-gallery-item {
	overflow: hidden;
	display: block;
}

.van-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.van-gallery-item:hover img {
	transform: scale(1.04);
}

.van-gallery-item--feature {
	grid-column: 1 / 3;
	grid-row: span 2;
}

/* --- Interior spaces --- */

.s-van-spaces {
	padding: var(--sp-xl) 0;
	background-color: var(--c-cream-light);
}

.s-van-spaces .section-kicker {
	color: var(--c-muted);
}

.s-van-spaces .section-title {
	color: var(--c-forest-deep);
}

.van-space {
	padding: var(--sp-lg) 0;
}

.van-space + .van-space {
	border-top: 1px solid rgba(44, 61, 46, 0.1);
}

.van-space__image {
	overflow: hidden;
}

.van-space__image img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}

.van-space__text {
	padding: var(--sp-md);
}

.van-space__title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: var(--c-forest-deep);
	margin-bottom: 1rem;
	line-height: 1.1;
}

.van-space__body {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--c-text);
	max-width: 52ch;
}

/* --- Equipment --- */

.s-van-equip {
	padding: var(--sp-xl) 0;
	background-color: var(--c-cream-warm);
}

.s-van-equip .section-kicker {
	color: var(--c-muted);
}

.s-van-equip .section-title {
	color: var(--c-forest-deep);
}

.van-equip-intro {
	font-size: 0.9375rem;
	color: var(--c-muted);
	max-width: 52ch;
	margin-bottom: var(--sp-lg);
}

.van-equip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--sp-md) var(--sp-lg);
}

.van-equip-category__title {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-muted);
	border-bottom: 1px solid rgba(28, 49, 35, 0.15);
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}

.van-equip-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.van-equip-list li {
	font-size: 0.9375rem;
	color: var(--c-text);
	padding: 0.4rem 0;
	border-bottom: 1px solid rgba(28, 49, 35, 0.08);
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.van-equip-list li:last-child {
	border-bottom: none;
}

.van-equip-list li::before {
	content: "";
	flex-shrink: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--c-forest-mid);
}

.van-equip-category--bonus {
	background-color: rgba(28, 49, 35, 0.05);
	border-radius: 8px;
	padding: 1.25rem;
	border: 1px solid rgba(28, 49, 35, 0.12);
}

.van-equip-category--bonus .van-equip-category__title {
	color: var(--c-forest-deep);
	border-bottom-color: rgba(28, 49, 35, 0.2);
}

.van-equip-badge {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-forest-deep);
	background-color: var(--c-cream-warm);
	border-radius: 20px;
	padding: 0.15em 0.55em;
	margin-left: auto;
	flex-shrink: 0;
}

.van-equip-tobring {
	display: flex;
	align-items: baseline;
	gap: 1.5rem;
	margin-top: var(--sp-md);
	padding: 0.875rem 1.25rem;
	background-color: rgba(28, 49, 35, 0.05);
	border: 1px solid rgba(28, 49, 35, 0.12);
	border-radius: 6px;
	flex-wrap: wrap;
}

.van-equip-tobring__label {
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin: 0;
	white-space: nowrap;
}

.van-equip-tobring__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.5rem;
}

.van-equip-tobring__list li {
	font-size: 0.9rem;
	color: var(--c-text);
}

.van-equip-tobring__list li::before {
	content: "· ";
	color: var(--c-muted);
}

/* --- CTA --- */

.s-van-cta {
	padding: var(--sp-xl) 0;
	background-color: var(--c-forest-deep);
	text-align: center;
}

.s-van-cta .section-kicker {
	color: rgba(254, 238, 202, 0.55);
}

.van-cta__title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.01em;
	color: var(--c-cream-warm);
	margin-bottom: var(--sp-sm);
}

.van-cta__sub {
	font-size: 1rem;
	color: rgba(254, 238, 202, 0.72);
	max-width: 44ch;
	margin: 0 auto var(--sp-md);
}

/* --- Responsive van page --- */

@media (max-width: 1199.98px) {
	.van-gallery-grid {
		grid-auto-rows: 200px;
	}
	.s-van-spaces,
	.s-van-equip,
	.s-van-cta,
	.s-van-gallery,
	.s-van-stats {
		padding: var(--sp-lg) 0;
	}
	.van-space__image img {
		height: 360px;
	}
}

@media (max-width: 767.98px) {
	.van-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.van-stat:nth-child(2) {
		border-right: none;
	}
	.van-stat:nth-child(3) {
		border-right: 1px solid rgba(254, 238, 202, 0.15);
		border-top: 1px solid rgba(254, 238, 202, 0.1);
	}
	.van-stat:nth-child(4) {
		border-top: 1px solid rgba(254, 238, 202, 0.1);
	}
	.van-gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 180px;
	}
	.van-gallery-item--feature {
		grid-column: 1 / 3;
		grid-row: span 2;
	}
	.van-space__image img {
		height: 280px;
	}
}

@media (max-width: 575.98px) {
	.van-gallery-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 220px;
	}
	.van-gallery-item--feature {
		grid-column: 1;
		grid-row: span 1;
	}
}

/* ============================================================
   FAQ-CONTACT PAGE (faq-contact.html)
   ============================================================ */

/* Page header (compact, not full-viewport) */
.s-page-header {
	background-color: var(--c-forest-deep);
	padding: 13rem 0 5rem;
}

.page-header__kicker {
	color: rgba(254, 238, 202, 0.55);
}

.page-header__title {
	font-family: var(--font-display);
	font-size: clamp(3.5rem, 8vw, 7rem);
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--c-cream-warm);
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
}

.page-header__sub {
	font-size: 1rem;
	line-height: 1.65;
	color: rgba(254, 238, 202, 0.72);
	max-width: 52ch;
}

/* FAQ section */
.s-faq {
	padding: var(--sp-xl) 0;
	background-color: var(--c-cream-light);
}

.s-faq .section-kicker {
	color: var(--c-muted);
}

/* Bootstrap accordion overrides */
.tv-accordion .accordion-item {
	border: none;
	border-bottom: 1px solid rgba(44, 61, 46, 0.18);
	background-color: transparent;
	border-radius: 0;
}

.tv-accordion .accordion-item:first-child {
	border-top: 1px solid rgba(44, 61, 46, 0.18);
}

.tv-accordion .accordion-button {
	background-color: var(--c-cream-light);
	color: var(--c-forest-deep);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 1.25rem 0;
	border-radius: 0;
	box-shadow: none;
	gap: 1rem;
}

.tv-accordion .accordion-button:not(.collapsed) {
	background-color: var(--c-cream-light);
	color: var(--c-forest-deep);
	box-shadow: none;
}

.tv-accordion .accordion-button:focus {
	box-shadow: none;
	outline: none;
}
.tv-accordion .accordion-button:focus-visible {
	box-shadow: none;
	outline: 1px solid var(--c-forest-mid);
	outline-offset: 3px;
	border-radius: 2px;
}

/* Remove Bootstrap's default chevron */
.tv-accordion .accordion-button::after {
	display: none;
}

/* Custom +/- toggle */
.faq-toggle {
	flex-shrink: 0;
	margin-left: auto;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: var(--c-forest-mid);
	width: 1.5rem;
	text-align: center;
}

.faq-toggle::before {
	content: "+";
}

.tv-accordion .accordion-button:not(.collapsed) .faq-toggle {
	color: var(--c-forest-deep);
}

.tv-accordion .accordion-button:not(.collapsed) .faq-toggle::before {
	content: "\2212"; /* − minus sign */
}

.tv-accordion .accordion-body {
	padding: 0 0 1.25rem;
	background-color: var(--c-cream-light);
	color: var(--c-text);
	font-size: 0.9375rem;
	line-height: 1.72;
	max-width: 60ch;
}

/* ===================== LIGHTBOX ===================== */
.tv-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(10, 18, 12, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.tv-lightbox[hidden] {
	display: none;
}

.tv-lightbox__stage {
	position: relative;
	max-width: min(92vw, 1280px);
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.875rem;
}

.tv-lightbox__img {
	display: block;
	max-width: 100%;
	max-height: 82vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.tv-lightbox__caption {
	color: rgba(254, 238, 202, 0.65);
	font-family: var(--font-body);
	font-size: 0.875rem;
	text-align: center;
	margin: 0;
	padding: 0 1rem;
}

.tv-lightbox__close {
	position: fixed;
	top: 1.25rem;
	right: 1.25rem;
	z-index: 10000;
	background: rgba(28, 49, 35, 0.75);
	border: 1.5px solid rgba(254, 238, 202, 0.25);
	color: var(--c-cream-warm);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.2s;
}

.tv-lightbox__close:hover {
	background: var(--c-forest-deep);
	transform: scale(1.1);
}

.tv-lightbox__nav {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10000;
	background: rgba(28, 49, 35, 0.75);
	border: 1.5px solid rgba(254, 238, 202, 0.25);
	color: var(--c-cream-warm);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.2s;
}

.tv-lightbox__nav:hover {
	background: var(--c-forest-deep);
	transform: translateY(-50%) scale(1.08);
}

.tv-lightbox__nav--prev {
	left: 1.25rem;
}
.tv-lightbox__nav--next {
	right: 1.25rem;
}

.tv-lightbox__nav:disabled {
	opacity: 0.2;
	pointer-events: none;
}

.tv-lightbox__counter {
	position: fixed;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(254, 238, 202, 0.55);
	font-family: var(--font-body);
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
}

.van-gallery-item {
	cursor: pointer;
}

.van-gallery-item:focus-visible {
	outline: 2px solid var(--c-cream-warm);
	outline-offset: 2px;
}

@media (max-width: 576px) {
	.tv-lightbox__nav {
		width: 40px;
		height: 40px;
	}

	.tv-lightbox__nav--prev {
		left: 0.5rem;
	}
	.tv-lightbox__nav--next {
		right: 0.5rem;
	}
}

.faq-link {
	color: var(--c-forest-deep);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.faq-link:hover {
	color: var(--c-forest-mid);
}

/* Countries section */
.s-faq-countries {
	padding: var(--sp-lg) 0;
	background-color: var(--c-forest-mid);
}

.s-faq-countries .section-kicker {
	color: rgba(254, 238, 202, 0.55);
}

.s-faq-countries .section-title {
	color: var(--c-cream-warm);
}

.faq-countries-intro {
	font-size: 0.9375rem;
	color: rgba(254, 238, 202, 0.7);
	max-width: 52ch;
	margin-bottom: var(--sp-md);
}

.faq-countries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.faq-country {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.6rem 0;
	border-bottom: 1px solid rgba(254, 238, 202, 0.08);
}

.faq-country__code {
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(254, 238, 202, 0.4);
	min-width: 2.25rem;
	flex-shrink: 0;
}

.faq-country__name {
	font-family: var(--font-display);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--c-cream-warm);
	line-height: 1.3;
}

.faq-country__name em {
	font-style: normal;
	font-size: 0.8125rem;
	color: rgba(254, 238, 202, 0.55);
}

/* Contact page */
.s-contact-page {
	padding: var(--sp-xl) 0;
	background-color: var(--c-cream-warm);
}

.s-contact-page .section-kicker {
	color: var(--c-muted);
}

.s-contact-page .section-title {
	color: var(--c-forest-deep);
}

.contact-page-intro {
	font-size: 0.9375rem;
	color: var(--c-muted);
	max-width: 52ch;
	margin-bottom: var(--sp-md);
}

/* Form */
.tv-form-label {
	display: block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 0.4rem;
}

.tv-form-label span {
	color: var(--c-forest-mid);
}

.tv-form-control {
	display: block;
	width: 100%;
	background-color: var(--c-cream-light);
	border: 1px solid var(--c-forest-mid);
	border-radius: 0;
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--c-text);
	transition:
		border-color 0.18s,
		outline-color 0.18s;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	box-sizing: border-box;
}

.tv-form-control:focus {
	border-color: var(--c-forest-deep);
	outline: 2px solid var(--c-forest-mid);
	outline-offset: 2px;
}

.tv-form-control::placeholder {
	color: rgba(90, 115, 96, 0.5);
	font-size: 0.875rem;
}

.tv-form-control--textarea {
	resize: vertical;
	min-height: 130px;
}

.tv-form-control--error {
	border-color: var(--c-error);
}

.tv-form-control--error:focus {
	border-color: var(--c-error);
	outline-color: var(--c-error);
}

.tv-form-error {
	display: block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	color: var(--c-error);
	margin-top: 0.35rem;
}

/* Datepicker (Flatpickr) wrapper */
.tv-datepicker-wrap {
	position: relative;
}
.tv-datepicker-wrap::after {
	content: "\1F4C5";
	position: absolute;
	right: 0.875rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.95rem;
	pointer-events: none;
	opacity: 0.5;
}
.tv-datepicker {
	cursor: pointer;
	padding-right: 2.5rem;
}
/* Intégration de Flatpickr dans le thème */
.flatpickr-calendar {
	font-family: var(--font-body) !important;
	border-radius: 0 !important;
	border: 1px solid var(--c-forest-mid) !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
	background: var(--c-forest-deep) !important;
	border-color: var(--c-forest-deep) !important;
}
.flatpickr-day:hover {
	background: var(--c-cream-light) !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
span.flatpickr-weekday {
	background: var(--c-forest-deep) !important;
	color: var(--c-cream-warm) !important;
}

/* Flèches prev/next : icônes SVG en cream-warm */
.flatpickr-prev-month,
.flatpickr-next-month {
	color: var(--c-cream-warm) !important;
	fill: var(--c-cream-warm) !important;
}
.flatpickr-prev-month svg,
.flatpickr-next-month svg {
	fill: var(--c-cream-warm) !important;
}
.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
	fill: var(--c-cream-light) !important;
}

/* Select mois + input année : fond forest-deep, texte cream-warm */
.flatpickr-monthDropdown-months {
	background: var(--c-forest-deep) !important;
	color: var(--c-cream-warm) !important;
	border: none !important;
}
.flatpickr-monthDropdown-months option {
	background: var(--c-forest-deep) !important;
	color: var(--c-cream-warm) !important;
}
.flatpickr-current-month input.cur-year {
	color: var(--c-cream-warm) !important;
}

/* Flèches haut/bas de l'année */
.numInputWrapper span {
	border-color: var(--c-cream-warm) !important;
}
.numInputWrapper span::after {
	border-bottom-color: var(--c-cream-warm) !important;
	border-top-color: var(--c-cream-warm) !important;
}

/* Contact info */
.contact-info {
	margin-bottom: var(--sp-md);
}

.contact-info-item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	padding: 0.875rem 0;
	border-bottom: 1px solid rgba(28, 49, 35, 0.12);
}

.contact-info-item:first-child {
	border-top: 1px solid rgba(28, 49, 35, 0.12);
}

.contact-info-item__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-muted);
	min-width: 80px;
	padding-top: 0.15rem;
	flex-shrink: 0;
}

.contact-info-item__value {
	font-size: 0.9375rem;
	color: var(--c-text);
	line-height: 1.55;
}

.contact-info-item__value a {
	color: var(--c-forest-deep);
	font-weight: 700;
	text-decoration: none;
}

.contact-info-item__value a:hover {
	text-decoration: underline;
}

.contact-info-item__note {
	font-size: 0.8125rem;
	color: var(--c-muted);
	display: block;
	margin-top: 0.15rem;
}

/* Pascal quote */
.contact-pascal-quote {
	background-color: var(--c-forest-deep);
	padding: var(--sp-sm) var(--sp-md);
	margin: 0;
	border: none;
}

.contact-pascal-quote p {
	font-size: 0.9375rem;
	line-height: 1.72;
	color: rgba(254, 238, 202, 0.82);
	margin-bottom: 0.75rem;
	font-style: italic;
}

.contact-pascal-quote footer {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(254, 238, 202, 0.5);
}

/* Responsive FAQ-Contact */
@media (max-width: 1199.98px) {
	.s-faq,
	.s-contact-page {
		padding: var(--sp-lg) 0;
	}
	.s-page-header {
		padding: 11rem 0 4rem;
	}
}

@media (max-width: 767.98px) {
	.faq-countries-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 575.98px) {
	.faq-countries-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.contact-info-item__label {
		min-width: 64px;
	}
}

/* PRINT */
@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group;
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	@page {
		margin: 0.5cm;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}
}
