/* ==========================================================================
   VOLTA v5 — « Signal »
   Design system : bleu nuit + jaune sécurité, typo industrielle,
   quadrillage schéma électrique, ombres franches, animations légères.
   Archivo (display & texte) · IBM Plex Mono (labels & données)
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */
:root {
	/* Couleurs */
	--ink: #0a1b2a;            /* bleu-noir : texte, bordures */
	--ink-2: #46586c;          /* texte secondaire */
	--ink-3: #6d7f92;          /* texte discret */
	--navy: #0c2136;           /* surfaces sombres */
	--navy-2: #11304d;         /* cartes sur sombre */
	--navy-line: rgba(255, 255, 255, .14);
	--volt: #ffd335;           /* jaune sécurité — accent signature */
	--volt-deep: #b7860b;      /* jaune lisible sur fond clair */
	--paper: #f4f3ee;          /* fond clair chaud */
	--white: #ffffff;
	--cloud: #e9ecec;
	--line: rgba(10, 27, 42, .14);
	--line-soft: rgba(10, 27, 42, .08);
	--ok: #15803d;
	--err: #b91c1c;

	/* Textures */
	--grid-dark:
		linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
	--grid-light:
		linear-gradient(rgba(10,27,42,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10,27,42,.05) 1px, transparent 1px);
	--hazard: repeating-linear-gradient(-45deg, var(--volt) 0 10px, var(--ink) 10px 20px);

	/* Typo */
	--font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

	/* Échelle typographique */
	--t-0: .8125rem;
	--t-1: .9375rem;
	--t-2: 1.125rem;
	--t-3: clamp(1.7rem, 1.2rem + 2vw, 2.4rem);
	--t-4: clamp(2rem, 1.4rem + 2.8vw, 3.1rem);
	--t-5: clamp(2.4rem, 1.6rem + 3.6vw, 4rem);
	--t-6: clamp(2.7rem, 1.7rem + 4.8vw, 5.2rem);

	/* Espacements */
	--s-1: .5rem;
	--s-2: 1rem;
	--s-3: 1.5rem;
	--s-4: 2rem;
	--s-5: 3rem;
	--s-6: 4.5rem;
	--s-7: 6.5rem;

	/* Divers */
	--wrap: 74rem;
	--shadow: 5px 5px 0 var(--ink);
	--shadow-sm: 3px 3px 0 var(--ink);
	--ease: cubic-bezier(.16, 1, .3, 1);
	--header-h: 4.75rem;
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }
ul, ol { padding: 0; }
strong, b { font-weight: 700; }
::selection { background: var(--volt); color: var(--ink); }

:focus-visible { outline: 3px solid var(--volt-deep); outline-offset: 2px; }
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 200;
	background: var(--volt); color: var(--ink); font-weight: 700;
	padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------------------------------------------------------------- layout */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.section { padding-block: var(--s-7); position: relative; }
.section--tight { padding-block: var(--s-5); position: relative; }
.section--cloud { background: var(--white); border-block: 1px solid var(--line-soft); }

.bg-lines { background-image: var(--grid-light); background-size: 34px 34px; }
.bg-hatch {
	background-image:
		repeating-linear-gradient(-45deg, rgba(10,27,42,.035) 0 1px, transparent 1px 9px);
}

.dim { color: var(--ink-3); }

/* ------------------------------------------------------------- titrages */
h1, h2, h3, h4 {
	font-family: var(--font-sans);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -.015em;
	text-wrap: balance;
	overflow-wrap: break-word;
}
h1 { font-size: var(--t-5); }
h2 { font-size: var(--t-4); }
h3 { font-size: 1.35rem; line-height: 1.2; }

.display {
	font-size: var(--t-6);
	font-stretch: 116%;
	font-weight: 850;
	letter-spacing: -.02em;
	line-height: .98;
	text-transform: uppercase;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: .6em;
	font-family: var(--font-mono);
	font-size: .78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--ink-2);
	margin-bottom: var(--s-2);
}
.kicker::before {
	content: "";
	width: .65em; height: .65em;
	background: var(--volt);
	border: 1.5px solid var(--ink);
	flex: none;
}

.lead { font-size: var(--t-2); line-height: 1.6; color: var(--ink-2); max-width: 46rem; }

/* Surligneur jaune */
.hl {
	position: relative;
	white-space: nowrap;
	z-index: 0;
}
.hl::after {
	content: "";
	position: absolute; z-index: -1;
	left: -.06em; right: -.06em; bottom: .02em;
	height: .38em;
	background: var(--volt);
	transform: skewX(-8deg);
}

/* Tête de section : numéro géant en filigrane */
.head { position: relative; max-width: 52rem; }
.head__title { margin-bottom: var(--s-2); }
.head__title em { font-style: normal; position: relative; z-index: 0; }
.head__title em::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: .04em;
	height: .3em; background: var(--volt); z-index: -1;
	transform: skewX(-8deg);
}
.head[data-num]::before {
	content: attr(data-num);
	position: absolute;
	right: -1rem; top: -2.4rem;
	font-family: var(--font-mono);
	font-size: clamp(4.5rem, 8vw, 7.5rem);
	font-weight: 600;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(10, 27, 42, .16);
	pointer-events: none;
}
.head-row {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: var(--s-4); margin-bottom: var(--s-5); flex-wrap: wrap;
}
.head-row .head { margin-bottom: 0; }

/* ------------------------------------------------------------- boutons */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: .55rem;
	padding: .8rem 1.35rem;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid var(--ink);
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow-sm);
	transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
	-webkit-tap-highlight-color: transparent;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; transition: transform .18s var(--ease); }
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }

.btn--primary { background: var(--volt); }
.btn--primary:hover { background: #ffdb57; }
.btn--white { background: var(--white); }
.btn--outline { background: transparent; box-shadow: none; }
.btn--outline:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.0625rem; }

.tel-link {
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid var(--volt);
	padding-bottom: .1em;
	transition: background .15s, border-color .15s, color .15s;
}
.tel-link:hover { background: var(--volt); border-color: var(--ink); color: var(--ink); }

.arrow-link {
	display: inline-flex; align-items: center; gap: .5rem;
	font-weight: 700; text-decoration: none;
	border-bottom: 2px solid var(--volt);
	padding-bottom: .15em;
}
.arrow-link svg { width: 1.1em; height: 1.1em; transition: transform .18s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------- header */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--navy);
	color: var(--white);
	border-bottom: 1px solid var(--navy-line);
	transition: box-shadow .25s;
}
.site-header::after {
	/* filet hazard signature sous le header */
	content: "";
	position: absolute; left: 0; right: 0; bottom: -5px;
	height: 5px;
	background: var(--hazard);
	opacity: 0;
	transition: opacity .25s;
}
.site-header.is-stuck { box-shadow: 0 10px 30px rgba(10, 27, 42, .35); }
.site-header.is-stuck::after { opacity: 1; }

.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s-3);
	min-height: var(--header-h);
}

.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand__word {
	font-size: 1.55rem; font-weight: 850; font-stretch: 116%;
	letter-spacing: .01em; text-transform: uppercase;
}
.brand__word b { color: var(--volt); }
.brand__sub {
	font-family: var(--font-mono);
	font-size: .62rem; font-weight: 500;
	letter-spacing: .16em; text-transform: uppercase;
	color: rgba(255, 255, 255, .62);
	margin-top: .15rem;
}

.nav { display: flex; gap: 1.6rem; }
.nav a {
	position: relative;
	font-weight: 600; font-size: .95rem;
	text-decoration: none;
	color: rgba(255, 255, 255, .82);
	padding-block: .3rem;
	transition: color .15s;
}
.nav a:hover { color: var(--white); }
.nav a::after {
	content: "";
	position: absolute; left: 0; bottom: 0;
	width: 100%; height: 2px;
	background: var(--volt);
	transform: scaleX(0); transform-origin: left;
	transition: transform .22s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--white); }

.header-cta { display: flex; align-items: center; gap: var(--s-3); }
.header-cta .tel-link { color: var(--white); }
.header-cta .tel-link:hover { color: var(--ink); }
.header-cta .btn { box-shadow: none; border-color: var(--ink); }
.header-cta .btn:hover { transform: none; box-shadow: 3px 3px 0 rgba(0, 0, 0, .45); }

.nav-toggle {
	display: none;
	flex-direction: column; justify-content: center; gap: 5px;
	width: 2.75rem; height: 2.75rem;
	background: transparent; border: 2px solid var(--navy-line);
	cursor: pointer;
}
.nav-toggle span {
	display: block; height: 2px; margin-inline: 7px;
	background: var(--white);
	transition: transform .25s var(--ease), opacity .2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-nav {
	position: fixed; inset: 0; z-index: 90;
	background: var(--navy);
	background-image: var(--grid-dark);
	background-size: 34px 34px;
	color: var(--white);
	padding: calc(var(--header-h) + var(--s-5)) var(--s-4) var(--s-4);
	display: flex; flex-direction: column; gap: .25rem;
	transform: translateY(-102%);
	transition: transform .38s var(--ease);
	visibility: hidden;
	counter-reset: mnav;
}
body.nav-open .mobile-nav { transform: translateY(0); visibility: visible; }
.mnav-link {
	font-size: 1.7rem; font-weight: 800; font-stretch: 112%;
	text-transform: uppercase; text-decoration: none;
	padding: .55rem 0;
	border-bottom: 1px solid var(--navy-line);
	display: flex; align-items: baseline; gap: .75rem;
	counter-increment: mnav;
}
.mnav-link::before {
	content: counter(mnav, decimal-leading-zero);
	font-family: var(--font-mono);
	font-size: .8rem; font-weight: 600;
	color: var(--volt);
}
.mnav-foot { margin-top: auto; display: grid; gap: var(--s-2); }
.mnav-foot .btn--outline { color: var(--white); border-color: var(--white); }
.mnav-foot .btn--outline:hover { color: var(--ink); }

@media (max-width: 62rem) {
	.nav, .header-cta .tel-link { display: none; }
	.nav-toggle { display: flex; }
}
@media (max-width: 40rem) {
	.header-cta .btn { display: none; }
}

/* ------------------------------------------------------------- hero */
.hero {
	position: relative;
	background: var(--navy);
	color: var(--white);
	overflow: clip;
}
.hero::before {
	content: "";
	position: absolute; inset: 0;
	background-image: var(--grid-dark);
	background-size: 34px 34px;
	-webkit-mask-image: radial-gradient(120% 100% at 30% 0%, #000 40%, transparent 100%);
	mask-image: radial-gradient(120% 100% at 30% 0%, #000 40%, transparent 100%);
}
.hero::after {
	/* halo volt discret */
	content: "";
	position: absolute;
	right: -12rem; top: -12rem;
	width: 38rem; height: 38rem;
	background: radial-gradient(closest-side, rgba(255, 211, 53, .13), transparent 70%);
	pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: var(--s-6);
	align-items: center;
	padding-block: var(--s-7);
}
.hero .kicker { color: rgba(255, 255, 255, .72); }
.hero h1 { color: var(--white); margin-bottom: var(--s-3); }
.hero .display { font-size: clamp(2rem, .95rem + 3.6vw, 4.3rem); }
.hero .hl { color: var(--ink); }
.hero .hl::after { bottom: .05em; height: .85em; }
.hero__lead { color: rgba(255, 255, 255, .78); margin-bottom: var(--s-4); }

/* lignes masquées (révélées par JS) */
.hero h1 .ln { display: block; overflow: clip; padding-bottom: .06em; margin-bottom: -.06em; }
.hero h1 .ln > span { display: inline-block; }
html.js .hero h1 .ln > span { transform: translateY(112%); will-change: transform; }
/* sur petit écran : lignes libres (pas de masque), le texte se répartit
   naturellement sans jamais être tronqué */
@media (max-width: 36rem) {
	.hero h1 .ln, .hero h1 .ln > span { display: inline; overflow: visible; }
	html.js .hero h1 .ln > span { transform: none; }
}

.hero__actions { display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; }
.hero__actions .tel-link { color: rgba(255, 255, 255, .85); }
.hero__actions .tel-link:hover { color: var(--ink); }

.proofline {
	display: flex; flex-wrap: wrap;
	gap: .4rem 1.5rem;
	margin-top: var(--s-4);
	padding-top: var(--s-3);
	border-top: 1px solid var(--navy-line);
	font-family: var(--font-mono);
	font-size: .78rem;
	letter-spacing: .02em;
	color: rgba(255, 255, 255, .66);
}
.proofline b { color: var(--volt); font-weight: 600; }

.hero__media { position: relative; }
.hero__media img {
	width: 100%;
	aspect-ratio: 4 / 3.4;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, .9);
	box-shadow: 8px 8px 0 rgba(255, 211, 53, .9);
	filter: saturate(.92) contrast(1.04);
}
.hero__media .media__ph { display: none; }
.hero__media.is-empty .media__ph {
	display: flex;
	aspect-ratio: 4 / 3.4;
	border: 2px solid rgba(255, 255, 255, .5);
	color: rgba(255, 255, 255, .7);
	background: var(--navy-2);
}
/* pastille flottante « sous 2 h » */
.hero__chip {
	position: absolute;
	left: -1.25rem; bottom: 1.75rem;
	display: flex; flex-direction: column;
	background: var(--white); color: var(--ink);
	border: 2px solid var(--ink);
	box-shadow: var(--shadow);
	padding: .8rem 2.2rem .8rem 1.1rem;
	line-height: 1.25;
}
.hero__chip b {
	font-size: 1.35rem; font-weight: 850; font-stretch: 112%;
	text-transform: uppercase;
}
.hero__chip span {
	font-family: var(--font-mono);
	font-size: .68rem; font-weight: 500;
	letter-spacing: .08em; text-transform: uppercase;
	color: var(--ink-2);
	margin-top: .2rem;
}
.hero__chip::before {
	content: "";
	width: .6rem; height: .6rem;
	border-radius: 50%;
	background: var(--ok);
	position: absolute; top: .8rem; right: .8rem;
	box-shadow: 0 0 0 0 rgba(21, 128, 61, .5);
	animation: ping 2.2s infinite;
}
@keyframes ping {
	0% { box-shadow: 0 0 0 0 rgba(21, 128, 61, .45); }
	70% { box-shadow: 0 0 0 9px rgba(21, 128, 61, 0); }
	100% { box-shadow: 0 0 0 0 rgba(21, 128, 61, 0); }
}

@media (max-width: 56rem) {
	.hero__grid { grid-template-columns: 1fr; gap: var(--s-5); padding-block: var(--s-6); }
	.hero__media { max-width: 34rem; }
	.hero__chip { left: 1rem; bottom: -1rem; }
}

/* ------------------------------------------------------------- ticker */
.ticker {
	position: relative;
	background: var(--volt);
	border-block: 2px solid var(--ink);
	overflow: clip;
	padding-block: .65rem;
}
.ticker__track {
	display: flex;
	width: max-content;
	animation: ticker 32s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group {
	display: flex; align-items: center;
	padding-right: 2.75rem;
	gap: 2.75rem;
	font-family: var(--font-mono);
	font-size: .82rem; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
	white-space: nowrap;
	color: var(--ink);
}
.ticker__group svg { width: .95rem; height: .95rem; flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
	.ticker__track { animation: none; }
}

/* ------------------------------------------------------------- stats */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 2px solid var(--ink);
	background: var(--white);
	box-shadow: var(--shadow);
}
.stat {
	padding: var(--s-4) var(--s-3);
	position: relative;
}
.stat + .stat { border-left: 2px solid var(--ink); }
.stat::before {
	content: "";
	position: absolute; top: 0; left: 0;
	width: 2.2rem; height: .45rem;
	background: var(--volt);
	border-right: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
}
.stat__num {
	display: flex; align-items: baseline; gap: .15rem;
	font-family: var(--font-mono);
	font-size: clamp(2rem, 3.6vw, 2.9rem);
	font-weight: 600;
	letter-spacing: -.04em;
	line-height: 1;
}
.stat__num em {
	font-style: normal;
	font-size: .45em;
	font-weight: 600;
	color: var(--volt-deep);
}
.stat__label {
	display: block;
	margin-top: .6rem;
	font-size: .9rem;
	color: var(--ink-2);
	line-height: 1.4;
}
@media (max-width: 56rem) {
	.stats { grid-template-columns: 1fr 1fr; }
	.stat:nth-child(3) { border-left: 0; }
	.stat:nth-child(n+3) { border-top: 2px solid var(--ink); }
}

/* ------------------------------------------------------------- services */
.svc-list { border-top: 2px solid var(--ink); }
.svc-row {
	position: relative;
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 17rem) 1fr 3rem;
	align-items: center;
	gap: var(--s-3);
	padding: 1.35rem .75rem;
	border-bottom: 2px solid var(--ink);
}
.svc-row::before {
	/* balayage volt au survol */
	content: "";
	position: absolute; inset: 0;
	background: var(--volt);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--ease);
	z-index: 0;
}
.svc-row:hover::before { transform: scaleX(1); }
.svc-row > * { position: relative; z-index: 1; }
.svc-row__num {
	font-family: var(--font-mono);
	font-size: .85rem; font-weight: 600;
	color: var(--ink-3);
	transition: color .2s;
}
.svc-row:hover .svc-row__num { color: var(--ink); }
.svc-row__title { font-size: clamp(1.25rem, 2vw, 1.6rem); font-stretch: 110%; text-transform: uppercase; letter-spacing: -.01em; }
.svc-row__title a { text-decoration: none; }
.svc-row__title a::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.svc-row__desc { font-size: .95rem; color: var(--ink-2); transition: color .2s; }
.svc-row:hover .svc-row__desc { color: var(--ink); }
.svc-row__go {
	display: grid; place-items: center;
	width: 2.6rem; height: 2.6rem;
	border: 2px solid var(--ink);
	background: var(--white);
	transition: background .2s, color .2s, transform .25s var(--ease);
}
.svc-row__go svg { width: 1.15rem; height: 1.15rem; }
.svc-row:hover .svc-row__go { background: var(--ink); color: var(--volt); transform: rotate(-45deg); }
@media (max-width: 48rem) {
	.svc-row {
		grid-template-columns: 2.6rem 1fr 2.6rem;
		grid-template-areas: "num title go" "num desc go";
		row-gap: .3rem;
		padding-inline: .25rem;
	}
	.svc-row__num { grid-area: num; align-self: start; margin-top: .35rem; }
	.svc-row__title { grid-area: title; }
	.svc-row__desc { grid-area: desc; }
	.svc-row__go { grid-area: go; align-self: center; }
}

/* ------------------------------------------------------------- bandes navy */
.band {
	background: var(--navy);
	color: var(--white);
	position: relative;
	overflow: clip;
}
.band::before {
	content: "";
	position: absolute; inset: 0;
	background-image: var(--grid-dark);
	background-size: 34px 34px;
	-webkit-mask-image: radial-gradient(110% 100% at 50% 0%, #000 30%, transparent 100%);
	mask-image: radial-gradient(110% 100% at 50% 0%, #000 30%, transparent 100%);
}
.band > .wrap { position: relative; z-index: 1; }
.band .kicker { color: rgba(255, 255, 255, .72); }
.band h2, .band h3 { color: var(--white); }
.band .lead { color: rgba(255, 255, 255, .75); }

/* engagements numérotés */
.engage {
	list-style: none;
	counter-reset: engage;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s-4);
}
.engage li {
	counter-increment: engage;
	display: flex; gap: var(--s-3);
	background: var(--navy-2);
	border: 1px solid var(--navy-line);
	padding: var(--s-4);
}
.engage li::before {
	content: counter(engage, decimal-leading-zero);
	font-family: var(--font-mono);
	font-size: 1rem; font-weight: 600;
	color: var(--ink);
	background: var(--volt);
	border: 2px solid var(--ink);
	width: 2.9rem; height: 2.9rem;
	display: grid; place-items: center;
	flex: none;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, .4);
}
.engage h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.engage p { color: rgba(255, 255, 255, .75); font-size: .98rem; }
@media (max-width: 48rem) {
	.engage { grid-template-columns: 1fr; }
}

/* bande urgence fine */
.band--strip {
	border-block: 5px solid transparent;
	border-image: var(--hazard) 5;
	padding-block: var(--s-4);
}
.band--strip::before {
	background-image:
		radial-gradient(60% 130% at 85% 50%, rgba(255, 211, 53, .16), transparent 70%),
		var(--grid-dark);
	background-size: auto, 34px 34px;
	-webkit-mask-image: none;
	mask-image: none;
}
.band--strip .wrap {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s-3); flex-wrap: wrap;
}
.band--strip p { font-size: 1.2rem; }
.band--strip p b { font-stretch: 110%; text-transform: uppercase; }
.band--strip .tel-link {
	color: var(--ink);
	background: var(--volt);
	border: 2px solid var(--ink);
	box-shadow: var(--shadow-sm);
	padding: .7rem 1.2rem;
	font-size: 1.15rem;
	transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.band--strip .tel-link:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); }

/* ------------------------------------------------------------- médias */
.media {
	position: relative;
	background: var(--cloud);
	border: 2px solid var(--ink);
	box-shadow: var(--shadow);
}
.media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.94) contrast(1.03); }
.media__ph {
	display: none;
	min-height: 16rem;
	height: 100%;
	flex-direction: column;
	align-items: center; justify-content: center;
	gap: .4rem;
	text-align: center;
	padding: var(--s-4);
	font-family: var(--font-mono);
	background-image: var(--grid-light);
	background-size: 24px 24px;
}
.media__ph b { font-size: .9rem; letter-spacing: .05em; }
.media__ph span { font-size: .72rem; color: var(--ink-3); }
.media.is-empty .media__ph { display: flex; }

/* ------------------------------------------------------------- cases */
.cases { display: grid; gap: var(--s-6); }
.case {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: var(--s-5);
	align-items: center;
}
.case__media { aspect-ratio: 16 / 10.5; }
.case--flip .case__media { order: 2; }
.case--flip .case__body { order: 1; }
.case__title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: var(--s-2); }
.case__desc { color: var(--ink-2); margin-bottom: var(--s-3); }
.case__facts {
	display: grid;
	grid-template-columns: repeat(4, auto);
	justify-content: start;
	gap: var(--s-3);
	border-top: 2px solid var(--ink);
	padding-top: var(--s-2);
}
.case__facts dt {
	font-family: var(--font-mono);
	font-size: .68rem; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: .15rem;
}
.case__facts dd { margin: 0; font-weight: 700; font-size: .95rem; }
@media (max-width: 52rem) {
	.case { grid-template-columns: 1fr; gap: var(--s-3); }
	.case--flip .case__media { order: 0; }
	.case--flip .case__body { order: 1; }
	.case__facts { grid-template-columns: repeat(2, 1fr); }
}
.cases-foot {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s-3); flex-wrap: wrap;
	margin-top: var(--s-6);
	border-top: 2px solid var(--ink);
	padding-top: var(--s-3);
}
.cases-foot p { font-size: 1.1rem; }

/* ------------------------------------------------------------- à propos */
.about {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: var(--s-6);
	align-items: center;
}
.about__media { aspect-ratio: 4 / 5; max-width: 26rem; }
.about__body h2 { margin-bottom: var(--s-3); }
.about__body p { margin-bottom: var(--s-2); color: var(--ink-2); }
.about__body p:first-of-type { color: var(--ink); font-size: var(--t-2); }
.signature {
	display: flex; flex-direction: column;
	margin-top: var(--s-3);
	padding-left: var(--s-3);
	border-left: 4px solid var(--volt);
}
.signature b { font-size: 1.1rem; }
.signature span { font-family: var(--font-mono); font-size: .75rem; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; margin-top: .2rem; }
@media (max-width: 52rem) {
	.about { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ------------------------------------------------------------- avis */
.quotes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-4);
	align-items: start;
}
.quote {
	background: var(--white);
	border: 2px solid var(--ink);
	box-shadow: var(--shadow);
	padding: var(--s-4);
	position: relative;
	margin-top: var(--s-3);
}
.quote:nth-child(2) { transform: rotate(.6deg); }
.quote:nth-child(3) { transform: rotate(-.5deg); }
.quote::before {
	content: "“";
	position: absolute; top: -2rem; left: .9rem;
	font-size: 4.4rem; line-height: 1;
	font-weight: 850;
	color: var(--volt);
	-webkit-text-stroke: 2px var(--ink);
}
.quote blockquote { font-size: 1.02rem; line-height: 1.6; margin-bottom: var(--s-3); }
.quote figcaption {
	font-family: var(--font-mono);
	font-size: .75rem;
	color: var(--ink-2);
	border-top: 1px solid var(--line);
	padding-top: var(--s-2);
}
.quote figcaption b { color: var(--ink); font-weight: 600; }
.quotes-foot {
	margin-top: var(--s-4);
	font-family: var(--font-mono);
	font-size: .8rem;
	color: var(--ink-2);
}
@media (max-width: 52rem) {
	.quotes { grid-template-columns: 1fr; }
	.quote:nth-child(n) { transform: none; }
}

/* ------------------------------------------------------------- méthode */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s-4);
	counter-reset: steps;
	padding-top: var(--s-2);
}
.step {
	counter-increment: steps;
	position: relative;
	background: var(--white);
	border: 2px solid var(--ink);
	padding: var(--s-4) var(--s-3) var(--s-3);
	box-shadow: var(--shadow-sm);
}
.step::before {
	content: counter(steps, decimal-leading-zero);
	position: absolute; top: -1.1rem; left: 1rem;
	font-family: var(--font-mono);
	font-size: .85rem; font-weight: 600;
	background: var(--volt);
	border: 2px solid var(--ink);
	padding: .15rem .5rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; color: var(--ink-2); }
@media (max-width: 56rem) {
	.steps { grid-template-columns: 1fr 1fr; row-gap: var(--s-4); }
}
@media (max-width: 36rem) {
	.steps { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------- tarifs */
.price-table {
	border: 2px solid var(--ink);
	background: var(--white);
	box-shadow: var(--shadow);
}
.price-row {
	display: grid;
	grid-template-columns: minmax(0, 15rem) minmax(0, 12rem) 1fr;
	gap: var(--s-3);
	align-items: baseline;
	padding: var(--s-3) var(--s-4);
	transition: background .15s;
}
.price-row + .price-row { border-top: 2px solid var(--ink); }
.price-row:hover { background: rgba(255, 211, 53, .12); }
.price-row__name { font-weight: 800; font-stretch: 110%; text-transform: uppercase; font-size: 1.05rem; }
.price-row__val {
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: 1.25rem;
	letter-spacing: -.03em;
	white-space: nowrap;
}
.price-row__val small {
	display: block;
	font-size: .68rem; font-weight: 500;
	color: var(--ink-3);
	letter-spacing: .08em; text-transform: uppercase;
}
.price-row__desc { font-size: .95rem; color: var(--ink-2); }
@media (max-width: 52rem) {
	.price-row { grid-template-columns: 1fr auto; }
	.price-row__desc { grid-column: 1 / -1; }
}
.price-note {
	margin-top: var(--s-3);
	font-size: .85rem;
	color: var(--ink-3);
	max-width: 52rem;
}

/* ------------------------------------------------------------- FAQ */
.faq { border: 2px solid var(--ink); background: var(--white); box-shadow: var(--shadow); }
.faq__item + .faq__item { border-top: 2px solid var(--ink); }
.faq__q {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s-3);
	text-align: left;
	background: none; border: 0;
	padding: 1.15rem var(--s-4);
	font-size: 1.08rem; font-weight: 700;
	cursor: pointer;
	transition: background .15s;
}
.faq__q:hover { background: rgba(255, 211, 53, .12); }
.faq__item.is-open .faq__q { background: var(--volt); }
.faq__sign {
	position: relative;
	width: 1.1rem; height: 1.1rem; flex: none;
}
.faq__sign::before, .faq__sign::after {
	content: "";
	position: absolute; inset: 0; margin: auto;
	background: var(--ink);
}
.faq__sign::before { width: 100%; height: 2px; }
.faq__sign::after { width: 2px; height: 100%; transition: transform .25s var(--ease); }
.faq__item.is-open .faq__sign::after { transform: scaleY(0); }
.faq__a { height: 0; overflow: clip; transition: height .32s var(--ease); }
.faq__a > div { padding: var(--s-3) var(--s-4) var(--s-4); }
.faq__a p { color: var(--ink-2); }
.faq__a p + p { margin-top: var(--s-2); }
.faq__a strong { color: var(--ink); }

/* ------------------------------------------------------------- contact */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: var(--s-5);
	align-items: start;
}
.coord { display: grid; gap: var(--s-3); }
.coord > div { border-left: 4px solid var(--volt); padding-left: var(--s-3); }
.coord dt {
	font-family: var(--font-mono);
	font-size: .68rem; font-weight: 600;
	letter-spacing: .14em; text-transform: uppercase;
	color: var(--ink-3);
	margin-bottom: .2rem;
}
.coord dd { margin: 0; font-weight: 700; }
.coord dd a { text-decoration: none; border-bottom: 2px solid var(--volt); }
.coord dd a:hover { background: var(--volt); }

.contact-urgent {
	margin-top: var(--s-4);
	padding: var(--s-3);
	background: var(--white);
	border: 2px solid var(--ink);
	border-left: 8px solid var(--volt);
	box-shadow: var(--shadow-sm);
	font-size: .95rem;
}
.contact-urgent a { font-weight: 700; white-space: nowrap; }

.form {
	position: relative;
	background: var(--white);
	border: 2px solid var(--ink);
	box-shadow: var(--shadow);
	padding: calc(var(--s-4) + 6px) var(--s-4) var(--s-4);
	display: grid;
	gap: var(--s-3);
}
.form::before {
	content: "";
	position: absolute; top: -2px; left: -2px; right: -2px;
	height: 6px;
	background: var(--hazard);
}
.form__head h3 { font-size: 1.45rem; font-stretch: 110%; text-transform: uppercase; }
.form__head p { color: var(--ink-2); font-size: .95rem; margin-top: .3rem; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 36rem) {
	.form__row--2 { grid-template-columns: 1fr; }
}
.field { display: grid; gap: .35rem; align-content: start; }
.field label {
	font-family: var(--font-mono);
	font-size: .7rem; font-weight: 600;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--ink-2);
}
.field label span { color: var(--volt-deep); }
.field input, .field textarea, .field select {
	width: 100%;
	padding: .75rem .9rem;
	border: 2px solid var(--ink);
	border-radius: 0;
	background: var(--paper);
	font-size: 1rem;
	transition: background .15s, box-shadow .15s;
	appearance: none;
}
.field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1b2a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .8rem center;
	background-size: 1rem;
	padding-right: 2.4rem;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none;
	background: var(--white);
	box-shadow: 4px 4px 0 var(--volt);
}
.field.has-error input, .field.has-error textarea { border-color: var(--err); }
.field__err { font-size: .8rem; color: var(--err); min-height: 1em; }
.consent {
	display: flex; gap: .7rem; align-items: flex-start;
	font-size: .85rem; color: var(--ink-2);
	cursor: pointer;
}
.consent input {
	width: 1.15rem; height: 1.15rem; flex: none;
	margin-top: .15rem;
	accent-color: var(--ink);
}
.form__note { font-size: .92rem; min-height: 1.2em; }
.form__note.is-ok { color: var(--ok); font-weight: 600; }
.form__note.is-err { color: var(--err); font-weight: 600; }
.form__reassure {
	font-family: var(--font-mono);
	font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
	color: var(--ink-3);
	text-align: center;
}
@media (max-width: 52rem) {
	.contact-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------- footer */
.site-footer {
	background: var(--navy);
	color: var(--white);
	border-top: 5px solid transparent;
	border-image: var(--hazard) 5;
	position: relative;
	overflow: clip;
}
.site-footer::before {
	content: "";
	position: absolute; inset: 0;
	background-image: var(--grid-dark);
	background-size: 34px 34px;
	-webkit-mask-image: radial-gradient(110% 90% at 50% 100%, #000 30%, transparent 100%);
	mask-image: radial-gradient(110% 90% at 50% 100%, #000 30%, transparent 100%);
}
.site-footer .wrap { position: relative; z-index: 1; }
.footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
	gap: var(--s-5);
	padding-block: var(--s-6) var(--s-5);
}
.footer-brand p {
	margin-top: var(--s-3);
	font-size: .92rem;
	color: rgba(255, 255, 255, .65);
	max-width: 24rem;
}
.footer-col h4 {
	font-family: var(--font-mono);
	font-size: .72rem; font-weight: 600;
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--volt);
	margin-bottom: var(--s-3);
}
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col li { font-size: .95rem; color: rgba(255, 255, 255, .78); }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--volt); }
.footer-col .arrow-link { color: var(--white); border-color: var(--volt); }
.footer-legal {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s-3); flex-wrap: wrap;
	padding-block: var(--s-3);
	border-top: 1px solid var(--navy-line);
	font-family: var(--font-mono);
	font-size: .72rem;
	color: rgba(255, 255, 255, .55);
}
.footer-legal__ids { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.to-top {
	display: inline-flex; align-items: center; gap: .4rem;
	text-decoration: none; color: rgba(255, 255, 255, .75);
}
.to-top svg { width: .95em; height: .95em; }
.to-top:hover { color: var(--volt); }
@media (max-width: 56rem) {
	.footer-top { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
	.footer-brand { grid-column: 1 / -1; }
}

/* -------------------------------------------------- barre d'action mobile */
.action-bar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
	display: none;
	grid-template-columns: 1fr 1.4fr;
	gap: .6rem;
	padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
	background: var(--navy);
	border-top: 3px solid var(--volt);
	transform: translateY(105%);
	transition: transform .3s var(--ease);
}
.action-bar.is-in { transform: translateY(0); }
.action-bar .btn { width: 100%; box-shadow: none; }
.action-bar .btn:hover { transform: none; }
.action-bar .btn--outline { color: var(--white); border-color: var(--white); }
@media (max-width: 40rem) {
	.action-bar { display: grid; }
}

/* ------------------------------------------------------ pages intérieures */
.page-hero {
	background: var(--navy);
	color: var(--white);
	position: relative;
	overflow: clip;
	padding-block: var(--s-6);
}
.page-hero::before {
	content: "";
	position: absolute; inset: 0;
	background-image: var(--grid-dark);
	background-size: 34px 34px;
	-webkit-mask-image: radial-gradient(120% 100% at 30% 0%, #000 40%, transparent 100%);
	mask-image: radial-gradient(120% 100% at 30% 0%, #000 40%, transparent 100%);
}
.page-hero::after {
	content: "";
	position: absolute;
	right: -10rem; top: -10rem;
	width: 30rem; height: 30rem;
	background: radial-gradient(closest-side, rgba(255, 211, 53, .12), transparent 70%);
	pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; max-width: 56rem; margin-inline: auto; }
.page-hero .kicker { color: rgba(255, 255, 255, .72); }
.page-hero h1 { color: var(--white); font-stretch: 112%; text-transform: uppercase; font-size: var(--t-5); margin-bottom: var(--s-3); }
.page-hero .lead { color: rgba(255, 255, 255, .78); }
.page-hero__actions {
	display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap;
	margin-top: var(--s-4);
}
.page-hero__actions .tel-link { color: rgba(255, 255, 255, .85); }
.page-hero__actions .tel-link:hover { color: var(--ink); }

.crumbs {
	display: flex; align-items: center; gap: .5rem;
	font-family: var(--font-mono);
	font-size: .75rem;
	color: rgba(255, 255, 255, .6);
	margin-bottom: var(--s-3);
}
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--volt); }
.crumbs svg { width: .8rem; height: .8rem; opacity: .6; }
.crumbs [aria-current] { color: rgba(255, 255, 255, .9); }

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
	gap: var(--s-6);
	align-items: start;
}
@media (max-width: 56rem) {
	.page-layout { grid-template-columns: 1fr; }
}

.entry > section + section { margin-top: var(--s-6); }
.entry h2 {
	font-size: var(--t-3);
	margin-bottom: var(--s-3);
	padding-bottom: var(--s-2);
	border-bottom: 2px solid var(--ink);
	position: relative;
}
.entry h2::after {
	content: "";
	position: absolute; left: 0; bottom: -2px;
	width: 4rem; height: 2px;
	background: var(--volt);
}
.entry p { color: var(--ink-2); margin-bottom: var(--s-2); }
.entry p strong { color: var(--ink); }
.entry .steps { grid-template-columns: 1fr 1fr; }
@media (max-width: 36rem) {
	.entry .steps { grid-template-columns: 1fr; }
}

.check-list { list-style: none; display: grid; gap: .8rem; }
.check-list li {
	position: relative;
	padding-left: 2.1rem;
	color: var(--ink-2);
}
.check-list li b { color: var(--ink); }
.check-list li::before {
	content: "";
	position: absolute; left: 0; top: .28em;
	width: 1.15rem; height: 1.15rem;
	background: var(--volt);
	border: 2px solid var(--ink);
}
.check-list li::after {
	content: "";
	position: absolute; left: .3rem; top: .5em;
	width: .52rem; height: .3rem;
	border-left: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
	transform: rotate(-45deg);
}

.spec-table { border: 2px solid var(--ink); background: var(--white); box-shadow: var(--shadow-sm); }
.spec-table__row {
	display: grid;
	grid-template-columns: minmax(0, 13rem) 1fr;
	gap: var(--s-3);
	padding: var(--s-2) var(--s-3);
}
.spec-table__row + .spec-table__row { border-top: 1px solid var(--line); }
.spec-table__row dt {
	font-family: var(--font-mono);
	font-size: .72rem; font-weight: 600;
	letter-spacing: .1em; text-transform: uppercase;
	color: var(--ink-3);
	padding-top: .2rem;
}
.spec-table__row dd { margin: 0; color: var(--ink-2); }
.spec-table__row dd b { color: var(--ink); }
@media (max-width: 36rem) {
	.spec-table__row { grid-template-columns: 1fr; gap: .2rem; }
}

/* colonne latérale */
.aside-stack {
	display: grid; gap: var(--s-4);
	position: sticky; top: calc(var(--header-h) + var(--s-3));
}
.aside-card {
	background: var(--white);
	border: 2px solid var(--ink);
	box-shadow: var(--shadow);
	padding: var(--s-4);
}
.aside-card h3 { font-size: 1.2rem; margin-bottom: var(--s-2); }
.aside-card p { font-size: .92rem; color: var(--ink-2); margin-bottom: var(--s-3); }
.aside-card--cta { background: var(--navy); color: var(--white); overflow: clip; }
.aside-card--cta::before {
	content: "";
	position: absolute; top: -2px; left: -2px; right: -2px;
	height: 6px;
	background: var(--hazard);
}
.aside-card--cta { position: relative; padding-top: calc(var(--s-4) + 6px); }
.aside-card--cta h3 { color: var(--white); }
.aside-card--cta p { color: rgba(255, 255, 255, .75); }
.aside-card--cta .btn { width: 100%; margin-bottom: .7rem; box-shadow: none; }
.aside-card--cta .btn:hover { transform: none; box-shadow: 3px 3px 0 rgba(0, 0, 0, .45); }
.aside-card--cta .btn--outline { color: var(--white); border-color: var(--white); }
.aside-card--cta .btn--outline:hover { color: var(--ink); background: var(--white); }
.aside-card__proof {
	font-family: var(--font-mono);
	font-size: .7rem !important;
	letter-spacing: .04em;
	color: rgba(255, 255, 255, .6) !important;
	margin: var(--s-2) 0 0 !important;
	text-align: center;
}
.aside-card__proof b { color: var(--volt); }
.aside-list { display: grid; }
.aside-list a {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s-2);
	padding: .6rem 0;
	font-size: .92rem; font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid var(--line);
	transition: padding-left .18s var(--ease), color .15s;
}
.aside-list a:last-child { border-bottom: 0; }
.aside-list a svg { width: .9rem; height: .9rem; color: var(--ink-3); }
.aside-list a:hover { padding-left: .4rem; color: var(--volt-deep); }
.aside-list a[aria-current="page"] { color: var(--volt-deep); }

/* liens connexes */
.related-list { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.related-list a {
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .55rem 1rem;
	border: 2px solid var(--ink);
	background: var(--white);
	font-size: .9rem; font-weight: 600;
	text-decoration: none;
	transition: background .15s, transform .18s var(--ease), box-shadow .18s var(--ease);
}
.related-list a svg { width: .9rem; height: .9rem; }
.related-list a:hover {
	background: var(--volt);
	transform: translate(-2px, -2px);
	box-shadow: var(--shadow-sm);
}

/* CTA final */
.endcta {
	background: var(--navy);
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: clip;
	padding-block: var(--s-7);
}
.endcta::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		radial-gradient(50% 90% at 50% 100%, rgba(255, 211, 53, .14), transparent 70%),
		var(--grid-dark);
	background-size: auto, 34px 34px;
}
.endcta__inner { position: relative; z-index: 1; max-width: 46rem; }
.endcta .kicker { color: rgba(255, 255, 255, .72); }
.endcta h2 { color: var(--white); font-stretch: 112%; text-transform: uppercase; margin-bottom: var(--s-3); }
.endcta p { color: rgba(255, 255, 255, .78); font-size: var(--t-2); margin-bottom: var(--s-4); }
.endcta__actions {
	display: flex; align-items: center; justify-content: center;
	gap: var(--s-3); flex-wrap: wrap;
}
.endcta__actions .tel-link { color: rgba(255, 255, 255, .85); }
.endcta__actions .tel-link:hover { color: var(--ink); }
.err-page .endcta__actions .tel-link { color: var(--ink); }
.err-page .endcta__actions .tel-link:hover { color: var(--ink); }

/* ------------------------------------------------------------- erreur 404 */
.err-page {
	padding-block: var(--s-7);
	text-align: center;
	background-image: var(--grid-light);
	background-size: 34px 34px;
}
.err-code {
	font-family: var(--font-mono);
	font-size: clamp(6rem, 18vw, 12rem);
	font-weight: 600;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 2px var(--ink);
	text-shadow: 6px 6px 0 var(--volt);
	margin-bottom: var(--s-3);
}

/* ------------------------------------------------------------- reveal */
/* le masquage n'est actif que si le JS est présent (html.js) : sans lui,
   tout le contenu reste visible */
html.js [data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js [data-reveal].is-in { opacity: 1; transform: none; }

html.js [data-stagger] > * {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .6s var(--ease), transform .6s var(--ease);
}
html.js [data-stagger].is-in > * { opacity: 1; transform: none; }
[data-stagger].is-in > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].is-in > *:nth-child(2) { transition-delay: .09s; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: .18s; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: .27s; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: .36s; }
[data-stagger].is-in > *:nth-child(6) { transition-delay: .45s; }
/* les rotations des cartes d'avis doivent survivre au stagger */
html.js [data-stagger].is-in > .quote:nth-child(2) { transform: rotate(.6deg); }
html.js [data-stagger].is-in > .quote:nth-child(3) { transform: rotate(-.5deg); }
@media (max-width: 52rem) {
	html.js [data-stagger].is-in > .quote:nth-child(n) { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	html.js [data-reveal], html.js [data-stagger] > * { opacity: 1; transform: none; transition: none; }
	.hero h1 .ln > span { transform: none !important; }
	.hero__chip::before { animation: none; }
}

/* ------------------------------------------------------------- print */
@media print {
	.site-header, .mobile-nav, .action-bar, .ticker, .to-top { display: none !important; }
	body { background: #fff; color: #000; }
	[data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
}
