/* ==========================================================================
   AS SIGNATURE x GNJ WASH — Design System
   Premium automobile nocturne. CSS pur, sans framework.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:ital,wght@0,700;0,900;1,700;1,900&family=Inter:wght@400;500;600&family=Rajdhani:wght@600&display=swap');

/* --------------------------------------------------------------------------
   1. VARIABLES
   -------------------------------------------------------------------------- */
:root {
	/* Noirs */
	--noir-profond:  #050508;
	--noir-carbone:  #0D0D12;
	--noir-surface:  #16161C;
	--noir-elevated: #1E1E26;

	/* Or */
	--or-clair:   #F7DC8A;
	--or:         #D4A62A;
	--or-profond: #A87B14;
	--or-bronze:  #6B4E0F;

	/* Bleu */
	--bleu-electrique: #12A0FF;
	--bleu:            #0B72D6;
	--bleu-profond:    #062E63;

	/* Accents & neutres */
	--rouge:      #E01F26;
	--blanc:      #FFFFFF;
	--argent:     #C7C7CF;
	--gris-texte: #8C8C97;
	--bordure:    rgba(212, 166, 42, .22);

	/* Dégradés */
	--gradient-or:     linear-gradient(135deg, #6B4E0F, #D4A62A 25%, #F7DC8A 50%, #D4A62A 75%, #A87B14);
	--gradient-bleu:   linear-gradient(135deg, #062E63, #0B72D6 45%, #12A0FF 70%, #0B72D6);
	--gradient-fusion: linear-gradient(90deg, #D4A62A, #F7DC8A 35%, #FFFFFF 50%, #12A0FF 65%, #0B72D6);

	/* Lueurs */
	--glow-or:   0 0 24px rgba(212, 166, 42, .42);
	--glow-bleu: 0 0 24px rgba(18, 160, 255, .42);

	/* Typo */
	--font-display: 'Saira Condensed', sans-serif;
	--font-body:    'Inter', sans-serif;
	--font-nums:    'Rajdhani', sans-serif;

	/* Rythme */
	--container-max: 1180px;
	--radius: 4px;
	--transition-base: 300ms ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--noir-profond);
	color: var(--argent);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img, picture, video { max-width: 100%; display: block; }

a { color: var(--or-clair); text-decoration: none; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

input, textarea, select {
	font-family: var(--font-body);
	background: var(--noir-carbone);
	border: 1px solid var(--bordure);
	color: var(--blanc);
	border-radius: var(--radius);
	padding: .75rem 1rem;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 900;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin: 0 0 1rem;
	color: var(--blanc);
}

/* Focus clavier visible partout */
:focus-visible {
	outline: 2px solid var(--or);
	outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHIE UTILITAIRE
   -------------------------------------------------------------------------- */
.text-gradient-or {
	background: var(--gradient-or);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.text-gradient-bleu {
	background: var(--gradient-bleu);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Chiffres : prix, compte à rebours, durées, horaires */
.nums {
	font-family: var(--font-nums);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}

.eyebrow {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--or);
}

/* --------------------------------------------------------------------------
   4. LAYOUT UTILITAIRE
   -------------------------------------------------------------------------- */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section {
	position: relative;
	padding: 5rem 0;
	overflow: hidden;
}

/* Trame hexagonale en fond de section, très discrète */
.section--hex::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: .05;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='104' viewBox='0 0 60 104'%3E%3Cg fill='none' stroke='%23D4A62A' stroke-width='1'%3E%3Cpath d='M30 0 60 17.3 60 52 30 69.3 0 52 0 17.3z'/%3E%3Cpath d='M30 69.3 60 86.6 60 104M30 69.3 0 86.6 0 104M30 0V-17.3'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: repeat;
}

.grid {
	display: grid;
	gap: 1.75rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
	.grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
	.section { padding: 3rem 0; }
}

/* Contenu + colonne latérale (pages de détail) */
.grid--detail { grid-template-columns: 2fr 1fr; align-items: start; }
@media (max-width: 900px) {
	.grid--detail { grid-template-columns: 1fr; }
}

/* Fil d'Ariane */
.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	font-size: .85rem;
	color: var(--gris-texte);
	margin-bottom: 2rem;
}
.breadcrumb a { color: var(--gris-texte); }
.breadcrumb a:hover { color: var(--or-clair); }
.breadcrumb .sep { color: var(--bordure); }
.breadcrumb [aria-current] { color: var(--or-clair); }

/* Séparateur de section : ligne 2px en dégradé fusion */
.section-divider {
	height: 2px;
	border: none;
	margin: 0;
	background: var(--gradient-fusion);
}

/* --------------------------------------------------------------------------
   5. ÉLÉMENT SIGNATURE — croisement lumineux or × bleu
   -------------------------------------------------------------------------- */
.signature-cross {
	position: relative;
	width: 140px;
	height: 70px;
	margin: 2.5rem auto;
}

.signature-cross::before,
.signature-cross::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150px;
	height: 3px;
	border-radius: 3px;
}

.signature-cross::before {
	background: var(--gradient-or);
	box-shadow: var(--glow-or);
	transform: translate(-50%, -50%) rotate(-38deg);
}

.signature-cross::after {
	background: var(--gradient-bleu);
	box-shadow: var(--glow-bleu);
	transform: translate(-50%, -50%) rotate(38deg);
}

/* --------------------------------------------------------------------------
   6. CARTES — coins biseautés, bordure dorée fine, survol élevé + lueur
   -------------------------------------------------------------------------- */
.card {
	position: relative;
	background: var(--noir-surface);
	border: 1px solid var(--bordure);
	clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
	padding: 2rem;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--glow-or);
}

.card--bleu:hover { box-shadow: var(--glow-bleu); }

.card--elevated { background: var(--noir-elevated); }

/* --------------------------------------------------------------------------
   7. BOUTONS
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .85rem 1.75rem;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: .95rem;
	border-radius: var(--radius);
	border: 1px solid transparent;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
	white-space: nowrap;
}

.btn-or {
	background: var(--gradient-or);
	color: var(--noir-profond);
}
.btn-or:hover { transform: translateY(-2px); box-shadow: var(--glow-or); }

.btn-bleu {
	background: var(--gradient-bleu);
	color: var(--blanc);
}
.btn-bleu:hover { transform: translateY(-2px); box-shadow: var(--glow-bleu); }

.btn-outline {
	background: transparent;
	border-color: var(--bordure);
	color: var(--or-clair);
}
.btn-outline:hover { border-color: var(--or); box-shadow: var(--glow-or); }

/* --------------------------------------------------------------------------
   8. EN-TÊTE
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: rgba(5, 5, 8, .88);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--bordure);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .85rem 0;
}

.site-nav { display: flex; gap: 2rem; }

.site-nav a {
	color: var(--argent);
	font-weight: 500;
	font-size: .95rem;
	transition: color var(--transition-base);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--or-clair); }

.btn-phone {
	background: var(--gradient-or);
	color: var(--noir-profond);
	padding: .6rem 1.25rem;
	border-radius: var(--radius);
	font-family: var(--font-nums);
	font-weight: 600;
}

/* Menu mobile */
.burger {
	display: none;
	background: none;
	border: none;
	width: 40px;
	height: 40px;
	position: relative;
}

.burger span,
.burger span::before,
.burger span::after {
	content: '';
	position: absolute;
	left: 8px;
	right: 8px;
	height: 2px;
	background: var(--or-clair);
	transition: transform var(--transition-base), opacity var(--transition-base);
}
.burger span { top: 19px; }
.burger span::before { top: -8px; }
.burger span::after { top: 8px; }

.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 300;
	background: var(--noir-profond);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	transform: translateY(-100%);
	transition: transform var(--transition-base);
}

.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu a {
	font-family: var(--font-display);
	font-size: 1.75rem;
	text-transform: uppercase;
	font-style: italic;
	color: var(--blanc);
}

@media (max-width: 860px) {
	.site-nav { display: none; }
	.burger { display: block; }
}

/* --------------------------------------------------------------------------
   8bis. HERO PLEIN ÉCRAN
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 50% 105%, rgba(212, 166, 42, .10), transparent 60%),
		radial-gradient(ellipse at 50% -5%, rgba(18, 160, 255, .08), transparent 60%),
		var(--noir-profond);
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
	padding: 3rem 1.5rem;
}

/* Variante avec photo de fond (visuels fournis par le client) : voile
   en degrade pour garantir la lisibilite du vrai texte HTML pose dessus,
   quel que soit le niveau d'assombrissement deja present dans la photo. */
.hero--photo {
	background-size: cover;
	background-position: center;
}
.hero--photo::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(180deg, rgba(5,5,8,.35) 0%, rgba(5,5,8,.6) 45%, rgba(5,5,8,.9) 100%);
}

/* Bandeau photo decoratif (pages services/tarifs), plus bas et moins de voile */
.photo-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.photo-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5,5,8,.5), rgba(5,5,8,.75));
}
.photo-banner__content {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2rem 1.5rem;
}

.hero__title {
	font-size: clamp(2.25rem, 5.5vw, 4.25rem);
	margin: 1rem 0;
}

.hero__subtitle {
	font-family: var(--font-body);
	font-style: normal;
	text-transform: none;
	letter-spacing: normal;
	font-size: 1.1rem;
	color: var(--argent);
	margin-bottom: 2rem;
}

.hero__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   8ter. HEXAGONES — bloc « deux métiers »
   -------------------------------------------------------------------------- */
.hexagon {
	position: relative;
	clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
	background: linear-gradient(160deg, var(--noir-elevated), var(--noir-surface));
	border: 1px solid var(--bordure);
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: .75rem;
	padding: 2.5rem 2rem;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hexagon:hover { transform: translateY(-6px); }
.hexagon--or:hover { box-shadow: var(--glow-or); }
.hexagon--bleu:hover { box-shadow: var(--glow-bleu); border-color: rgba(18, 160, 255, .3); }

.hexagon--or .icon-wrap { color: var(--or-clair); }
.hexagon--bleu .icon-wrap { color: var(--bleu-electrique); }

.icon-wrap svg { width: 40px; height: 40px; }

/* --------------------------------------------------------------------------
   9. PIED DE PAGE
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--noir-carbone);
	border-top: 1px solid var(--bordure);
	padding: 3.5rem 0 2rem;
}

.site-footer a { color: var(--gris-texte); }
.site-footer a:hover { color: var(--or-clair); }

/* --------------------------------------------------------------------------
   10. BOUTON WHATSAPP FLOTTANT + BARRE D'ACTION MOBILE
   -------------------------------------------------------------------------- */
.whatsapp-float {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 250;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .5);
	transition: transform var(--transition-base);
}
.whatsapp-float:hover { transform: scale(1.08); }

.mobile-action-bar {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 240;
	background: var(--noir-carbone);
	border-top: 1px solid var(--bordure);
	grid-template-columns: repeat(3, 1fr);
}

.mobile-action-bar a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .25rem;
	padding: .65rem 0;
	font-size: .75rem;
	color: var(--argent);
}

@media (max-width: 640px) {
	.mobile-action-bar { display: grid; }
	body { padding-bottom: 64px; }
	.whatsapp-float { bottom: 76px; }
}

/* --------------------------------------------------------------------------
   11. LIEN D'ÉVITEMENT
   -------------------------------------------------------------------------- */
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	background: var(--or);
	color: var(--noir-profond);
	padding: .75rem 1.5rem;
	z-index: 999;
	border-radius: var(--radius);
}
.skip-link:focus {
	left: 1rem;
	top: 1rem;
	position: fixed;
}

/* --------------------------------------------------------------------------
   12. TABLEAU TARIFAIRE — jamais de débordement horizontal sur mobile
   -------------------------------------------------------------------------- */
.table-tariff {
	width: 100%;
	border-collapse: collapse;
}

.table-tariff th, .table-tariff td {
	padding: 1rem;
	text-align: center;
	border: 1px solid var(--bordure);
}

.table-tariff thead th { font-family: var(--font-display); text-transform: uppercase; }

@media (max-width: 700px) {
	.table-tariff, .table-tariff thead, .table-tariff tbody,
	.table-tariff th, .table-tariff td, .table-tariff tr {
		display: block;
	}
	.table-tariff thead { display: none; }
	.table-tariff tr {
		margin-bottom: 1rem;
		border: 1px solid var(--bordure);
		border-radius: var(--radius);
		overflow: hidden;
	}
	.table-tariff td {
		display: flex;
		justify-content: space-between;
		border: none;
		border-bottom: 1px solid var(--bordure);
	}
	.table-tariff td:last-child { border-bottom: none; }
	.table-tariff td::before {
		content: attr(data-label);
		font-weight: 600;
		color: var(--or-clair);
	}
}

/* --------------------------------------------------------------------------
   13. COMPTE À REBOURS
   -------------------------------------------------------------------------- */
.countdown {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.countdown__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 72px;
}

.countdown__value {
	font-family: var(--font-nums);
	font-size: 2.75rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: var(--or-clair);
}

.countdown__label {
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--gris-texte);
}

/* --------------------------------------------------------------------------
   14. COMPARATEUR AVANT / APRÈS
   -------------------------------------------------------------------------- */
.compare-slider {
	--reveal: 50%;
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--bordure);
	clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.compare-slider img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

/* L'image "après" est révélée progressivement depuis la gauche */
.compare-slider__after {
	position: absolute;
	inset: 0;
	clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}

.compare-slider__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--reveal);
	width: 2px;
	background: var(--gradient-fusion);
	transform: translateX(-50%);
	pointer-events: none;
}

.compare-slider__handle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 36px;
	height: 36px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: var(--noir-profond);
	border: 1px solid var(--or);
	box-shadow: var(--glow-or);
}

.compare-slider__label {
	position: absolute;
	bottom: .6rem;
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: .3rem .7rem;
	background: rgba(5, 5, 8, .7);
	border-radius: var(--radius);
	color: var(--argent);
}
.compare-slider__label--before { left: .6rem; }
.compare-slider__label--after { right: .6rem; }

.compare-slider input[type="range"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

/* --------------------------------------------------------------------------
   14bis. GALERIE — filtres et lightbox
   -------------------------------------------------------------------------- */
.btn-outline.is-active {
	border-color: var(--or);
	box-shadow: var(--glow-or);
	color: var(--or-clair);
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 500;
	background: rgba(5, 5, 8, .94);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; box-shadow: var(--glow-or); }

.lightbox__close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--bordure);
	color: var(--blanc);
	font-size: 1.5rem;
	line-height: 1;
}
.lightbox__close:hover { border-color: var(--or); }

/* --------------------------------------------------------------------------
   14ter. POPUP GÉNÉRIQUE (lead "Réserver" sur la page tarifs, etc.)
   -------------------------------------------------------------------------- */
.modal {
	position: fixed;
	inset: 0;
	z-index: 500;
	background: rgba(5, 5, 8, .85);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}
.modal.is-open { display: flex; }

.modal__content {
	position: relative;
	background: var(--noir-surface);
	border: 1px solid var(--bordure);
	border-radius: var(--radius);
	padding: 2rem;
	max-width: 560px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
}

.modal__close {
	position: absolute;
	top: .75rem;
	right: .75rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--bordure);
	color: var(--blanc);
	font-size: 1.3rem;
	line-height: 1;
}
.modal__close:hover { border-color: var(--or); }

/* --------------------------------------------------------------------------
   15. FORMULAIRES
   -------------------------------------------------------------------------- */
.field { margin-bottom: 1.25rem; }

.field label {
	display: block;
	margin-bottom: .4rem;
	font-weight: 600;
	font-size: .9rem;
	color: var(--or-clair);
}

.field input, .field textarea, .field select { width: 100%; }

.field-error {
	color: var(--rouge);
	font-size: .85rem;
	margin-top: .3rem;
}

/* Honeypot anti-spam : masqué visuellement mais présent dans le DOM */
.hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   15bis. TUNNEL DE RÉSERVATION
   -------------------------------------------------------------------------- */
.booking-steps {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2.5rem;
}

.booking-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	font-size: .8rem;
	color: var(--gris-texte);
	flex: 1;
}

.booking-step span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--bordure);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-nums);
	font-weight: 600;
	background: var(--noir-surface);
	transition: border-color var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.booking-step.is-active span,
.booking-step.is-done span {
	border-color: var(--or);
	color: var(--or-clair);
	box-shadow: var(--glow-or);
}

.booking-step.is-active,
.booking-step.is-done { color: var(--or-clair); }

.booking-panel { display: none; }
.booking-panel.is-active { display: block; }

.booking-choice {
	cursor: pointer;
	transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}
.booking-choice.is-selected {
	border-color: var(--or);
	box-shadow: var(--glow-or);
}

.slot-btn {
	padding: .65rem .5rem;
	text-align: center;
	border: 1px solid var(--bordure);
	border-radius: var(--radius);
	background: var(--noir-surface);
	color: var(--argent);
	font-size: .9rem;
	transition: all var(--transition-base);
}
.slot-btn:hover { border-color: var(--or); }
.slot-btn.is-selected {
	background: var(--gradient-or);
	color: var(--noir-profond);
	border-color: transparent;
}

.step-warning {
	color: var(--rouge);
	font-size: .85rem;
	margin-top: .75rem;
	min-height: 1.2em;
}

/* --------------------------------------------------------------------------
   16. ACCESSIBILITÉ MOUVEMENT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}

/* --------------------------------------------------------------------------
   17. IMPRESSION
   -------------------------------------------------------------------------- */
@media print {
	.site-header, .site-footer, .whatsapp-float,
	.mobile-action-bar, .skip-link, .burger {
		display: none !important;
	}
	body { background: #fff; color: #000; }
}
