/* ============================================================
   MOBILITY TRANSITION LAB — STYLÉ
   Direction OCI/Buzzworthy adaptée aux tokens MTLab.
   Bold midnight + paper alternés, type XXL, halftone, cartes rotated,
   animations CBR (scroll-triggered word reveals + fade-ups).
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..600&display=swap");

:root {
	/* ——— Brand tokens MTLab ——— */
	--midnight: #0a1628;
	--midnight-80: #1f2a3d;
	--midnight-70: #2a3a50;
	--transition: #0f6e56;
	--transition-l: #e1f5ee;
	--transition-deep: #084736;
	--signal: #1d9e75;
	--amber: #ba7517;
	--red: #ba002d;

	/* ——— Surfaces ——— */
	--surface: #faf9f5;
	--surface-soft: #f6f4ec;
	--paper: var(--surface);
	--paper-card: #f8f5ec;
	--card: #ffffff;
	--ice: #ecf1f6;

	/* ——— Lines ——— */
	--line: rgba(10, 22, 40, 0.16);
	--line-soft: rgba(10, 22, 40, 0.08);
	--line-strong: rgba(10, 22, 40, 0.45);
	--line-light: rgba(243, 239, 230, 0.2);
	--muted: rgba(243, 239, 230, 0.65);

	/* ——— Type ——— */
	--ft-title: "Space Grotesk", "Helvetica Neue", sans-serif;
	--ft-body: "Inter", "Helvetica Neue", sans-serif;
	--ft-editorial: "Fraunces", Georgia, serif;

	/* ——— Layout ——— */
	--content-pad: 36px;
	--max: 1480px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	overflow-x: clip;
	scroll-behavior: smooth;
}
body {
	overflow-x: clip;
	background: var(--paper);
	color: var(--midnight);
	font-family: var(--ft-body);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "ss01";
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	max-width: 100%;
}
em {
	font-style: italic;
}

.deep {
	background: var(--midnight);
	color: var(--paper);
}
.paper {
	background: var(--paper);
	color: var(--midnight);
}
.cream {
	background: var(--surface-soft);
}

/* ============================================================
   TYPE — Display XXL OCI-style
   ============================================================ */
.mega {
	font-family: var(--ft-title);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.86;
}
.mega em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	letter-spacing: -0.02em;
}

.eyebrow,
.label-tag {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--midnight);
}
.eyebrow.muted {
	color: rgba(10, 22, 40, 0.55);
}
.eyebrow.light {
	color: var(--muted);
}
.eyebrow .dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--transition);
	margin-right: 10px;
	vertical-align: 1px;
}

.lede {
	font-family: var(--ft-body);
	font-weight: 400;
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.55;
	letter-spacing: -0.005em;
	color: var(--midnight);
}

.container {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 var(--content-pad);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	padding: 18px var(--content-pad);
	background: transparent;
	pointer-events: none; /* let the page below remain interactive */
	color: var(--paper); /* texte toujours clair, le scrim assure le contraste */
	will-change: transform;
}
/* Scrim gradient — voile sombre dégradé qui assure la lisibilité du logo
   peu importe la couleur du contenu qui scrolle dessous (style CBR).
   Son opacité est tied à --header-visibility (0 quand le header est caché, 1 quand visible). */
.site-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 220px;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(10, 22, 40, 0.62) 0%,
		rgba(10, 22, 40, 0.38) 40%,
		rgba(10, 22, 40, 0.16) 75%,
		rgba(10, 22, 40, 0) 100%
	);
	opacity: var(--header-visibility, 1);
	z-index: 0;
}
.header-inner {
	position: relative;
	z-index: 1;
	max-width: var(--max);
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-inner > * {
	pointer-events: auto;
}
.site-header.is-hidden {
	transform: translateY(-110%);
}

/* ============== HAMBURGER (3 bars) + INLINE NAV ============== */
.header-right {
	display: flex;
	align-items: center;
	gap: 28px;
	pointer-events: auto;
}
.header-nav {
	/* Frère du header pour éviter le containing block du transform appliqué au header.
     Centré verticalement avec le logo MTL (60px) dans le .site-header (padding 18px). */
	position: fixed;
	top: 34px;
	left: 50%;
	z-index: 81;
	display: flex;
	align-items: center;
	gap: 36px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transform: translateX(calc(-50% + 16px));
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
}
body.is-nav-open .header-nav {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%);
}
.header-nav-link {
	position: relative;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 28px;
	letter-spacing: -0.01em;
	color: var(--paper);
	text-decoration: none;
	line-height: 1;
	padding-bottom: 6px;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}
.header-nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--signal);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-nav-link:hover {
	color: var(--signal);
	transform: translateY(-2px);
}
.header-nav-link:hover::after {
	transform: scaleX(1);
}

.header-menu-btn {
	background: none;
	border: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 8px;
	cursor: pointer;
	pointer-events: auto;
}
.header-menu-btn .bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--paper);
	transition:
		background 0.2s ease,
		transform 0.3s ease,
		opacity 0.2s ease,
		width 0.2s ease;
}
.header-menu-btn:hover .bar:nth-child(1) {
	background: var(--transition);
	transition-delay: 0s;
}
.header-menu-btn:hover .bar:nth-child(2) {
	background: var(--transition);
	transition-delay: 0.06s;
}
.header-menu-btn:hover .bar:nth-child(3) {
	background: var(--transition);
	transition-delay: 0.12s;
}
/* hamburger devient X quand le menu est ouvert */
body.is-nav-open .header-menu-btn .bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
body.is-nav-open .header-menu-btn .bar:nth-child(2) {
	opacity: 0;
}
body.is-nav-open .header-menu-btn .bar:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}
.header-left {
	display: flex;
	align-items: center;
	gap: 20px;
	pointer-events: auto;
}
.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 60px;
	letter-spacing: -0.03em;
	color: currentColor;
	line-height: 1;
}
/* legacy — au cas où des éléments sont encore référencés ailleurs */
.brand-logo,
.brand-mark,
.brand-mt,
.brand-lab {
	display: none;
}

.header-home-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--ft-title);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: currentColor;
	opacity: 0.55;
	padding: 6px 14px;
	border: 1px solid currentColor;
	transition:
		opacity 0.2s,
		background 0.2s,
		color 0.2s;
}
.header-home-link:hover {
	opacity: 1;
	background: var(--transition);
	color: var(--paper);
	border-color: var(--transition);
}

.site-header nav {
	display: flex;
	gap: 28px;
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.005em;
}
.site-header nav a {
	position: relative;
	padding: 6px 0;
	transition: opacity 0.2s;
}
.site-header nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -3px;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.15, 1);
}
.site-header nav a:hover::after,
.site-header nav a.active::after {
	transform: scaleX(1);
	transform-origin: left center;
}
.site-header .header-cta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	border: 1px solid currentColor;
	font-family: var(--ft-title);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition:
		background 0.2s,
		color 0.2s,
		transform 0.3s;
}
.site-header .header-cta a:hover {
	background: var(--midnight);
	color: var(--paper);
	border-color: var(--midnight);
	transform: translateY(-1px);
}
.site-header.on-dark:not(.scrolled) .header-cta a:hover {
	background: var(--paper);
	color: var(--midnight);
	border-color: var(--paper);
}

/* ============================================================
   HERO — midnight bleed
   ============================================================ */
.hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 140px var(--content-pad) 80px;
	background: var(--midnight);
	color: var(--paper);
	min-height: 90vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.hero-halftone {
	display: none;
}

/* Aurora animée — nappes vertes qui mutent en arrière-plan */
.hero::before {
	content: "";
	position: absolute;
	inset: -30%;
	z-index: 0;
	background:
		radial-gradient(
			45% 55% at 70% 25%,
			rgba(29, 158, 117, 0.42),
			transparent 65%
		),
		radial-gradient(
			40% 50% at 25% 35%,
			rgba(15, 110, 86, 0.38),
			transparent 70%
		),
		radial-gradient(
			35% 40% at 85% 45%,
			rgba(29, 158, 117, 0.3),
			transparent 70%
		),
		radial-gradient(
			30% 35% at 15% 15%,
			rgba(15, 110, 86, 0.32),
			transparent 75%
		);
	filter: blur(55px) saturate(1.15);
	-webkit-mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		black 18%,
		black 45%,
		transparent 88%
	);
	mask-image: linear-gradient(
		to bottom,
		transparent 0%,
		black 18%,
		black 45%,
		transparent 88%
	);
	animation: auroraDrift 9s ease-in-out infinite;
	will-change: transform;
}
@keyframes auroraDrift {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
	25% {
		transform: translate3d(-8%, 6%, 0) rotate(4deg) scale(1.1);
	}
	50% {
		transform: translate3d(6%, -4%, 0) rotate(-3deg) scale(0.95);
	}
	75% {
		transform: translate3d(-4%, -6%, 0) rotate(3deg) scale(1.05);
	}
}

/* Grain noise overlay — texture cinéma subtile */
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.18;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
	background-size: 220px 220px;
}

.hero .inner {
	position: relative;
	z-index: 2;
	max-width: var(--max);
	margin: 0 auto;
	width: 100%;
}

.hero-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 48px;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(250, 249, 245, 0.7);
}
.hero-meta .dot {
	width: 6px;
	height: 6px;
	background: var(--transition);
	display: inline-block;
	animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}

.hero h1 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(56px, 11vw, 168px);
	line-height: 0.86;
	letter-spacing: -0.045em;
	margin-bottom: 56px;
	max-width: 14ch;
	color: var(--paper);
	animation: heroReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero h1 .green {
	color: var(--signal);
}
@keyframes heroReveal {
	0% {
		opacity: 0;
		transform: translate3d(0, 24px, 0);
		filter: blur(8px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		filter: blur(0);
	}
}
.hero-bottom {
	animation: heroReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}
.hero h1 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--paper);
	letter-spacing: -0.02em;
}

.hero-bottom {
	display: block;
	padding-top: 40px;
}
.hero-bottom .lede {
	color: rgba(250, 249, 245, 0.92);
	max-width: 64ch;
	font-size: 22px;
	line-height: 1.4;
}
.hero-bottom .meta-block {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.hero-bottom .meta-block .pair .lbl {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(250, 249, 245, 0.55);
	margin-bottom: 8px;
	font-family: var(--ft-title);
	font-weight: 600;
}
.hero-bottom .meta-block .pair .val {
	font-family: var(--ft-title);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--paper);
	font-variant-numeric: tabular-nums;
}

.scroll-cue {
	position: absolute;
	bottom: 28px;
	right: var(--content-pad);
	z-index: 3;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(250, 249, 245, 0.5);
	display: flex;
	align-items: center;
	gap: 12px;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--ft-title);
	font-weight: 600;
}

/* ============================================================
   STRIP
   ============================================================ */
.strip {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px var(--content-pad);
	font-family: var(--ft-title);
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	border-bottom: 1px solid var(--line);
}
.strip.deep {
	border-bottom-color: var(--line-light);
	color: var(--paper);
}

/* ============================================================
   L-BLOCK
   ============================================================ */
.l-block {
	background: var(--midnight);
	color: var(--paper);
	padding: 0 var(--content-pad);
	position: relative;
}
.l-block-grid {
	max-width: var(--max);
	margin: 0 auto;
	padding-top: 48px;
}
.l-block-lead {
	max-width: 72ch;
}
.l-block-lead p {
	font-family: var(--ft-body);
	font-size: 22px;
	line-height: 1.32;
	color: var(--paper);
}
.l-block-lead p strong {
	color: var(--paper);
	font-weight: 600;
}
.l-block-meta {
	font-family: var(--ft-title);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	line-height: 1.7;
	font-weight: 600;
}
.l-block-meta strong {
	color: var(--paper);
	font-weight: 600;
}
.l-cut {
	margin-top: 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.l-cut > div:first-child {
	background: var(--midnight);
	height: 120px;
}
.l-cut > div:last-child {
	background: var(--paper);
	height: 120px;
}

/* ============================================================
   POURQUOI MTL — 3 pilliers éditoriaux
   ============================================================ */
.why-mtl {
	background: var(--midnight);
	color: var(--paper);
	padding: 96px var(--content-pad) 96px;
}
.why-mtl .inner {
	max-width: var(--max);
	margin: 0 auto;
}
.why-mtl .head {
	display: flex;
	align-items: baseline;
	gap: 32px;
	margin-bottom: 72px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line-light);
}
.why-mtl .head .anchor-id {
	font-family: var(--ft-title);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--transition-l);
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 10px;
}
.why-mtl .head .anchor-id::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--transition);
	flex-shrink: 0;
	animation: blink-dot 1.8s ease-in-out infinite;
}
@keyframes blink-dot {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}
.why-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.why-pillar {
	padding: 48px 56px 48px 0;
	border-right: 1px solid var(--line-light);
}
.why-pillar:last-child {
	border-right: none;
	padding-right: 0;
}
.why-pillar:not(:first-child) {
	padding-left: 56px;
}
.why-pillar-num {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--transition-l);
	margin-bottom: 24px;
}
.why-pillar h3 {
	font-family: var(--ft-title);
	font-size: clamp(26px, 2.6vw, 38px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--paper);
	margin-bottom: 20px;
}
.why-pillar p {
	font-family: var(--ft-body);
	font-size: 18px;
	line-height: 1.6;
	color: rgba(250, 249, 245, 0.75);
}

/* ============================================================
   DUO — "Notre / Méthode"
   ============================================================ */
.offer-bridge {
	position: relative;
	background: linear-gradient(
		180deg,
		var(--midnight) 0,
		var(--midnight) 42%,
		var(--paper) 42%,
		var(--paper) 100%
	);
	padding: 0 var(--content-pad) 96px;
}
.offer-bridge::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 42%;
	background:
		radial-gradient(rgba(225, 245, 238, 0.13) 1px, transparent 1px) 0 0 / 9px
		9px,
		linear-gradient(180deg, rgba(250, 249, 245, 0.04), rgba(250, 249, 245, 0));
	pointer-events: none;
}
.duo {
	position: relative;
	max-width: var(--max);
	margin: 0 auto;
	padding: 88px clamp(28px, 4vw, 72px) 76px;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: 72px;
	align-items: start;
	background: var(--paper);
	border: 1px solid rgba(250, 249, 245, 0.34);
	border-radius: 46px 46px 0 0;
	box-shadow: 0 -32px 90px rgba(0, 0, 0, 0.22);
	overflow: clip;
}
.duo-acc {
	min-width: 0;
}
.duo-title {
	position: sticky;
	top: 120px;
	text-align: right;
	padding-top: 6px;
}
.offer-kicker {
	margin-bottom: 18px;
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--transition);
}
.offer-intro {
	max-width: 36ch;
	margin: 26px 0 0 auto;
	font-size: clamp(16px, 1.4vw, 19px);
	line-height: 1.55;
	color: rgba(10, 22, 40, 0.68);
}
.duo-title-link {
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: inherit;
	padding-bottom: 14px;
	transition:
		color 0.3s ease,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.duo-title-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
	background: var(--signal);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.duo-title-link:hover {
	color: var(--signal);
	transform: translateY(-6px);
}
.duo-title-link:hover h2 {
	color: var(--signal);
}
.duo-title-link:hover::after {
	transform: scaleX(1);
}
.duo h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(72px, 10vw, 170px);
	line-height: 0.86;
	letter-spacing: -0.045em;
	color: var(--midnight);
	margin: 0;
}
.duo h2 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	letter-spacing: -0.02em;
}
.duo-mark {
	font-family: var(--ft-title);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
	margin: 28px 0;
	display: flex;
	justify-content: space-between;
	font-weight: 600;
}

.halftone-card {
	width: 100%;
	aspect-ratio: 1 / 1;
	max-width: 320px;
	background:
		radial-gradient(rgba(10, 22, 40, 0.55) 1.3px, transparent 1.3px) 0 0 / 5px
		5px,
		radial-gradient(rgba(10, 22, 40, 0.3) 0.8px, transparent 0.8px) 2.5px 2.5px
		/ 5px 5px,
		linear-gradient(180deg, rgba(10, 22, 40, 0.1), rgba(10, 22, 40, 0.3));
	position: relative;
	overflow: hidden;
}
.halftone-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 0.55;
}
.halftone-card::after {
	content: attr(data-label);
	position: absolute;
	left: 12px;
	top: 12px;
	font-family: var(--ft-title);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--paper);
	opacity: 0.85;
	z-index: 2;
}

/* ============================================================
   ACCORDION
   ============================================================ */
.acc {
	font-family: var(--ft-body);
}
.acc-item {
	border-top: 1px solid var(--line);
	padding: 22px 0;
	display: grid;
	grid-template-columns: 1fr 32px;
	align-items: start;
	gap: 20px;
	cursor: pointer;
	transition: padding-left 0.4s cubic-bezier(0.2, 0.7, 0.15, 1);
}
.acc-item:hover {
	padding-left: 8px;
}
.acc-item:last-child {
	border-bottom: 1px solid var(--line);
}
.acc-item-title {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: clamp(20px, 2vw, 26px);
	letter-spacing: -0.015em;
	color: var(--midnight);
	line-height: 1.2;
}
.acc-item.open .acc-item-title {
	color: var(--transition);
}
.acc-icon {
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	font-family: var(--ft-title);
	font-size: 24px;
	font-weight: 300;
	color: var(--midnight);
	transition:
		transform 0.4s,
		color 0.3s;
}
.acc-item.open .acc-icon {
	transform: rotate(45deg);
	color: var(--transition);
}
.acc-body {
	display: none;
	grid-column: 1 / 2;
	padding-top: 18px;
}
.acc-body-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.acc-item.open .acc-body {
	display: block;
}
.acc-body p {
	margin: 0;
	font-family: var(--ft-body);
	font-size: 15px;
	color: rgba(10, 22, 40, 0.78);
	line-height: 1.65;
	font-weight: 400;
}
.acc-cta {
	display: inline-block;
	margin-top: 12px;
	font-family: var(--ft-body);
	font-size: 14px;
	font-weight: 500;
	color: var(--midnight);
	padding-bottom: 4px;
	border-bottom: 1px solid currentColor;
}

/* ============================================================
   PROCESS — sticky left title + scroll-revealed cards (OCI style)
   ============================================================ */
.process {
	position: relative;
	padding: 0 var(--content-pad) 0;
	border-top: 1px solid var(--midnight);
	background: var(--paper-card);
	/* No overflow:hidden — it breaks position:sticky on children */
	overflow: clip;
	overflow-clip-margin: 200px;
}
.process > .strip {
	padding-left: var(--content-pad);
	padding-right: var(--content-pad);
}
.process .inner {
	max-width: var(--max);
	margin: 0 auto;
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 80px;
	padding: 80px 0 120px;
}

/* Vertical rules running through the section — like OCI */
.process-rule {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--midnight);
	pointer-events: none;
	z-index: 0;
}

.process-left {
	position: sticky;
	top: 110px;
	z-index: 1;
	flex: 0 0 calc(50% - 40px);
	max-width: calc(50% - 40px);
}
.process-cards {
	flex: 0 0 calc(50% - 40px);
	max-width: calc(50% - 40px);
}
.process-title {
	font-size: clamp(64px, 9.5vw, 140px);
	line-height: 0.88;
	color: var(--midnight);
	letter-spacing: -0.045em;
	font-family: var(--ft-title);
	font-weight: 700;
	margin: 0;
}
.process-title em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	letter-spacing: -0.02em;
}
.process-foot {
	font-family: var(--ft-body);
	font-size: 20px;
	font-weight: 400;
	color: rgba(10, 22, 40, 0.8);
	max-width: 52ch;
	margin-top: 56px;
	line-height: 1.6;
}

.process-cards {
	display: flex;
	flex-direction: column;
	gap: 56px;
	position: relative;
	z-index: 2;
	padding-top: 40px;
}
.paper-card {
	background: var(--card);
	border: none;
	padding: 22px 28px 22px;
	width: 100%;
	max-width: 520px;
	position: relative;
	border-top: 1px solid var(--midnight);
	border-bottom: 1px solid var(--midnight);
	opacity: 0;
	/* No transform transition — scroll-driven via JS */
	transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.15, 1);
	will-change: transform, opacity;
}
.paper-card.is-in {
	opacity: 1;
}

/* Alternate side placement (offset stays, rotation/drift come from JS) */
.paper-card:nth-child(odd) {
	align-self: flex-start;
}
.paper-card:nth-child(even) {
	align-self: flex-end;
}
.paper-card-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--midnight);
}
.paper-card-head h4 {
	margin: 0;
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(26px, 2.4vw, 34px);
	letter-spacing: -0.02em;
	color: var(--midnight);
}
.paper-card-head span {
	font-family: var(--ft-title);
	font-size: clamp(20px, 1.8vw, 26px);
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--midnight);
}
.paper-card p {
	margin: 24px 0 24px;
	font-family: var(--ft-body);
	font-size: 15px;
	font-weight: 400;
	color: rgba(10, 22, 40, 0.82);
	line-height: 1.6;
	max-width: 52ch;
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights {
	padding: 96px var(--content-pad) 120px;
	border-top: 1px solid var(--line);
	background: var(--paper);
}
.insights .inner {
	max-width: var(--max);
	margin: 0 auto;
}
.insights-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 0;
}
.insights-head h3 {
	margin: 18px 0 0;
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(56px, 8vw, 132px);
	letter-spacing: -0.04em;
	line-height: 0.9;
	color: var(--midnight);
}
.insights-head h3 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	letter-spacing: -0.02em;
}
.insights-head .all {
	font-family: var(--ft-title);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.insights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.insight {
	padding: 32px 28px 32px;
	border-right: 1px solid var(--line);
	min-height: 280px;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 22px;
	transition: background 0.4s;
}
.insight:last-child {
	border-right: 0;
}
.insight:hover {
	background: var(--surface-soft);
}
.insight-meta {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.6);
	display: flex;
	justify-content: space-between;
}
.insight h5 {
	margin: 0;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: clamp(20px, 1.8vw, 26px);
	letter-spacing: -0.015em;
	line-height: 1.18;
	color: var(--midnight);
}
.insight-cta {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--transition);
}

/* ============================================================
   RDV
   ============================================================ */
.rdv {
	background: var(--paper);
	color: var(--midnight);
	position: relative;
	border-top: 1px solid var(--line);
}
.rdv-mega {
	padding: 64px var(--content-pad) 0;
	font-size: clamp(64px, 12vw, 196px);
	line-height: 0.88;
	font-family: var(--ft-title);
	font-weight: 700;
	letter-spacing: -0.045em;
	max-width: var(--max);
	margin: 0 auto;
}
.rdv-mega em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--transition);
}
.rdv-grid {
	max-width: var(--max);
	margin: 0 auto;
	padding: 56px var(--content-pad) 48px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}
/* Label au-dessus du widget de réservation */
.rdv-booking-label {
	display: flex;
	align-items: baseline;
	gap: 24px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.rdv-booking-title {
	font-family: var(--ft-title);
	font-size: clamp(22px, 2.4vw, 32px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--midnight);
}
.rdv-booking-sub {
	font-family: var(--ft-body);
	font-size: 14px;
	color: rgba(10, 22, 40, 0.58);
	letter-spacing: 0.01em;
}

/* Bouton alternatif sous le widget — option secondaire visible mais pas dominante */
.rdv-alt-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	padding: 13px 24px;
	font-family: var(--ft-title);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--paper);
	text-decoration: none;
	background: var(--transition);
	border: 1px solid var(--transition);
	transition:
		background 0.2s,
		border-color 0.2s;
}
.rdv-alt-link:hover {
	background: var(--transition-deep);
	border-color: var(--transition-deep);
}
.rdv-grid-left p {
	font-family: var(--ft-body);
	font-size: 18px;
	line-height: 1.55;
	color: rgba(10, 22, 40, 0.78);
	margin: 0;
	max-width: 50ch;
}
.rdv-fact-list {
	margin-top: 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.rdv-fact {
	position: relative;
	padding: 16px 18px 16px 46px;
	background: rgba(15, 110, 86, 0.08);
	border-left: 2px solid var(--transition);
	font-family: var(--ft-title);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	color: var(--midnight);
	transition:
		background 0.3s ease,
		transform 0.3s ease;
}
.rdv-fact::before {
	content: "";
	position: absolute;
	left: 16px;
	top: 50%;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	border-radius: 50%;
	background:
		var(--transition)
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M4 8l2.5 2.5L12 5.5' stroke='%23FAF9F5' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>")
		center / 11px no-repeat;
}
.rdv-fact:hover {
	background: rgba(15, 110, 86, 0.16);
	transform: translateX(2px);
}

.calendly {
	background: rgba(232, 228, 217, 0.04);
	border: 1px solid var(--line-light);
	padding: 22px;
}
.cal-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	border-bottom: 1px solid var(--line-light);
	padding-bottom: 12px;
	font-family: var(--ft-title);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.cal-head strong {
	color: var(--paper);
}
.cal-head span:last-child {
	color: var(--muted);
	font-weight: 500;
}
.cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 6px;
	margin-top: 16px;
}
.cal-day-h {
	font-family: var(--ft-title);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	text-align: center;
}
.cal-cell {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--line-light);
	display: grid;
	place-items: center;
	font-family: var(--ft-title);
	font-size: 11px;
	color: var(--paper);
	cursor: pointer;
	transition:
		background 0.2s,
		color 0.2s;
}
.cal-cell:hover {
	background: rgba(232, 228, 217, 0.1);
}
.cal-cell.muted {
	color: var(--muted);
	cursor: default;
}
.cal-cell.muted:hover {
	background: transparent;
}
.cal-cell.active {
	background: var(--paper);
	color: var(--midnight);
}
.cal-cell.picked {
	background: var(--red);
	color: var(--paper);
	border-color: var(--red);
}
.cal-foot {
	border-top: 1px solid var(--line-light);
	margin-top: 18px;
	padding-top: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--ft-title);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
}
.cal-foot button {
	background: var(--paper);
	color: var(--midnight);
	border: 0;
	padding: 10px 16px;
	font-family: var(--ft-title);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	transition:
		transform 0.3s,
		background 0.2s;
}
.cal-foot button:hover {
	background: var(--transition);
	color: var(--paper);
	transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
	background: var(--midnight);
	color: var(--paper);
	padding: 72px var(--content-pad) 32px;
	border-top: 1px solid var(--line-light);
}
.site-footer .inner {
	max-width: var(--max);
	margin: 0 auto;
}
.foot-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 32px;
	padding-bottom: 56px;
	border-bottom: 1px solid var(--line-light);
}
.foot-mark {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.foot-mark .brand-block {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.foot-mark .brand-block img {
	display: none;
} /* legacy */
.foot-wordmark {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(34px, 3.6vw, 52px);
	letter-spacing: -0.035em;
	line-height: 1;
	color: var(--paper);
	margin-bottom: 18px;
}
.foot-baseline {
	font-family: var(--ft-body);
	font-size: 14.5px;
	line-height: 1.55;
	max-width: 480px;
	color: rgba(250, 249, 245, 0.78);
}
.foot-mark .brand-block .desc {
	font-family: var(--ft-title);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	max-width: 26ch;
	line-height: 1.7;
}
.foot-list h6 {
	margin: 0 0 12px;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}
.foot-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.foot-list li {
	font-family: var(--ft-title);
	font-size: 14px;
	padding: 6px 0;
	letter-spacing: -0.005em;
}
.foot-list a {
	transition: color 0.2s;
}
.foot-list a:hover {
	color: var(--transition-l);
}

.foot-newsletter h6 {
	margin: 0 0 12px;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}
.foot-newsletter form {
	display: flex;
	align-items: center;
	border: 1px solid var(--line-light);
	padding: 10px 14px;
}
.foot-newsletter input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: none;
	color: var(--paper);
	font-family: var(--ft-body);
	font-size: 14px;
}
.foot-newsletter input::placeholder {
	color: var(--muted);
}
.foot-newsletter button {
	background: transparent;
	border: 0;
	color: var(--paper);
	cursor: pointer;
	font-family: var(--ft-title);
	font-size: 18px;
	transition:
		color 0.2s,
		transform 0.2s;
}
.foot-newsletter button:hover {
	color: var(--transition-l);
	transform: translateX(4px);
}
.foot-channels {
	margin-top: 18px;
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted);
	line-height: 1.9;
}
.foot-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 28px;
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}
.foot-bottom .links {
	display: flex;
	gap: 24px;
}

/* ============================================================
   PAGE HEADERS
   ============================================================ */
.page-hero {
	padding: 180px var(--content-pad) 96px;
	background: var(--midnight);
	color: var(--paper);
	position: relative;
	overflow: hidden;
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			ellipse 60% 50% at 90% 100%,
			rgba(15, 110, 86, 0.3),
			transparent 65%
		),
		radial-gradient(
			ellipse 50% 40% at 12% 18%,
			rgba(225, 245, 238, 0.08),
			transparent 60%
		);
	z-index: 0;
}
.page-hero .inner {
	position: relative;
	z-index: 2;
	max-width: var(--max);
	margin: 0 auto;
}
.page-hero .breadcrumb {
	display: flex;
	gap: 12px;
	align-items: center;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(225, 245, 238, 0.7);
	margin-bottom: 56px;
}
.page-hero .breadcrumb span:not(:first-child) {
	color: var(--paper);
}
.page-hero h1 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(48px, 7.4vw, 116px);
	line-height: 0.92;
	letter-spacing: -0.04em;
	max-width: 14ch;
	margin-bottom: 48px;
}
.page-hero h1 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--paper);
	letter-spacing: -0.02em;
}
.page-hero .lede {
	color: rgba(250, 249, 245, 0.86);
	max-width: 50ch;
	font-size: 19px;
	line-height: 1.55;
}
.page-hero .meta-row {
	display: flex;
	gap: 56px;
	margin-top: 64px;
	padding-top: 32px;
	border-top: 1px solid var(--line-light);
	flex-wrap: wrap;
}
.page-hero .meta-row .pair .lbl {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(250, 249, 245, 0.55);
	margin-bottom: 6px;
}
.page-hero .meta-row .pair .val {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -0.015em;
	color: var(--paper);
	font-variant-numeric: tabular-nums;
}

/* ============================================================
   ABOUT PORTRAIT
   ============================================================ */
.about-portrait {
	padding: 140px var(--content-pad);
	background: var(--midnight);
}
.about-portrait .inner {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.9fr 1.4fr;
	gap: 80px;
	align-items: start;
}
.portrait-frame {
	aspect-ratio: 4 / 5;
	background:
		radial-gradient(rgba(10, 22, 40, 0.1) 1.4px, transparent 1.4px) 0 0 / 6px
		6px,
		linear-gradient(135deg, var(--surface-soft), #ece6d9);
	position: relative;
	overflow: hidden;
}
.portrait-frame img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	z-index: 0;
}
.portrait-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(10, 22, 40, 0) 50%,
		rgba(10, 22, 40, 0.15)
	);
}
.portrait-frame.has-photo::after {
	display: none;
}
.portrait-frame::after {
	content: "PORTRAIT — À VENIR";
	position: absolute;
	bottom: 16px;
	left: 20px;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	color: var(--midnight);
}
.portrait-meta {
	display: flex;
	justify-content: space-between;
	margin-top: 14px;
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
}
.portrait-meta b {
	color: var(--midnight);
	font-weight: 700;
}

.about-portrait .right .eyebrow {
	margin-bottom: 22px;
	color: var(--transition);
}
.about-portrait .right h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.04;
	letter-spacing: -0.035em;
	margin-bottom: 32px;
	max-width: 18ch;
}
.about-portrait .right h2 {
	color: var(--paper);
}
.about-portrait .right h2 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--paper);
	letter-spacing: -0.02em;
}
.about-portrait .right p {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 18px;
	color: rgba(250, 249, 245, 0.85);
	max-width: 60ch;
}
.about-portrait .right p + p {
	color: rgba(250, 249, 245, 0.7);
}
.about-portrait .right .pull {
	margin: 32px 0;
	padding: 0 0 0 28px;
	border-left: 3px solid var(--transition);
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	font-size: 24px;
	line-height: 1.35;
	color: var(--paper);
	max-width: 580px;
}
.about-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	margin-top: 34px;
}
.about-diagnostic-link {
	position: relative;
	display: inline-flex;
	align-items: baseline;
	gap: 18px;
	padding-bottom: 14px;
	font-family: var(--ft-title);
	font-size: clamp(56px, 7.8vw, 128px);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.86;
	color: var(--paper);
	transition:
		color 0.3s ease,
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-diagnostic-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 6px;
	background: var(--signal);
	transform: scaleX(0.42);
	transform-origin: left center;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-diagnostic-link span {
	font-size: 0.32em;
	line-height: 1;
	color: var(--signal);
	letter-spacing: -0.02em;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-diagnostic-link:hover {
	color: var(--signal);
	transform: translateY(-6px);
}
.about-diagnostic-link:hover::after {
	transform: scaleX(1);
}
.about-diagnostic-link:hover span {
	transform: translateX(8px);
}
.about-offer-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--ft-title);
	font-size: clamp(16px, 1.6vw, 22px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	color: rgba(250, 249, 245, 0.72);
	transition:
		color 0.25s ease,
		transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-offer-link span {
	color: var(--signal);
	transition: transform 0.25s ease;
}
.about-offer-link:hover {
	color: var(--paper);
	transform: translateX(4px);
}
.about-offer-link:hover span {
	transform: translateX(4px);
}
.signature {
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	display: flex;
	align-items: baseline;
	gap: 18px;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
}
.signature .name {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: 22px;
	color: var(--midnight);
	letter-spacing: 0;
	text-transform: none;
}

/* ============================================================
   POSITION BAND
   ============================================================ */
.position {
	padding: 140px var(--content-pad);
	background: var(--midnight);
	color: var(--paper);
	position: relative;
	overflow: hidden;
}
.position::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 80%,
		rgba(15, 110, 86, 0.18),
		transparent 65%
	);
	z-index: 0;
}
.position .inner {
	max-width: var(--max);
	margin: 0 auto;
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 220px 1fr 220px;
	gap: 80px;
	align-items: start;
}
.position .anchor-id {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	padding-top: 14px;
	border-top: 2px solid var(--paper);
}
.position .body {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.3;
	letter-spacing: -0.015em;
	color: var(--paper);
	max-width: 760px;
}
.position .body strong {
	font-family: var(--ft-title);
	font-weight: 700;
	font-style: normal;
	color: var(--paper);
	font-size: clamp(28px, 3vw, 42px);
}
.position .body .green {
	color: var(--transition-l);
}
.position .marg {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	text-align: right;
	line-height: 1.6;
}
.position .marg b {
	color: var(--paper);
	font-weight: 700;
}

/* ============================================================
   CV / TRAJECTOIRE
   ============================================================ */
.cv-section {
	padding: 140px var(--content-pad);
	background: var(--surface-soft);
}
.cv-section-grid {
	/* on retire le max-width pour que la grille s'étende sur toute la largeur de la section,
     ce qui donne plus d'espace à la colonne logo sans toucher au 50% du texte */
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.cv-left {
	min-width: 0;
	/* texte aligné à gauche du conteneur max=var(--max) pour respecter l'alignement
     éditorial du reste du site */
	max-width: calc(var(--max) / 2);
	margin-left: auto;
	margin-right: 0;
	width: 100%;
}
.cv-right {
	display: flex;
	align-items: center;
	justify-content: center;
}
.cv-logo {
	display: block;
	width: 220px;
	height: auto;
}
.cv-section .head {
	margin: 0 0 56px;
}
.cv-section .head .anchor-id {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	padding-top: 14px;
	border-top: 2px solid var(--midnight);
}
.cv-section .head h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(34px, 4.4vw, 60px);
	letter-spacing: -0.035em;
	line-height: 1.02;
	color: var(--midnight);
}
.cv-section .head h2 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--transition);
}
.cv-grid {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.cv-col {
	padding: 28px 26px 36px;
	background: var(--card);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.cv-col h4 {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--transition);
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
}
.cv-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.cv-col ul li {
	padding: 14px 0;
	border-bottom: 1px solid var(--line-soft);
	font-size: 13.5px;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cv-col ul li:last-child {
	border-bottom: none;
}
.cv-col ul li .yr {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.05em;
	color: var(--transition);
	font-variant-numeric: tabular-nums;
}
.cv-col ul li .what {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -0.015em;
	color: var(--midnight);
	line-height: 1.25;
}
.cv-col ul li .where {
	font-family: var(--ft-body);
	font-size: 12.5px;
	color: rgba(10, 22, 40, 0.7);
	line-height: 1.5;
}

/* ============================================================
   FACTS BAND
   ============================================================ */
.facts {
	padding: 96px var(--content-pad) 120px;
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}
.facts .head {
	max-width: var(--max);
	margin: 0 auto 56px;
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 80px;
}
.facts .head .anchor-id {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	padding-top: 14px;
	border-top: 2px solid var(--midnight);
}
.facts .head h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(28px, 3.4vw, 42px);
	letter-spacing: -0.025em;
	line-height: 1.1;
	color: var(--midnight);
	max-width: 720px;
}
.facts-grid {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.fact {
	padding: 32px 28px 36px;
	background: var(--card);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	min-height: 200px;
	transition: background 0.4s;
}
.fact:hover {
	background: var(--surface-soft);
}
.fact .v {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(36px, 4vw, 56px);
	letter-spacing: -0.035em;
	line-height: 1;
	color: var(--midnight);
	font-variant-numeric: tabular-nums;
	margin-bottom: 16px;
}
.fact.glow .v {
	color: var(--transition);
}
.fact .k {
	font-family: var(--ft-body);
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(10, 22, 40, 0.78);
}
.fact .src {
	margin-top: 14px;
	font-family: var(--ft-title);
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
}

/* ============================================================
   FICHE
   ============================================================ */
.fiche {
	padding: 96px var(--content-pad);
	border-top: 1px solid var(--line);
	background: var(--paper);
	position: relative;
}
.fiche.alt {
	background: var(--surface-soft);
}
.fiche.dark {
	background: var(--midnight);
	color: var(--paper);
}
.fiche.dark .eyebrow {
	color: var(--transition-l);
}
.fiche .inner {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: start;
}
.fiche .left {
	position: sticky;
	top: 120px;
}
.fiche .num {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(64px, 7vw, 96px);
	line-height: 0.85;
	color: var(--transition);
	letter-spacing: -0.045em;
	margin-bottom: 24px;
	font-variant-numeric: tabular-nums;
}
.fiche.dark .num {
	color: var(--transition-l);
}
.fiche h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(32px, 3.6vw, 52px);
	line-height: 1.04;
	letter-spacing: -0.035em;
	margin-bottom: 24px;
	max-width: 14ch;
}
.fiche h2 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--transition);
}
.fiche.dark h2 em {
	color: var(--transition-l);
}
.fiche .left .lede {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 32px;
	color: rgba(10, 22, 40, 0.7);
}
.fiche.dark .left .lede {
	color: rgba(250, 249, 245, 0.78);
}
.fiche .left .stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.fiche.dark .left .stats {
	border-top-color: var(--line-light);
}
.fiche .left .stats .pair .lbl {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.6);
	margin-bottom: 6px;
}
.fiche.dark .left .stats .pair .lbl {
	color: rgba(250, 249, 245, 0.55);
}
.fiche .left .stats .pair .val {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: -0.025em;
	color: var(--midnight);
}
.fiche.dark .left .stats .pair .val {
	color: var(--paper);
}
.fiche .left .cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 32px;
	padding: 14px 22px;
	background: var(--midnight);
	color: var(--paper);
	font-family: var(--ft-title);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition:
		background 0.2s,
		transform 0.2s;
}
.fiche .left .cta:hover {
	background: var(--transition);
	transform: translateY(-2px);
}
.fiche.dark .left .cta {
	background: var(--paper);
	color: var(--midnight);
}
.fiche.dark .left .cta:hover {
	background: var(--transition);
	color: var(--paper);
}

.fiche .right .block {
	margin-bottom: 48px;
}
.fiche .right h3 {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 22px;
	letter-spacing: -0.01em;
	text-transform: none;
	color: var(--midnight);
	margin-bottom: 18px;
	line-height: 1.15;
}
.fiche.dark .right h3 {
	color: var(--paper);
}
.fiche-block-num {
	display: inline;
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	font-size: 1.4em;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--transition);
	margin-right: 10px;
}
.fiche.dark .fiche-block-num {
	color: var(--transition-l);
}
.fiche .right p {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 12px;
	color: var(--midnight);
}
.fiche.dark .right p {
	color: rgba(250, 249, 245, 0.86);
}
.fiche .right ul.steps {
	list-style: none;
	padding: 0;
}
.fiche .right ul.steps li {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	gap: 24px;
	padding: 20px 0;
	border-top: 1px solid var(--line);
	font-size: 14.5px;
	align-items: baseline;
}
.fiche.dark .right ul.steps li {
	border-top-color: var(--line-light);
	color: rgba(250, 249, 245, 0.86);
}
.fiche .right ul.steps li .step {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	font-size: 22px;
	letter-spacing: -0.01em;
	line-height: 1;
	color: var(--red);
}
.fiche.dark .right ul.steps li .step {
	color: var(--signal);
}
.fiche .right ul.steps li .label {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: -0.015em;
	color: var(--midnight);
	line-height: 1.25;
}
.fiche.dark .right ul.steps li .label {
	color: var(--paper);
}
.fiche .right ul.steps li .label .desc {
	display: block;
	font-family: var(--ft-body);
	font-weight: 400;
	font-size: 13.5px;
	color: rgba(10, 22, 40, 0.65);
	margin-top: 5px;
	letter-spacing: 0;
	line-height: 1.45;
}
.fiche.dark .right ul.steps li .label .desc {
	color: rgba(250, 249, 245, 0.65);
}
.fiche .right ul.steps li .duration {
	font-family: var(--ft-title);
	font-weight: 500;
	font-size: 11.5px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.4);
	white-space: nowrap;
}
.fiche.dark .right ul.steps li .duration {
	color: rgba(250, 249, 245, 0.35);
}

/* Accordéon light mode — même grille que dark */
.fiche .acc-item {
	grid-template-columns: 28px 1fr;
}

/* Accordéon dark mode */
.fiche.dark .acc {
}
.fiche.dark .acc-item {
	grid-template-columns: 28px 1fr;
	gap: 10px;
	border-top-color: rgba(243, 239, 230, 0.12);
	padding-left: 0 !important;
}
.fiche.dark .acc-item:hover {
	padding-left: 8px !important;
}
.fiche.dark .acc-item:last-child {
	border-bottom: 1px solid rgba(243, 239, 230, 0.12);
}
.fiche.dark .acc-item-title {
	font-size: 15px !important;
	color: var(--paper) !important;
	letter-spacing: normal !important;
	line-height: 1.3;
}
.fiche.dark .acc-item.open .acc-item-title {
	color: var(--signal) !important;
}
.fiche.dark .acc-icon {
	margin-top: 0;
	width: 22px;
	height: 22px;
	font-size: 14px;
	font-weight: 300;
	border-radius: 3px;
	border: 1px solid var(--signal);
	color: var(--signal) !important;
	align-self: start;
}
.fiche.dark .acc-item.open .acc-icon {
	background: var(--signal);
	color: var(--midnight) !important;
	border-color: var(--signal);
}

/* Accordéon Stress Test — accents rouges */
#stress-test .acc-item-title {
	font-size: 15px !important;
	letter-spacing: normal !important;
	line-height: 1.3;
}
#stress-test .acc-icon {
	width: 28px;
	height: 28px;
	font-size: 16px;
	border-radius: 3px;
	border: 1px solid var(--red);
	color: var(--red);
}
#stress-test .acc-item.open .acc-icon {
	background: var(--red);
	color: #fff;
	border-color: var(--red);
}
#stress-test .acc-item.open .acc-item-title {
	color: var(--red);
}

.io-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.io-grid .cell {
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.io-grid .cell .k {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.6);
}
.io-grid .cell .v {
	font-family: var(--ft-body);
	font-size: 13.5px;
	color: var(--midnight);
}
.fiche.dark .io-grid {
	border-top-color: var(--line-light);
	border-left-color: var(--line-light);
}
.fiche.dark .io-grid .cell {
	border-right-color: var(--line-light);
	border-bottom-color: var(--line-light);
}
.fiche.dark .io-grid .cell .k {
	color: rgba(250, 249, 245, 0.55);
}
.fiche.dark .io-grid .cell .v {
	color: var(--paper);
}
.io-subtitle {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--transition);
	margin-bottom: 2px;
}
.fiche.dark .io-subtitle {
	color: var(--signal);
}

/* ============================================================
   PALIERS
   ============================================================ */
.paliers {
	padding: 140px var(--content-pad);
	background: var(--surface-soft);
}
.paliers .head {
	max-width: var(--max);
	margin: 0 auto 72px;
}
.paliers .head .eyebrow {
	margin-bottom: 18px;
	color: var(--transition);
}
.paliers .head h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(34px, 4.4vw, 60px);
	line-height: 1.02;
	letter-spacing: -0.035em;
	max-width: 18ch;
	color: var(--midnight);
}
.paliers .head h2 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--transition);
}
.palier-row {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.5fr 0.7fr 1.4fr 0.6fr;
	gap: 56px;
	padding: 64px 0;
	border-top: 1px solid var(--line);
	align-items: start;
	transition:
		background 0.4s,
		padding-left 0.5s cubic-bezier(0.2, 0.7, 0.15, 1);
}
.palier-row:last-child {
	border-bottom: 1px solid var(--line);
}
.palier-row:hover {
	padding-left: 12px;
}
.palier-row .id {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(56px, 6vw, 84px);
	line-height: 0.85;
	color: var(--transition);
	letter-spacing: -0.045em;
	font-variant-numeric: tabular-nums;
}
.palier-row.muted .id {
	color: rgba(10, 22, 40, 0.55);
}
.palier-row .ident .name {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: -0.025em;
	margin-bottom: 8px;
}
.palier-row .ident .who {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.6);
}
.palier-row .desc {
	font-family: var(--ft-body);
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--midnight);
}
.palier-row .desc strong {
	color: var(--midnight);
	font-weight: 600;
}
.palier-row .desc .ex {
	margin-top: 14px;
	padding: 12px 14px;
	background: var(--paper);
	border-left: 2px solid var(--transition);
	font-family: "Courier New", monospace;
	font-size: 11.5px;
	line-height: 1.55;
	color: rgba(10, 22, 40, 0.78);
}
.palier-row .precision {
	text-align: right;
}
.palier-row .precision .lbl {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.6);
	margin-bottom: 8px;
}
.palier-row .precision .v {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 26px;
	color: var(--midnight);
	margin-bottom: 12px;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}
.palier-row.muted .precision .v {
	color: rgba(10, 22, 40, 0.55);
}
.palier-row .precision .bars {
	display: flex;
	gap: 4px;
	justify-content: flex-end;
}
.palier-row .precision .bars .b {
	width: 18px;
	height: 4px;
	background: var(--line);
}
.palier-row .precision .bars .b.on {
	background: var(--transition);
}
.palier-row.muted .precision .bars .b.on {
	background: rgba(10, 22, 40, 0.45);
}

/* ============================================================
   CONTACT — channels
   ============================================================ */
.channels-section {
	padding: 96px var(--content-pad) 120px;
	background: var(--paper);
	border-top: 1px solid var(--line);
}
.channels-section .inner {
	max-width: var(--max);
	margin: 0 auto;
}
.channels-section .head {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 80px;
	margin-bottom: 56px;
}
.channels-section .head .anchor-id {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	padding-top: 14px;
	border-top: 2px solid var(--midnight);
}
.channels-section .head h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(34px, 4.4vw, 56px);
	line-height: 1.02;
	letter-spacing: -0.035em;
	color: var(--midnight);
}
.channels-section .head h2 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--transition);
}
.channels {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.channel {
	padding: 32px 28px 36px;
	background: var(--card);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	transition:
		background 0.3s,
		transform 0.4s;
	min-height: 280px;
	position: relative;
}
.channel:hover {
	background: var(--surface-soft);
	transform: translateY(-4px);
}
.channel.featured {
	background: var(--midnight);
	color: var(--paper);
}
.channel.featured:hover {
	background: var(--transition);
}
.channel .num {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	margin-bottom: 28px;
}
.channel.featured .num {
	color: var(--muted);
}
.channel .num b {
	color: var(--midnight);
	font-weight: 700;
}
.channel.featured .num b {
	color: var(--transition-l);
}
.channel .name {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 24px;
	letter-spacing: -0.025em;
	color: var(--midnight);
	line-height: 1.15;
	margin-bottom: 12px;
}
.channel.featured .name {
	color: var(--paper);
}
.channel .body {
	font-family: var(--ft-body);
	font-size: 13.5px;
	line-height: 1.55;
	color: rgba(10, 22, 40, 0.78);
	flex: 1;
}
.channel.featured .body {
	color: rgba(250, 249, 245, 0.78);
}
.channel .handle {
	margin-top: 20px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	font-family: "Courier New", monospace;
	font-size: 12px;
	color: var(--midnight);
	word-break: break-all;
}
.channel.featured .handle {
	color: var(--paper);
	border-top-color: var(--line-light);
}
.channel .arrow {
	position: absolute;
	top: 28px;
	right: 24px;
	font-family: var(--ft-title);
	font-size: 18px;
	color: rgba(10, 22, 40, 0.45);
	transition:
		transform 0.3s,
		color 0.3s;
}
.channel:hover .arrow {
	transform: translate(3px, -3px);
	color: var(--midnight);
}
.channel.featured .arrow {
	color: var(--transition-l);
}

/* ============================================================
   QUALIFICATION FORM
   ============================================================ */
.qual {
	padding: 140px var(--content-pad);
	background: var(--surface-soft);
}
.qual .inner {
	max-width: var(--max);
	margin: 0 auto;
}
.qual-head {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 80px;
	margin-bottom: 56px;
}
.qual-head .anchor-id {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	padding-top: 14px;
	border-top: 2px solid var(--midnight);
}
.qual-head h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(28px, 3.4vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--midnight);
	max-width: 720px;
}
.qual-head .lede {
	margin-top: 18px;
	max-width: 640px;
	font-family: var(--ft-body);
	font-size: 16px;
	line-height: 1.55;
	color: rgba(10, 22, 40, 0.78);
}
.qform {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 64px;
	align-items: start;
}
.qfield {
	border-bottom: 1px solid var(--line);
	padding: 24px 0;
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 32px;
	align-items: start;
}
.qfield:first-child {
	border-top: 1px solid var(--line);
}
.qfield .qid {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	padding-top: 4px;
}
.qfield .qid b {
	color: var(--midnight);
	font-weight: 700;
}
.qfield .qbody {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.qfield label {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: -0.015em;
	color: var(--midnight);
}
.qfield .helper {
	font-family: var(--ft-body);
	font-size: 13px;
	line-height: 1.5;
	color: rgba(10, 22, 40, 0.7);
	margin-top: -6px;
}
.qfield input[type="text"],
.qfield input[type="email"],
.qfield textarea {
	font-family: var(--ft-body);
	font-size: 14.5px;
	color: var(--midnight);
	background: var(--card);
	border: 1px solid var(--line);
	padding: 12px 14px;
	width: 100%;
	outline: none;
	transition: border-color 0.2s;
}
.qfield input:focus,
.qfield textarea:focus {
	border-color: var(--midnight);
}
.qfield textarea {
	resize: vertical;
	min-height: 88px;
}
.qfield .chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.qfield .chip {
	cursor: pointer;
	padding: 9px 14px;
	border: 1px solid var(--line);
	background: var(--card);
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: -0.005em;
	color: var(--midnight);
	transition: all 0.2s;
}
.qfield .chip:hover {
	border-color: var(--midnight);
}
.qfield .chip input {
	display: none;
}
.qfield .chip:has(input:checked) {
	background: var(--midnight);
	color: var(--paper);
	border-color: var(--midnight);
}
.qfield .chip.glow:has(input:checked) {
	background: var(--transition);
	border-color: var(--transition);
}
.qform-foot {
	margin-top: 36px;
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.qform-foot button {
	padding: 14px 22px;
	background: var(--midnight);
	color: var(--paper);
	border: 0;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.2s;
}
.qform-foot button:hover {
	background: var(--transition);
	transform: translateY(-2px);
}
.qform-foot .privacy {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	max-width: 380px;
	line-height: 1.55;
}
.qside {
	background: var(--card);
	border: 1px solid var(--line);
	padding: 32px 30px;
	position: sticky;
	top: 120px;
}
.qside .label {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 20px;
}
.qside h3 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 19px;
	letter-spacing: -0.02em;
	color: var(--midnight);
	line-height: 1.25;
	margin-bottom: 16px;
}
.qside ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.qside li {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 12px;
	font-family: var(--ft-body);
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--midnight);
}
.qside li::before {
	content: "→";
	font-family: var(--ft-title);
	color: var(--transition);
	font-weight: 700;
}
.qside .stat {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}
.qside .stat .v {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 28px;
	color: var(--transition);
	letter-spacing: -0.025em;
	line-height: 1;
}
.qside .stat .k {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	text-align: right;
	line-height: 1.4;
	max-width: 160px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
	:root {
		--content-pad: 28px;
	}
	.offer-bridge {
		padding: 0 28px 72px;
	}
	.duo {
		grid-template-columns: 1fr;
		gap: 36px;
		padding: 64px 36px 56px;
		border-radius: 34px 34px 0 0;
	}
	.duo-title {
		position: static;
		text-align: left;
		order: -1;
	}
	.offer-intro {
		margin-left: 0;
	}
	.duo h2 {
		font-size: clamp(56px, 14vw, 120px);
	}
	/* Why MTL — 3 piliers stackés en 1 colonne (TASK-M01) */
	.why-pillars {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.why-pillar {
		padding: 32px 0;
		border-right: none;
		border-bottom: 1px solid var(--line-light);
	}
	.why-pillar:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
	.why-pillar:first-child {
		padding-top: 0;
	}
	.why-pillar:not(:first-child) {
		padding-left: 0;
	}
	/* Process — override flex container et drift JS (TASK-M03) */
	.process .inner {
		display: block;
		padding: 64px 0 80px;
	}
	.process-rule {
		display: none;
	}
	.process-left {
		position: static;
		flex: none;
		max-width: 100%;
		margin-bottom: 56px;
	}
	.process-cards {
		flex: none;
		max-width: 100%;
		gap: 32px;
		padding-top: 0;
	}
	.paper-card {
		width: 100%;
		max-width: 100%;
		align-self: stretch !important;
		transform: none !important;
	}
	.insights-grid {
		grid-template-columns: 1fr;
	}
	.insight {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}
	.rdv-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.l-block-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}
	.about-portrait .inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.portrait-frame {
		max-width: 380px;
	}
	.position .inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.position .marg {
		text-align: left;
	}
	.cv-section-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.cv-right {
		position: static;
		justify-content: flex-start;
	}
	.cv-logo {
		width: 80px;
	}
	.cv-grid {
		grid-template-columns: 1fr 1fr;
	}
	.facts .head {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.facts-grid {
		grid-template-columns: 1fr 1fr;
	}
	.channels-section .head {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.channels {
		grid-template-columns: 1fr 1fr;
	}
	.qual-head {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.qform {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.qside {
		position: static;
	}
	.fiche .inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.fiche .left {
		position: static;
	}
	.palier-row {
		grid-template-columns: 1fr 1.4fr 0.7fr;
		gap: 32px;
	}
	.palier-row .id {
		grid-row: 1;
		grid-column: 1;
	}
	.palier-row .ident {
		grid-row: 1;
		grid-column: 2 / 4;
	}
	.palier-row .desc {
		grid-column: 1 / 4;
	}
	.palier-row .precision {
		grid-column: 1 / 4;
		text-align: left;
	}
	.palier-row .precision .bars {
		justify-content: flex-start;
	}
	.hero-bottom {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 768px) {
	:root {
		--content-pad: 22px;
	}
	body .site-header {
		padding: 12px 22px;
		flex-wrap: wrap;
		gap: 12px;
	}
	body .site-header nav {
		display: none;
	}
	body .site-header .header-cta a {
		padding: 9px 14px;
		font-size: 13px;
	}
	.brand {
		font-size: 48px;
	}
	.hero {
		padding: 110px 22px 56px;
		min-height: 80vh;
	}
	.hero-halftone {
		width: 100%;
		opacity: 0.4;
	}
	.hero h1 {
		font-size: clamp(44px, 13vw, 88px);
	}
	.hero-bottom .meta-block {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.duo {
		padding: 64px 22px 40px;
	}
	.about-actions {
		width: 100%;
		gap: 16px;
	}
	.about-diagnostic-link {
		width: 100%;
		justify-content: space-between;
		font-size: clamp(36px, 13vw, 64px);
	}
	.about-offer-link {
		font-size: 16px;
	}
	.process {
		padding: 64px 22px 80px;
	}
	.insights,
	.rdv,
	.position,
	.cv-section,
	.facts,
	.channels-section,
	.qual,
	.fiche,
	.paliers,
	.about-portrait {
		padding: 64px 22px;
	}
	.insights-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
		padding-bottom: 24px;
	}
	.rdv-mega {
		padding: 48px 22px 0;
	}
	.rdv-grid {
		padding: 32px 22px 64px;
	}
	.calendly {
		padding: 16px;
	}
	.cal-cell {
		font-size: 9px;
	}
	.foot-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.foot-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
	.foot-bottom .links {
		gap: 16px;
		flex-wrap: wrap;
	}
	.cv-grid,
	.facts-grid,
	.channels {
		grid-template-columns: 1fr;
	}
	.palier-row {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.palier-row .id,
	.palier-row .ident,
	.palier-row .desc,
	.palier-row .precision {
		grid-column: 1;
	}
	.qfield {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.page-hero {
		padding: 130px 22px 64px;
	}
	.page-hero .meta-row {
		gap: 24px;
	}
	.l-cut > div {
		height: 80px;
	}
	.scroll-cue {
		display: none;
	}
	/* Accordéon body — description + livrables stackés (TASK-M02) */
	.acc-body-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	/* Header sticky : voile transparent + blur (glass effect).
     Le nav étant sibling du header, le containing block créé par backdrop-filter
     ne casse plus son position:fixed. */
	.site-header {
		background: linear-gradient(
			180deg,
			rgba(10, 22, 40, 0.55) 0%,
			rgba(10, 22, 40, 0.25) 100%
		);
		backdrop-filter: blur(10px) saturate(140%);
		-webkit-backdrop-filter: blur(10px) saturate(140%);
		will-change: auto;
	}
	.site-header::before {
		display: none;
	}
	.brand {
		font-size: 28px;
	}
	/* Menu burger — juste du texte blanc, voile très léger pour lisibilité.
     Les liens flottent sous le X, alignés à droite. Pas de bloc, pas de cadre. */
	.header-nav {
		position: fixed;
		top: 64px;
		right: 22px;
		left: auto;
		bottom: auto;
		flex-direction: column;
		align-items: flex-end;
		gap: 12px;
		padding: 0;
		background: none;
		border: none;
		border-radius: 0;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition:
			opacity 0.25s ease,
			transform 0.25s ease;
		z-index: 90;
	}
	body.is-nav-open .header-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
	.header-nav-link {
		font-size: 22px;
		letter-spacing: -0.01em;
		/* lisibilité quand le menu flotte sur du contenu clair */
		text-shadow:
			0 1px 14px rgba(10, 22, 40, 0.55),
			0 0 2px rgba(10, 22, 40, 0.4);
	}
	.header-menu-btn {
		z-index: 100;
		position: relative;
	}
}

/* ============================================================
   COMING SOON — placeholder cards for à-venir offerings
   ============================================================ */
.coming-soon {
	padding: 96px var(--content-pad) 120px;
	background: var(--surface-soft);
	border-top: 1px solid var(--line);
}
.coming-soon .inner {
	max-width: var(--max);
	margin: 0 auto;
}
.coming-soon .head {
	margin-bottom: 56px;
	max-width: 780px;
}
.coming-soon .head .anchor-id {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.55);
	padding-top: 14px;
	border-top: 2px solid var(--midnight);
	margin-bottom: 22px;
	display: inline-block;
}
.coming-soon .head h2 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: clamp(28px, 3.4vw, 44px);
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: var(--midnight);
	margin-bottom: 16px;
}
.coming-soon .head h2 em {
	font-family: var(--ft-editorial);
	font-style: italic;
	font-weight: 300;
	color: var(--transition);
}
.coming-soon .head .lede {
	font-size: 16px;
	line-height: 1.55;
	color: rgba(10, 22, 40, 0.7);
	max-width: 56ch;
}
.coming-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
}
.coming-card {
	padding: 32px 28px 36px;
	background: var(--card);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 220px;
	opacity: 0.85;
	transition:
		opacity 0.3s,
		background 0.3s;
}
.coming-card:hover {
	opacity: 1;
	background: var(--paper);
}
.coming-card .tag {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--transition);
	padding-bottom: 12px;
	border-bottom: 1px dashed var(--line);
	width: fit-content;
}
.coming-card h3 {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: rgba(10, 22, 40, 0.6);
}
.coming-card p {
	font-family: var(--ft-body);
	font-size: 13.5px;
	line-height: 1.55;
	color: rgba(10, 22, 40, 0.6);
}

/* ============================================================
   PARCOURS — simplified vertical CV list (a-propos)
   ============================================================ */
.parcours-list {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--line);
}
.parcours-item {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--line);
	align-items: baseline;
}
.parcours-item .yr {
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--transition);
}
.parcours-item .what {
	font-family: var(--ft-title);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.02em;
	color: var(--midnight);
	line-height: 1.25;
	margin-bottom: 4px;
}
.parcours-item .where {
	font-family: var(--ft-body);
	font-size: 14px;
	color: rgba(10, 22, 40, 0.7);
	line-height: 1.5;
	max-width: 60ch;
}

@media (max-width: 1100px) {
	.coming-grid {
		grid-template-columns: 1fr 1fr;
	}
	.parcours-item {
		grid-template-columns: 160px 1fr;
		gap: 20px;
	}
}
@media (max-width: 768px) {
	.coming-soon {
		padding: 64px 22px;
	}
	.coming-grid {
		grid-template-columns: 1fr;
	}
	.parcours-item {
		grid-template-columns: 1fr;
		gap: 6px;
	}
}

/* ============================================================
   ANIMATIONS — registre CBR
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
	.mtl-reveal-words .mtl-word {
		display: inline-block;
		overflow: hidden;
		vertical-align: baseline;
		line-height: inherit;
		padding-bottom: 0.08em;
		margin-bottom: -0.08em;
	}
	.mtl-reveal-words .mtl-word-inner {
		display: inline-block;
		transform: translateY(110%);
		transition: transform 1.05s cubic-bezier(0.2, 0.7, 0.15, 1);
		will-change: transform;
	}
	.mtl-reveal-words.is-in .mtl-word-inner {
		transform: translateY(0);
	}
	.mtl-reveal-words .mtl-word:nth-child(1) .mtl-word-inner {
		transition-delay: 0s;
	}
	.mtl-reveal-words .mtl-word:nth-child(2) .mtl-word-inner {
		transition-delay: 0.04s;
	}
	.mtl-reveal-words .mtl-word:nth-child(3) .mtl-word-inner {
		transition-delay: 0.08s;
	}
	.mtl-reveal-words .mtl-word:nth-child(4) .mtl-word-inner {
		transition-delay: 0.12s;
	}
	.mtl-reveal-words .mtl-word:nth-child(5) .mtl-word-inner {
		transition-delay: 0.16s;
	}
	.mtl-reveal-words .mtl-word:nth-child(6) .mtl-word-inner {
		transition-delay: 0.2s;
	}
	.mtl-reveal-words .mtl-word:nth-child(7) .mtl-word-inner {
		transition-delay: 0.24s;
	}
	.mtl-reveal-words .mtl-word:nth-child(8) .mtl-word-inner {
		transition-delay: 0.28s;
	}
	.mtl-reveal-words .mtl-word:nth-child(9) .mtl-word-inner {
		transition-delay: 0.32s;
	}
	.mtl-reveal-words .mtl-word:nth-child(10) .mtl-word-inner {
		transition-delay: 0.36s;
	}
	.mtl-reveal-words .mtl-word:nth-child(n + 11) .mtl-word-inner {
		transition-delay: 0.4s;
	}

	.mtl-fade-up {
		opacity: 0;
		transform: translateY(28px);
		transition:
			opacity 0.95s cubic-bezier(0.2, 0.7, 0.15, 1),
			transform 0.95s cubic-bezier(0.2, 0.7, 0.15, 1);
		will-change: opacity, transform;
	}
	.mtl-fade-up.is-in {
		opacity: 1;
		transform: translateY(0);
	}

	.mtl-image-reveal {
		position: relative;
		isolation: isolate;
	}
	.mtl-image-reveal::after {
		content: "";
		position: absolute;
		inset: 0;
		background: var(--midnight);
		transform-origin: right center;
		transform: scaleX(1);
		transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
		z-index: 4;
		pointer-events: none;
	}
	.mtl-image-reveal.is-in::after {
		transform: scaleX(0);
	}
	.portrait-frame.mtl-image-reveal::after {
		background: var(--surface-soft);
	}

	.site-header {
		animation: mtlHeaderIn 1.1s cubic-bezier(0.2, 0.7, 0.15, 1);
	}
	@keyframes mtlHeaderIn {
		from {
			opacity: 0;
			transform: translateY(-12px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

@media (prefers-reduced-motion: reduce) {
	.mtl-reveal-words .mtl-word-inner,
	.mtl-fade-up {
		transform: none !important;
		opacity: 1 !important;
		transition: none !important;
	}
	.mtl-image-reveal::after {
		display: none;
	}
}

/* ============================================================
   GOOGLE CALENDAR BOOKING — anchor link to inline iframe (#rdv)
   ============================================================ */
.gcal-link {
	display: inline-flex;
	align-items: center;
	padding: 12px 22px;
	background: var(--transition);
	color: var(--paper);
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border: 1px solid var(--transition);
	text-decoration: none;
	cursor: pointer;
	transition:
		background 0.2s,
		transform 0.2s,
		border-color 0.2s;
	white-space: nowrap;
}
.gcal-link:hover {
	background: var(--transition-deep);
	border-color: var(--transition-deep);
	transform: translateY(-2px);
}
.gcal-link span {
	transition: transform 0.2s;
	display: inline-block;
	margin-left: 6px;
}
.gcal-link:hover span {
	transform: translateY(3px);
}

.fiche-cta-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	margin-top: 32px;
}
.fiche-onepager-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 22px;
	font-family: var(--ft-title);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--paper);
	text-decoration: none;
	border: 1px solid rgba(243, 239, 230, 0.35);
	transition:
		background 0.2s,
		border-color 0.2s;
	white-space: nowrap;
}
.fiche-onepager-btn:hover {
	background: rgba(243, 239, 230, 0.08);
	border-color: var(--paper);
}
.fiche:not(.dark) .fiche-onepager-btn {
	color: var(--midnight);
	border-color: rgba(10, 22, 40, 0.35);
}
.fiche:not(.dark) .fiche-onepager-btn:hover {
	background: rgba(10, 22, 40, 0.06);
	border-color: var(--midnight);
}

/* Full-width iframe section below the rdv-grid */
.rdv-iframe-section {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 var(--content-pad) 96px;
}
/* Inline iframe block — composant de réservation INTERACTIF.
   L'utilisateur peut réserver son créneau directement ici depuis le site.
   Le CTA vert au-dessus (".rdv-cta-primary") est l'option alternative pour
   ceux qui préfèrent ouvrir Google Calendar dans un nouvel onglet. */
.rdv-iframe-wrap {
	width: 100%;
	background: var(--paper);
	border: 1px solid var(--line-light);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 920px;
	/* JS sets opacity + transform per scroll frame; we just hint the browser */
	will-change: opacity, transform;
	transform-origin: center center;
	opacity: 0;
}
.rdv-iframe-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 16px 22px;
	background: rgba(10, 22, 40, 0.04);
	border-bottom: 1px solid var(--line);
	font-family: var(--ft-title);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.rdv-iframe-head strong {
	color: var(--midnight);
	font-weight: 700;
}
.rdv-iframe-head span:last-child {
	color: rgba(10, 22, 40, 0.55);
	font-weight: 500;
}
.rdv-iframe-wrap iframe {
	flex: 1;
	min-height: 880px;
	width: 100%;
	border: 0;
	display: block;
	background: var(--paper);
}
.rdv-newtab {
	margin-top: 32px;
	display: inline-block;
	font-family: var(--ft-title);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--muted);
	text-decoration: none;
	border-bottom: 1px solid var(--line-light);
	padding-bottom: 4px;
	transition:
		color 0.2s,
		border-color 0.2s;
}
.rdv-newtab:hover {
	color: var(--paper);
	border-bottom-color: var(--paper);
}

@media (max-width: 768px) {
	.rdv-iframe-wrap {
		min-height: 0;
	}
	.rdv-iframe-wrap iframe {
		min-height: 580px;
		height: 80vh;
	}
}

/* ============================================================
   MENTIONS LÉGALES
   ============================================================ */
.legal-section {
	background: var(--surface);
	padding: 80px var(--content-pad);
}
.legal-inner {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.legal-block h2 {
	font-family: var(--ft-title);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--midnight);
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}
.legal-block p {
	font-family: var(--ft-body);
	font-size: 16px;
	line-height: 1.7;
	color: rgba(10, 22, 40, 0.75);
}
.legal-block a {
	color: var(--transition);
	text-decoration: underline;
}
.legal-block a:hover {
	color: var(--transition-deep);
}
.placeholder {
	color: var(--red);
	font-style: italic;
}
.legal-updated {
	font-family: var(--ft-title);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(10, 22, 40, 0.4);
}

/* ============================================================
   PETITS MOBILES (≤ 480px) — TASK-M08
   ============================================================ */
@media (max-width: 480px) {
	.rdv-fact-list {
		grid-template-columns: 1fr;
	}
	.rdv-fact:nth-child(odd) {
		padding-right: 0;
		border-right: none;
	}
	.rdv-fact:nth-child(even) {
		padding-left: 0;
	}
	.hero h1 {
		font-size: clamp(48px, 14vw, 80px);
	}
	.duo h2,
	.process-title {
		font-size: clamp(48px, 13vw, 90px);
	}
	.page-hero h1 {
		font-size: clamp(40px, 12vw, 70px);
	}
	.acc-item-title {
		font-size: 18px;
	}
	.header-inner {
		padding: 0;
	}
}
