/*
 * Thème Nova — feuille de style principale.
 *
 * Organisation : jetons de design, socle, mise en page, composants, gabarits,
 * utilitaires. Aucun préprocesseur : les propriétés personnalisées CSS
 * suffisent ici et évitent une étape de compilation à maintenir.
 *
 * Direction artistique : bleu nuit, blanc cassé, doré discret. Beaucoup
 * d'espace, peu de traits, aucune ombre portée marquée.
 */

/* =========================================================================
   1. Jetons de design
   ========================================================================= */

:root {
	/* Bleu nuit */
	--navy-900: #060f1e;
	--navy-800: #0a1729;
	--navy-700: #0e2038;
	--navy-600: #142b4a;
	--navy-500: #1d3a60;

	/* Blanc cassé et sable */
	--cream: #f7f4ee;
	--cream-2: #efeae0;
	--sand: #e3d9c6;

	/* Doré, employé par touches : filets, sur-titres, soulignements */
	--gold: #ab8749;
	--gold-soft: #c9a961;

	/* Texte */
	--ink: #0f1d31;
	--body: #475769;
	--muted: #6b7a8c;
	--on-dark: #eae5db;
	--on-dark-muted: #a4afbe;

	/* Traits et fonds */
	--line: rgb(15 29 49 / 12%);
	--line-strong: rgb(15 29 49 / 22%);
	--line-dark: rgb(234 229 219 / 18%);
	--surface: #ffffff;

	/* Typographie */
	--font-display: "Cormorant Garamond", "Iowan Old Style", Garamond, Georgia, serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--fs-display: clamp(2.75rem, 1.7rem + 3.6vw, 5.25rem);
	--fs-h1: clamp(2.25rem, 1.6rem + 2.4vw, 3.75rem);
	--fs-h2: clamp(1.9rem, 1.45rem + 1.7vw, 2.9rem);
	--fs-h3: clamp(1.3rem, 1.15rem + 0.5vw, 1.6rem);
	--fs-h4: 1.125rem;
	--fs-body: 1.0625rem;
	--fs-small: 0.9375rem;
	--fs-tiny: 0.8125rem;

	/* Rythme vertical */
	--sp-1: 0.25rem;
	--sp-2: 0.5rem;
	--sp-3: 0.75rem;
	--sp-4: 1rem;
	--sp-5: 1.5rem;
	--sp-6: 2rem;
	--sp-7: 2.5rem;
	--sp-8: 3rem;
	--sp-9: 4rem;
	--sp-10: 5rem;
	--section: clamp(4rem, 7vw, 7.5rem);

	/* Structure */
	--container: 1240px;
	--container-narrow: 760px;
	--container-wide: 1480px;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--header-h: 84px;
	--radius: 2px;

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--transition: 280ms var(--ease);
}

@media (max-width: 900px) {
	:root {
		--header-h: 66px;
	}
}

/* =========================================================================
   2. Socle
   ========================================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	padding-top: var(--header-h);
	background: var(--cream);
	color: var(--body);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.75;
	font-feature-settings: "kern", "liga", "tnum" 0;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}

/* Le bandeau démarre sous l'en-tête transparent : il assume lui-même le
   décalage, sinon une bande de fond apparaîtrait au-dessus de l'image. */
body.has-hero {
	padding-top: 0;
}

body.nav-open {
	overflow: hidden;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 var(--sp-4);
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.14;
	letter-spacing: -0.015em;
}

h1 {
	font-size: var(--fs-h1);
	font-weight: 300;
}

h2 {
	font-size: var(--fs-h2);
	font-weight: 300;
}

h3 {
	font-size: var(--fs-h3);
	font-weight: 500;
	line-height: 1.3;
}

h4 {
	font-family: var(--font-body);
	font-size: var(--fs-h4);
	font-weight: 600;
	letter-spacing: 0;
}

p {
	margin: 0 0 var(--sp-5);
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--navy-600);
	text-decoration-color: var(--line-strong);
	text-underline-offset: 0.22em;
	text-decoration-thickness: 1px;
	transition: color var(--transition), text-decoration-color var(--transition);
}

a:hover {
	color: var(--gold);
	text-decoration-color: currentcolor;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

figure {
	margin: 0;
}

ul,
ol {
	padding-left: 1.15em;
}

hr {
	height: 1px;
	margin: var(--sp-8) 0;
	border: 0;
	background: var(--line);
}

blockquote {
	margin: var(--sp-7) 0;
	padding-left: var(--sp-5);
	border-left: 2px solid var(--gold);
	color: var(--ink);
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.75rem);
	font-style: italic;
	line-height: 1.45;
}

code,
pre {
	font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	font-size: 0.9em;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

::selection {
	background: var(--navy-700);
	color: var(--cream);
}

/* =========================================================================
   3. Mise en page
   ========================================================================= */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--narrow {
	max-width: var(--container-narrow);
}

.container--wide {
	max-width: var(--container-wide);
}

.section {
	padding-block: var(--section);
}

.section--tight {
	padding-block: clamp(3rem, 5vw, 4.5rem);
}

.section--cream {
	background: var(--cream-2);
}

.section--white {
	background: var(--surface);
}

.section--dark {
	background: var(--navy-800);
	color: var(--on-dark-muted);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
	color: var(--cream);
}

.section--dark a {
	color: var(--cream);
}

.section--dark a:hover {
	color: var(--gold-soft);
}

.grid {
	display: grid;
	gap: var(--sp-6);
}

.grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.grid--3 {
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.grid--4 {
	grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}

/* Deux colonnes texte / image, inversables. */
.split {
	display: grid;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.split {
		grid-template-columns: 1fr 1fr;
	}

	.split--reverse > :first-child {
		order: 2;
	}
}

.skip-link {
	position: absolute;
	top: -100px;
	left: var(--sp-4);
	z-index: 200;
	padding: var(--sp-3) var(--sp-5);
	background: var(--navy-800);
	color: var(--cream);
	text-decoration: none;
	transition: top 160ms var(--ease);
}

.skip-link:focus {
	top: var(--sp-3);
	color: var(--cream);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

/* =========================================================================
   4. Éléments de titrage
   ========================================================================= */

.eyebrow {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin: 0 0 var(--sp-4);
	color: var(--gold);
	font-family: var(--font-body);
	font-size: var(--fs-tiny);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 28px;
	height: 1px;
	background: currentcolor;
	content: "";
	flex: none;
}

.eyebrow--center {
	justify-content: center;
}

.section-head {
	max-width: 62ch;
	margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

.lead {
	color: var(--ink);
	font-size: clamp(1.125rem, 1rem + 0.4vw, 1.3125rem);
	line-height: 1.6;
}

.rule {
	width: 44px;
	height: 2px;
	margin: var(--sp-5) 0 0;
	border: 0;
	background: var(--gold);
}

/* =========================================================================
   5. Boutons et liens d'action
   ========================================================================= */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-3);
	padding: 0.95rem 1.9rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: var(--fs-small);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition),
		border-color var(--transition), transform var(--transition);
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--primary {
	background: var(--navy-700);
	border-color: var(--navy-700);
	color: var(--cream);
}

.btn--primary:hover {
	background: var(--navy-900);
	border-color: var(--navy-900);
	color: var(--cream);
}

.btn--gold {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}

.btn--gold:hover {
	background: var(--gold-soft);
	border-color: var(--gold-soft);
	color: var(--navy-900);
}

.btn--ghost {
	border-color: var(--line-strong);
	background: transparent;
	color: var(--ink);
}

.btn--ghost:hover {
	border-color: var(--navy-700);
	background: var(--navy-700);
	color: var(--cream);
}

.btn--light {
	border-color: rgb(234 229 219 / 45%);
	background: transparent;
	color: var(--cream);
}

.btn--light:hover {
	border-color: var(--cream);
	background: var(--cream);
	color: var(--navy-800);
}

.btn--wide {
	width: 100%;
}

@media (min-width: 640px) {
	.btn--wide {
		width: auto;
		min-width: 260px;
	}
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	margin-top: var(--sp-7);
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	font-size: var(--fs-small);
	font-weight: 500;
	letter-spacing: 0.03em;
	text-decoration: none;
}

.link-arrow::after {
	content: "→";
	transition: transform var(--transition);
}

.link-arrow:hover::after {
	transform: translateX(4px);
}

/* =========================================================================
   6. En-tête et navigation
   ========================================================================= */

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header-h);
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	transition: background-color var(--transition), border-color var(--transition),
		box-shadow var(--transition);
}

/* Au-dessus d'un bandeau illustré, l'en-tête s'efface jusqu'au défilement. */
.has-hero .site-header {
	background: transparent;
	border-bottom-color: transparent;
}

.site-header.is-stuck {
	background: rgb(247 244 238 / 96%);
	backdrop-filter: blur(10px);
	border-bottom-color: var(--line);
	box-shadow: 0 1px 24px rgb(15 29 49 / 6%);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* La navigation étant poussée à droite, cet écart est celui qui sépare
	   le dernier lien du bouton d'appel : il lui faut un peu d'air. */
	gap: var(--sp-6);
	height: 100%;
	max-width: var(--container-wide);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: none;
	text-decoration: none;
}

.brand__logo {
	display: block;
	width: auto;
	height: 44px;
	color: var(--navy-800);
	transition: color var(--transition);
}

/* La fonte du logotype suit celle des titres : changer `--font-display` change
   le logotype avec, sans toucher au SVG. */
.brand__logo text {
	fill: currentcolor;
	font-family: var(--font-display);
}

@media (max-width: 560px) {
	.brand__logo {
		height: 38px;
	}
}

.has-hero .site-header:not(.is-stuck) .brand__logo {
	color: var(--cream);
}

.brand img {
	max-height: 44px;
	width: auto;
}

/* --- Navigation principale --- */

.site-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: var(--sp-6);
}

.nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.5rem, 1.6vw, 1.75rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav__item {
	position: relative;
	display: flex;
	align-items: center;
}

/* Le panneau à colonnes se cale sur l'en-tête, pas sur l'entrée de menu. */
.nav__item--mega {
	position: static;
}

.nav__link {
	display: inline-flex;
	align-items: center;
	padding: var(--sp-3) 0;
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 500;
	letter-spacing: 0.02em;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--transition);
}

.has-hero .site-header:not(.is-stuck) .nav__link,
.has-hero .site-header:not(.is-stuck) .nav__toggle {
	color: var(--cream);
}

.nav__link::after {
	position: absolute;
	bottom: 12px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--gold);
	content: "";
	transition: width var(--transition);
}

.nav__item:hover > .nav__link::after,
.nav__item:focus-within > .nav__link::after,
.nav__item.is-current > .nav__link::after {
	width: 100%;
}

.nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ink);
	cursor: pointer;
}

.nav__chevron {
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentcolor;
	border-bottom: 1.5px solid currentcolor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__chevron {
	transform: translateY(1px) rotate(-135deg);
}

/* --- Panneau à colonnes (troisième niveau) --- */

.mega {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-8px);
	background: var(--surface);
	border-top: 1px solid var(--line);
	box-shadow: 0 24px 48px rgb(15 29 49 / 10%);
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav__item--mega:hover > .mega,
.nav__item--mega:focus-within > .mega,
.nav__item--mega.is-open > .mega {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.mega__inner {
	display: grid;
	gap: clamp(2rem, 4vw, 4rem);
	max-width: var(--container-wide);
	margin-inline: auto;
	padding: clamp(2.25rem, 3.5vw, 3.5rem) var(--gutter);
	grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
	.mega__inner {
		grid-template-columns: minmax(220px, 300px) 1fr;
	}
}

.mega__intro {
	padding-right: var(--sp-6);
	border-right: 1px solid var(--line);
}

@media (max-width: 1023px) {
	.mega__intro {
		padding-right: 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
		padding-bottom: var(--sp-5);
	}
}

.mega__intro-title {
	margin: 0 0 var(--sp-3);
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.65rem;
	line-height: 1.2;
}

.mega__intro-text {
	margin: 0 0 var(--sp-4);
	color: var(--muted);
	font-size: var(--fs-small);
	line-height: 1.6;
}

.mega__columns {
	display: grid;
	gap: clamp(1.5rem, 3vw, 3rem);
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}

.mega__title {
	display: block;
	margin-bottom: var(--sp-4);
	padding-bottom: var(--sp-3);
	border-bottom: 1px solid var(--line);
	color: var(--gold);
	font-size: var(--fs-tiny);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-decoration: none;
	text-transform: uppercase;
}

.mega__title:hover {
	color: var(--navy-700);
}

.mega__list {
	display: grid;
	gap: var(--sp-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

.submenu__link {
	display: block;
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 500;
	text-decoration: none;
	transition: color var(--transition), transform var(--transition);
}

.submenu__link:hover {
	color: var(--gold);
	transform: translateX(3px);
}

.submenu__desc {
	display: block;
	margin-top: 2px;
	color: var(--muted);
	font-size: var(--fs-tiny);
	line-height: 1.5;
}

/* --- Déroulant simple (deuxième niveau) --- */

.submenu {
	position: absolute;
	top: 100%;
	left: -1.25rem;
	z-index: 10;
	min-width: 250px;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-8px);
	margin: 0;
	padding: var(--sp-5) var(--sp-5);
	list-style: none;
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: 0 20px 40px rgb(15 29 49 / 10%);
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
	display: grid;
	gap: var(--sp-3);
}

.nav__item--simple:hover > .submenu,
.nav__item--simple:focus-within > .submenu,
.nav__item--simple.is-open > .submenu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.header__cta {
	flex: none;
}

/* Le bouton n'apparaît qu'une fois la place réellement disponible : entre
   1024 et 1280 px, logotype et navigation occupent déjà toute la largeur. */
@media (max-width: 1280px) {
	.header__cta {
		display: none;
	}
}

/* --- Bouton hamburger --- */

.nav-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-right: -10px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ink);
	cursor: pointer;
}

.nav-burger__bars,
.nav-burger__bars::before,
.nav-burger__bars::after {
	display: block;
	width: 24px;
	height: 1.5px;
	background: currentcolor;
	transition: transform var(--transition), opacity var(--transition);
}

.nav-burger__bars::before,
.nav-burger__bars::after {
	position: absolute;
	content: "";
}

.nav-burger__bars::before {
	transform: translateY(-7px);
}

.nav-burger__bars::after {
	transform: translateY(7px);
}

.nav-burger[aria-expanded="true"] .nav-burger__bars {
	background: transparent;
}

.nav-burger[aria-expanded="true"] .nav-burger__bars::before {
	transform: rotate(45deg);
}

.nav-burger[aria-expanded="true"] .nav-burger__bars::after {
	transform: rotate(-45deg);
}

.has-hero .site-header:not(.is-stuck) .nav-burger {
	color: var(--cream);
}

/* --- Navigation mobile : tiroir plein écran, sous-menus en accordéon --- */

@media (max-width: 1023px) {
	.nav-burger {
		display: inline-flex;
		position: relative;
	}

	.site-nav {
		position: fixed;
		inset: var(--header-h) 0 0;
		z-index: 90;
		display: block;
		padding: var(--sp-6) var(--gutter) var(--sp-10);
		background: var(--cream);
		overflow-y: auto;
		overscroll-behavior: contain;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
	}

	.site-nav.is-open {
		visibility: visible;
		opacity: 1;
		transform: none;
	}

	.nav__list {
		display: block;
	}

	.nav__item {
		display: block;
		border-bottom: 1px solid var(--line);
	}

	.nav__link {
		padding: var(--sp-4) 0;
		font-size: 1.15rem;
		color: var(--ink) !important;
	}

	.nav__link::after {
		display: none;
	}

	.nav__toggle {
		position: absolute;
		top: 8px;
		right: -8px;
		width: 44px;
		height: 44px;
		color: var(--ink) !important;
	}

	/* Fermés par défaut, ouverts au clic : le survol n'existe pas au tactile. */
	.mega,
	.submenu {
		position: static;
		display: none;
		visibility: visible;
		opacity: 1;
		transform: none;
		min-width: 0;
		padding: 0 0 var(--sp-4);
		border: 0;
		box-shadow: none;
		background: transparent;
	}

	.nav__item.is-open > .mega,
	.nav__item.is-open > .submenu {
		display: block;
	}

	.mega__inner {
		display: block;
		padding: 0;
	}

	.mega__intro {
		margin-bottom: var(--sp-5);
	}

	.mega__columns {
		display: block;
	}

	.mega__column {
		margin-bottom: var(--sp-5);
		border: 0;
	}

	.mega__list,
	.submenu {
		gap: var(--sp-4);
	}

	.submenu__link {
		padding: var(--sp-1) 0;
		font-size: 1rem;
	}

	.nav__mobile-cta {
		display: block;
		margin-top: var(--sp-6);
	}
}

@media (min-width: 1024px) {
	.nav__mobile-cta {
		display: none;
	}
}

/* =========================================================================
   7. Bandeaux
   ========================================================================= */

.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(88vh, 820px);
	padding-top: calc(var(--header-h) + 3rem);
	padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
	background: var(--navy-800);
	color: var(--cream);
	isolation: isolate;
	overflow: hidden;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Deux dégradés superposés : un voile général qui assure le contraste du
   texte, et un renforcement latéral côté colonne de titre. */
.hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(to top, rgb(6 15 30 / 88%) 0%, rgb(6 15 30 / 45%) 45%, rgb(6 15 30 / 18%) 100%),
		linear-gradient(to right, rgb(6 15 30 / 65%) 0%, rgb(6 15 30 / 10%) 60%);
	content: "";
}

.hero__inner {
	position: relative;
	width: 100%;
	max-width: var(--container-wide);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.hero__title {
	max-width: 18ch;
	margin-bottom: var(--sp-5);
	color: var(--cream);
	font-size: var(--fs-display);
	font-weight: 300;
	line-height: 1.06;
}

.hero__text {
	max-width: 52ch;
	color: var(--on-dark);
	font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
	line-height: 1.65;
}

.hero .eyebrow {
	color: var(--gold-soft);
}

/* Bandeau de page intérieure : plus bas, sans surcharge d'image. */
.page-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(56vh, 520px);
	padding-top: calc(var(--header-h) + 2.5rem);
	padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
	background: var(--navy-800);
	color: var(--cream);
	isolation: isolate;
	overflow: hidden;
}

.page-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgb(6 15 30 / 90%) 0%, rgb(6 15 30 / 55%) 55%, rgb(6 15 30 / 25%) 100%);
	content: "";
}

.page-hero__inner {
	position: relative;
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.page-hero__title {
	max-width: 20ch;
	margin-bottom: var(--sp-4);
	color: var(--cream);
}

.page-hero__text {
	max-width: 60ch;
	color: var(--on-dark);
	font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
}

.page-hero .eyebrow {
	color: var(--gold-soft);
}

.page-hero .breadcrumb {
	margin-bottom: var(--sp-5);
}

/* Repli sans image : bandeau plein bleu nuit. */
.page-head {
	padding-top: clamp(3rem, 5vw, 4.5rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	border-bottom: 1px solid var(--line);
}

/* =========================================================================
   8. Fil d'Ariane et pagination
   ========================================================================= */

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--fs-tiny);
	letter-spacing: 0.03em;
}

.breadcrumb__item + .breadcrumb__item::before {
	margin-right: var(--sp-2);
	color: currentcolor;
	content: "/";
	opacity: 0.45;
}

.breadcrumb a {
	color: inherit;
	text-decoration: none;
	opacity: 0.75;
}

.breadcrumb a:hover {
	opacity: 1;
	text-decoration: underline;
}

.page-hero .breadcrumb {
	color: var(--on-dark-muted);
}

.page-head .breadcrumb {
	margin-bottom: var(--sp-5);
	color: var(--muted);
}

.pagination {
	margin-top: var(--sp-9);
}

.pagination__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--sp-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding-inline: var(--sp-3);
	border: 1px solid var(--line);
	color: var(--ink);
	font-size: var(--fs-small);
	text-decoration: none;
	transition: all var(--transition);
}

.pagination .page-numbers:hover {
	border-color: var(--navy-700);
	background: var(--navy-700);
	color: var(--cream);
}

.pagination .page-numbers.current {
	border-color: var(--navy-800);
	background: var(--navy-800);
	color: var(--cream);
}

.pagination .page-numbers.dots {
	border-color: transparent;
}

/* =========================================================================
   9. Cartes
   ========================================================================= */

.card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--surface);
	border: 1px solid var(--line);
	transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
	transform: translateY(-3px);
	border-color: var(--line-strong);
	box-shadow: 0 18px 40px rgb(15 29 49 / 8%);
}

.thumb {
	position: relative;
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--cream-2);
}

.thumb__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--ease);
}

.card:hover .thumb__img {
	transform: scale(1.04);
}

.card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: var(--sp-6);
}

.card__title {
	margin-bottom: var(--sp-3);
	font-size: 1.3rem;
	line-height: 1.3;
}

.card__title a {
	color: inherit;
	text-decoration: none;
}

.card__title a:hover {
	color: var(--gold);
}

.card__excerpt {
	margin-bottom: var(--sp-5);
	font-size: var(--fs-small);
	line-height: 1.65;
}

.card__footer {
	margin-top: auto;
	padding-top: var(--sp-4);
}

/* La zone cliquable est portée à 24 px de haut : c'est le minimum requis par
   le critère 2.5.8 des WCAG 2.2 pour une cible tactile. */
.tag {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding-block: 3px;
	color: var(--gold);
	font-size: var(--fs-tiny);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

.entry__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-4);
	margin-bottom: var(--sp-4);
	color: var(--muted);
	font-size: var(--fs-tiny);
	letter-spacing: 0.04em;
}

/* --- Carte d'expertise : le visuel occupe toute la carte --- */

.expertise-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 380px;
	padding: var(--sp-6);
	overflow: hidden;
	background: var(--navy-800);
	color: var(--cream);
	isolation: isolate;
	text-decoration: none;
}

.expertise-card__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.expertise-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--ease);
}

.expertise-card::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(to top, rgb(6 15 30 / 92%) 8%, rgb(6 15 30 / 45%) 55%, rgb(6 15 30 / 15%) 100%);
	content: "";
	transition: background var(--transition);
}

.expertise-card:hover .expertise-card__media img {
	transform: scale(1.05);
}

.expertise-card__title {
	margin-bottom: var(--sp-2);
	color: var(--cream);
	font-size: 1.5rem;
	line-height: 1.22;
}

.expertise-card__text {
	margin-bottom: var(--sp-4);
	color: var(--on-dark);
	font-size: var(--fs-small);
	line-height: 1.6;
}

.expertise-card__domain {
	color: var(--gold-soft);
	font-size: var(--fs-tiny);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.expertise-card__body {
	position: relative;
}

/* =========================================================================
   10. Chiffres clés, témoignages, équipe
   ========================================================================= */

/*
 * Chiffres clés — en flex plutôt qu'en grille.
 *
 * Une grille `auto-fit` calait quatre repères sur trois colonnes autour de
 * 1000 px, laissant le quatrième seul sur une deuxième ligne. Le flex évite ce
 * cas : deux par ligne jusqu'à la bascule, tous alignés au-delà. Il s'adapte
 * aussi au nombre de repères réellement saisis — trois donneront trois colonnes
 * égales, là où une grille fixe aurait laissé une case vide, visible ici
 * puisque le fond du conteneur fait office de filet de séparation.
 */
.stats {
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
	background: var(--line-dark);
}

.stat {
	flex: 1 1 calc(50% - 1px);
	/* Sans cela, `min-width: auto` laisse le mot le plus long du libellé imposer
	   la largeur de l'élément. Il suffit alors d'un demi-pixel de dépassement
	   pour que la paire se scinde et que chaque repère occupe une ligne entière. */
	min-width: 0;
	padding: clamp(2rem, 3.5vw, 3rem) var(--sp-5);
	background: var(--navy-800);
	text-align: center;
}

/* Marges intérieures resserrées sur mobile : deux repères par ligne y laissent
   peu de place, et c'est le texte qui doit en profiter. */
@media (max-width: 480px) {
	.stat {
		padding-inline: var(--sp-4);
	}
}

/* Une seule colonne réservée aux très petits écrans : à 375 px, deux repères
   par ligne restent lisibles et évitent quatre pleines hauteurs à faire défiler. */
@media (max-width: 359px) {
	.stat {
		flex-basis: 100%;
	}
}

@media (min-width: 1024px) {
	.stat {
		flex-basis: 0;
	}
}

.stat__value {
	display: block;
	margin-bottom: var(--sp-2);
	color: var(--cream);
	font-family: var(--font-display);
	font-size: clamp(2.75rem, 2rem + 2.4vw, 4rem);
	font-weight: 300;
	line-height: 1;
	letter-spacing: -0.02em;
}

.stat__label {
	display: block;
	color: var(--on-dark-muted);
	font-size: var(--fs-small);
	line-height: 1.45;
}

.quote {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: clamp(2rem, 3vw, 2.75rem);
	background: var(--surface);
	border: 1px solid var(--line);
}

.quote__mark {
	margin-bottom: var(--sp-3);
	color: var(--sand);
	font-family: var(--font-display);
	font-size: 3.5rem;
	line-height: 0.6;
}

.quote__text {
	flex: 1;
	margin-bottom: var(--sp-5);
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-style: italic;
	line-height: 1.5;
}

.quote__author {
	display: flex;
	align-items: center;
	gap: var(--sp-4);
	padding-top: var(--sp-4);
	border-top: 1px solid var(--line);
	font-size: var(--fs-small);
}

/*
 * Portrait du signataire, resserré sur le visage.
 *
 * Les portraits sont cadrés tête et épaules, avec de l'air au-dessus : affichés
 * tels quels dans un petit disque, le visage n'en occupe qu'un tiers. On rogne
 * donc sur une fenêtre carrée valant 58 % de la largeur du portrait, centrée à
 * 50 % en largeur et 42 % en hauteur — valeurs relevées sur les six portraits.
 *
 * D'où les nombres ci-dessous, pour un disque de côté S :
 *   largeur de l'image  = S / 0,58                    = 172,4 %
 *   décalage horizontal = −(0,50 − 0,29) × 172,4 %    = −36,2 %
 *   décalage vertical   = −(0,42 × 2,225 − 0,29) × 100 %/0,58 = −43,5 %
 *     (2,225 = rapport hauteur/largeur du portrait, 413/320)
 *
 * Le rognage est fait à l'affichage et non au recadrage du fichier : une photo
 * téléversée plus tard par le client garde ainsi son cadrage d'origine en
 * médiathèque, et reste utilisable ailleurs.
 */
.quote__photo {
	position: relative;
	flex: none;
	display: block;
	width: 78px;
	height: 78px;
	overflow: hidden;
	border-radius: 50%;
	background: var(--cream-2);
	box-shadow: 0 0 0 1px var(--line);
}

.quote__photo img {
	position: absolute;
	top: -43.5%;
	left: -36.2%;
	width: 172.4%;
	max-width: none;
	height: auto;
	/* Légèrement désaturé, pour rester en accord avec la planche générale. */
	filter: saturate(0.9);
}

/* `min-width: 0` autorise la troncature du texte long à côté du portrait :
   sans lui, un nom d'organisation étiré élargirait la carte. */
.quote__identity {
	min-width: 0;
}

.quote__name {
	display: block;
	color: var(--ink);
	font-weight: 600;
}

.quote__role {
	display: block;
	color: var(--muted);
	font-size: var(--fs-tiny);
	line-height: 1.5;
}

.member {
	display: flex;
	flex-direction: column;
}

.member__photo {
	aspect-ratio: 3 / 4;
	margin-bottom: var(--sp-4);
	overflow: hidden;
	background: var(--cream-2);
}

.member__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92);
	transition: transform 600ms var(--ease), filter var(--transition);
}

.member:hover .member__photo img {
	filter: saturate(1);
	transform: scale(1.03);
}

.member__name {
	margin-bottom: var(--sp-1);
	font-size: 1.25rem;
}

.member__role {
	margin-bottom: var(--sp-3);
	color: var(--gold);
	font-size: var(--fs-tiny);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.member__bio {
	font-size: var(--fs-small);
	line-height: 1.6;
}

.member__links {
	display: flex;
	gap: var(--sp-4);
	margin-top: var(--sp-4);
	font-size: var(--fs-tiny);
}

/* =========================================================================
   11. Blocs de contenu long
   ========================================================================= */

.prose {
	color: var(--body);
	font-size: 1.09375rem;
	line-height: 1.8;
}

.prose > * + * {
	margin-top: var(--sp-5);
}

.prose h2 {
	margin-top: var(--sp-9);
	margin-bottom: var(--sp-4);
	font-size: clamp(1.6rem, 1.35rem + 1vw, 2.15rem);
}

.prose h3 {
	margin-top: var(--sp-7);
	margin-bottom: var(--sp-3);
}

.prose h2:first-child,
.prose h3:first-child {
	margin-top: 0;
}

.prose ul,
.prose ol {
	padding-left: 1.3em;
}

.prose li + li {
	margin-top: var(--sp-2);
}

.prose li::marker {
	color: var(--gold);
}

.prose img,
.prose figure {
	margin-block: var(--sp-7);
}

.prose figcaption {
	margin-top: var(--sp-3);
	color: var(--muted);
	font-size: var(--fs-tiny);
	text-align: center;
}

.prose a {
	color: var(--navy-600);
	text-decoration: underline;
	text-decoration-color: var(--gold);
}

.prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--fs-small);
}

.prose th,
.prose td {
	padding: var(--sp-3) var(--sp-4);
	border-bottom: 1px solid var(--line);
	text-align: left;
}

.prose th {
	color: var(--ink);
	font-weight: 600;
}

/* Liste à puces dorées, employée hors contenu éditorial. */
.checklist {
	display: grid;
	gap: var(--sp-4);
	margin: 0;
	padding: 0;
	list-style: none;
}

.checklist li {
	position: relative;
	padding-left: 2rem;
}

.checklist li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 12px;
	height: 1px;
	background: var(--gold);
	content: "";
}

.checklist__title {
	display: block;
	color: var(--ink);
	font-weight: 600;
}

/* Étapes numérotées de la méthodologie. */
.steps {
	counter-reset: step;
	display: grid;
	gap: var(--sp-5);
	margin: 0;
	padding: 0;
	list-style: none;
}

.step {
	position: relative;
	padding-left: 4.25rem;
}

.step::before {
	position: absolute;
	top: -0.15em;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	color: var(--gold);
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	font-family: var(--font-display);
	font-size: 1.05rem;
}

.step__title {
	display: block;
	margin-bottom: var(--sp-1);
	color: var(--ink);
	font-size: 1.0625rem;
	font-weight: 600;
}

.step__text {
	font-size: var(--fs-small);
	line-height: 1.65;
}

/* Encadré latéral (fiche expertise, article). */
.aside-card {
	padding: var(--sp-6);
	background: var(--cream-2);
	border-top: 2px solid var(--gold);
}

.aside-card__title {
	margin-bottom: var(--sp-4);
	font-size: 1.15rem;
}

.facts {
	margin: 0;
	font-size: var(--fs-small);
}

.facts dt {
	color: var(--muted);
	font-size: var(--fs-tiny);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.facts dd {
	margin: var(--sp-1) 0 var(--sp-4);
	color: var(--ink);
	line-height: 1.55;
}

.facts dd:last-child {
	margin-bottom: 0;
}

/* =========================================================================
   12. Formulaires
   ========================================================================= */

.form__grid {
	display: grid;
	gap: var(--sp-5);
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.form__grid {
		grid-template-columns: 1fr 1fr;
	}

	.form__row {
		grid-column: 1 / -1;
	}

	.form__row--half {
		grid-column: auto;
	}
}

.form__label {
	display: block;
	margin-bottom: var(--sp-2);
	color: var(--ink);
	font-size: var(--fs-small);
	font-weight: 500;
}

.form__required {
	color: var(--gold);
}

.form__control {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--ink);
	font-family: inherit;
	font-size: var(--fs-small);
	line-height: 1.5;
	transition: border-color var(--transition), box-shadow var(--transition);
}

.form__control:focus {
	border-color: var(--navy-600);
	box-shadow: 0 0 0 3px rgb(29 58 96 / 12%);
	outline: none;
}

textarea.form__control {
	resize: vertical;
	min-height: 160px;
}

select.form__control {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
		linear-gradient(135deg, var(--muted) 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 15px) calc(50% + 2px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 2.75rem;
}

.has-error .form__control {
	border-color: #b3261e;
}

.form__error {
	margin: var(--sp-2) 0 0;
	color: #b3261e;
	font-size: var(--fs-tiny);
}

.form__check {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	font-size: var(--fs-small);
	line-height: 1.6;
	cursor: pointer;
}

.form__check input {
	flex: none;
	width: 18px;
	height: 18px;
	margin-top: 0.2em;
	accent-color: var(--navy-700);
}

.form__legal {
	margin-top: var(--sp-5);
	color: var(--muted);
	font-size: var(--fs-tiny);
	line-height: 1.6;
}

.form form > .btn {
	margin-top: var(--sp-6);
}

/* Le leurre antispam ne doit être ni visible, ni atteignable au clavier,
   ni annoncé — mais il doit rester soumis avec le formulaire. */
.form__honeypot {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.alert {
	margin-bottom: var(--sp-6);
	padding: var(--sp-5);
	border-left: 3px solid;
	font-size: var(--fs-small);
}

.alert--success {
	border-color: #2f6b46;
	background: #eef5f0;
	color: #234f34;
}

.alert--error {
	border-color: #b3261e;
	background: #fbeeed;
	color: #8c1d18;
}

.alert__title {
	margin-bottom: var(--sp-2);
	font-weight: 600;
}

.search-form {
	display: flex;
	gap: var(--sp-3);
}

.search-form .form__control {
	flex: 1;
}

/* =========================================================================
   13. Bandeau d'appel à l'action et pied de page
   ========================================================================= */

.cta-band {
	position: relative;
	padding-block: clamp(4rem, 7vw, 6.5rem);
	background: var(--navy-800);
	color: var(--on-dark);
	isolation: isolate;
	overflow: hidden;
	text-align: center;
}

.cta-band__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.cta-band__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cta-band::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgb(8 20 38 / 82%);
	content: "";
}

.cta-band__title {
	max-width: 20ch;
	margin-inline: auto;
	color: var(--cream);
}

.cta-band__text {
	max-width: 58ch;
	margin-inline: auto;
	color: var(--on-dark);
}

.cta-band .btn-row {
	justify-content: center;
}

.site-footer {
	background: var(--navy-900);
	color: var(--on-dark-muted);
	font-size: var(--fs-small);
}

.footer__main {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4rem);
	padding-block: clamp(3.5rem, 6vw, 5.5rem);
	grid-template-columns: 1fr;
}

@media (min-width: 720px) {
	.footer__main {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.footer__main {
		grid-template-columns: 1.4fr repeat(3, 1fr);
	}
}

.footer__brand .brand__logo {
	height: 38px;
	color: var(--cream);
}

.footer__baseline {
	margin-top: var(--sp-4);
	max-width: 34ch;
	color: var(--on-dark-muted);
	line-height: 1.65;
}

.footer__title {
	margin-bottom: var(--sp-4);
	color: var(--cream);
	font-family: var(--font-body);
	font-size: var(--fs-tiny);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.footer__list {
	display: grid;
	gap: var(--sp-3);
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Les liens du pied de page sont empilés : sans zone cliquable propre, ils ne
   font que la hauteur de leur ligne de texte (19 px), sous le seuil tactile. */
.footer__list a,
.footer__contact a {
	display: inline-block;
	padding-block: 3px;
	color: var(--on-dark-muted);
	text-decoration: none;
}

.footer__list a:hover,
.footer__contact a:hover {
	color: var(--gold-soft);
}

.footer__contact {
	display: grid;
	gap: var(--sp-4);
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__contact li {
	display: flex;
	gap: var(--sp-3);
	line-height: 1.6;
}

.footer__contact .icon {
	flex: none;
	margin-top: 2px;
	color: var(--gold-soft);
}

.social {
	display: flex;
	gap: var(--sp-3);
	margin: var(--sp-5) 0 0;
	padding: 0;
	list-style: none;
}

.social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line-dark);
	color: var(--on-dark-muted);
	transition: all var(--transition);
}

.social__link:hover {
	border-color: var(--gold-soft);
	background: var(--gold-soft);
	color: var(--navy-900);
}

.footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	padding-block: var(--sp-5);
	border-top: 1px solid var(--line-dark);
	color: var(--on-dark-muted);
	font-size: var(--fs-tiny);
}

.footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-5);
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__legal a {
	display: inline-block;
	padding-block: 3px;
	color: inherit;
	text-decoration: none;
}

.footer__legal a:hover {
	color: var(--gold-soft);
}

/* =========================================================================
   14. Bandeau cookies
   ========================================================================= */

.cookie-banner {
	position: fixed;
	right: var(--sp-5);
	bottom: var(--sp-5);
	left: var(--sp-5);
	z-index: 150;
	max-width: 620px;
	margin-inline: auto;
	padding: var(--sp-5) var(--sp-6);
	background: var(--surface);
	border: 1px solid var(--line-strong);
	box-shadow: 0 24px 48px rgb(15 29 49 / 18%);
	font-size: var(--fs-small);
}

.cookie-banner[hidden] {
	display: none;
}

.cookie-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	margin-top: var(--sp-4);
}

.cookie-banner .btn {
	padding: 0.7rem 1.4rem;
	font-size: var(--fs-tiny);
}

/* Carte : placeholder tant que le visiteur n'a pas consenti. */
.map {
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--cream-2);
	border: 1px solid var(--line);
}

.map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.map__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--sp-4);
	height: 100%;
	padding: var(--sp-6);
	text-align: center;
}

/* =========================================================================
   15. Utilitaires
   ========================================================================= */

.text-center {
	text-align: center;
}

.mt-0 {
	margin-top: 0;
}

.mb-0 {
	margin-bottom: 0;
}

.stack > * + * {
	margin-top: var(--sp-5);
}

.muted {
	color: var(--muted);
}

.frame {
	position: relative;
	overflow: hidden;
}

/* Filet doré décalé derrière une image, motif récurrent de la charte. */
.frame--offset::before {
	position: absolute;
	inset: 14px -14px -14px 14px;
	z-index: -1;
	border: 1px solid var(--gold);
	content: "";
}

.frame--offset {
	overflow: visible;
	isolation: isolate;
}

.frame--offset img {
	position: relative;
	display: block;
	width: 100%;
}

.ratio-3-2 {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.ratio-4-3 {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Bloc « chargement paresseux » des sections révélées au défilement. */
.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
	}
}

/* =========================================================================
   16. Impression
   ========================================================================= */

@media print {
	.site-header,
	.site-footer,
	.cta-band,
	.cookie-banner,
	.pagination,
	.breadcrumb {
		display: none !important;
	}

	body {
		padding-top: 0;
		background: #fff;
		color: #000;
		font-size: 11pt;
	}

	a::after {
		content: " (" attr(href) ")";
		font-size: 9pt;
	}
}
