/* =========================================================================
   NUISIBLES SECURE — style.css
   Feuille de style unique. Variables de charte graphique + composants.
   ========================================================================= */

/* --- Polices auto-hébergées ------------------------------------------- */
@font-face {
  font-family: "Anton";
  src: url("/assets/fonts/anton-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-variable.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

/* --- Variables de charte ------------------------------------------------ */
:root {
  /* Couleurs de marque (fixes, ne changent pas avec le thème) */
  --red: #c10206;
  --red-dark: #8f0005;
  --whatsapp: #1da851;
  --whatsapp-dark: #168542;
  --on-brand: #ffffff; /* texte/icônes sur bouton plein rouge ou vert */

  /* Palette (thème sombre = valeurs par défaut) */
  --black: #000000;
  --black-soft: #0a0a0a;
  --surface: #131313;
  --surface-2: #1c1c1c;
  --white: #ffffff;
  --grey-light: #d9d9d9;
  --grey-mid: #9a9a9a;
  --grey-dark: #2e2e2e;
  --header-bg: rgba(0, 0, 0, 0.92);

  /* Rôles sémantiques */
  --bg: var(--black);
  --bg-alt: var(--black-soft);
  --text: var(--white);
  --text-muted: var(--grey-light);
  --border: var(--grey-dark);
  --accent: var(--red);
  --accent-dark: var(--red-dark);
  --focus: #ff6a6d;

  /* Typo */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;

  /* Échelle */
  --container: 1200px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --shadow-1: 0 2px 0 rgba(0, 0, 0, 0.4);
  --shadow-2: 0 18px 40px -18px rgba(193, 2, 6, 0.35), 0 4px 14px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --header-h: 76px;
  --mobile-bar-h: 62px;
}

/* --- Thème clair ----------------------------------------------------------- */
:root[data-theme="light"] {
  --black: #f7f7f8;
  --black-soft: #eeeef0;
  --surface: #ffffff;
  --surface-2: #e9e9ec;
  --white: #16161a;
  --grey-light: #4b4b52;
  --grey-mid: #75757c;
  --grey-dark: #e0e0e4;
  --header-bg: rgba(255, 255, 255, 0.92);
  --shadow-1: 0 2px 0 rgba(0, 0, 0, 0.08);
  --shadow-2: 0 18px 40px -18px rgba(193, 2, 6, 0.22), 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--mobile-bar-h);
}
img { display: block; max-width: 100%; height: auto; }
svg { display: inline-block; vertical-align: middle; max-width: 100%; }
svg { width: 20px; height: 20px; flex-shrink: 0; }
svg.icon-xs { width: 14px; height: 14px; }
svg.icon-s { width: 17px; height: 17px; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  font-weight: 400;
}
h1 { font-size: clamp(2.1rem, 5.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: var(--white); padding: 12px 18px;
  border-radius: var(--radius-s); transition: top 0.2s var(--ease);
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* --- Layout ---------------------------------------------------------------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
main { display: block; }
section { padding-block: clamp(48px, 8vw, 96px); }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--border); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.82rem; color: var(--red);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 3px; background: var(--red); display: block;
}
.section-head { max-width: 720px; margin-bottom: clamp(28px, 5vw, 48px); }
.section-head p { margin-top: 12px; font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* --- Boutons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 26px; border-radius: var(--radius-s);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 0.98rem; border: 2px solid transparent; transition: transform 0.15s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary { background: var(--red); color: var(--on-brand); box-shadow: var(--shadow-1); }
.btn-primary:hover { background: #e40308; transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: var(--on-brand); box-shadow: var(--shadow-1); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--grey-dark); }
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-white { background: #ffffff; color: #141414; }
.btn-white:hover { background: #e6e6e6; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { min-height: 56px; padding: 14px 32px; font-size: 1.05rem; }
.btn:active { transform: translateY(0); }

/* --- Topbar + Header --------------------------------------------------------- */
.topbar {
  display: none;
  background: var(--black-soft); border-bottom: 1px solid var(--border);
  font-size: 0.84rem; color: var(--grey-light);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 38px; }
.topbar-info { display: flex; align-items: center; gap: 18px; min-width: 0; }
.topbar-info a { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar-info a:hover { color: var(--white); }
.topbar-info svg { width: 14px; height: 14px; color: var(--red); }
.topbar .badge-open { color: var(--red); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; white-space: nowrap; }
@media (min-width: 1220px) { .topbar { display: block; } }
.badge-open::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 1.8s infinite; }
@media (prefers-reduced-motion: reduce) { .badge-open::before { animation: none; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: var(--header-bg); backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; }
.brand-text { font-family: var(--font-display); text-transform: uppercase; line-height: 1; }
.brand-text .l1 { display: block; font-size: 1.05rem; color: var(--white); }
.brand-text .l2 { display: block; font-size: 1.05rem; color: var(--red); }

.main-nav { display: none; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; font-size: 0.92rem; font-weight: 600;
  border-radius: var(--radius-s); transition: color 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); background: var(--surface); }
.main-nav a[aria-current="page"] { color: var(--red); }
.has-dropdown { position: relative; }
.dropdown {
  display: flex; flex-direction: column; gap: 2px;
  position: absolute; top: calc(100% + 6px); right: 0; min-width: 280px; max-width: min(280px, 90vw);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m);
  padding: 10px; box-shadow: var(--shadow-2); opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all 0.18s var(--ease);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: 9px 12px; font-size: 0.88rem; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { display: none; }
.theme-toggle {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 46px; height: 46px; border: 1px solid var(--border); border-radius: var(--radius-s);
  background: transparent; color: var(--white); cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.theme-toggle:hover { background: var(--surface); border-color: var(--grey-mid); }
.theme-toggle:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }
.burger {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: var(--radius-s);
}
.burger span { width: 20px; height: 2px; background: var(--white); transition: transform 0.25s var(--ease), opacity 0.2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; background: var(--black);
  z-index: 99; padding: 24px 20px 40px; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.28s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { .mobile-nav, .burger span { transition: none; } }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border); }
.mobile-nav a { display: block; padding: 16px 4px; font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; }
.mobile-nav .sub-list { padding-left: 14px; display: none; }
.mobile-nav .sub-list.is-open { display: block; }
.mobile-nav .sub-list a { font-family: var(--font-body); text-transform: none; font-weight: 600; font-size: 0.95rem; padding: 12px 4px; color: var(--grey-light); }
.mobile-nav-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.mobile-nav-toggle svg { width: 18px; height: 18px; transition: transform 0.2s; }
.mobile-nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

@media (min-width: 1220px) {
  .main-nav { display: block; }
  .header-actions .btn { display: inline-flex; }
  .burger, .mobile-nav { display: none; }
  body { padding-bottom: 0; }
}

/* --- Fil d'Ariane ------------------------------------------------------------ */
.breadcrumb { padding-block: 16px; font-size: 0.84rem; color: var(--grey-mid); border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--grey-dark); }
.breadcrumb li[aria-current] { color: var(--grey-light); }

/* --- Hero (vidéo plein cadre) ---------------------------------------------- */
.hero {
  /* Le texte reste clair quel que soit le thème : il repose sur un dégradé
     sombre fixe posé sur la vidéo, pas sur le fond de page. --text hérite
     normalement d'une valeur déjà calculée à la racine, donc on le
     réécrit ici aussi, pas seulement --white. */
  --white: #ffffff;
  --grey-light: #e2e2e4;
  --grey-mid: #c7c7ca;
  --border: rgba(217, 217, 217, 0.28);
  --text: #ffffff;
  --text-muted: #e2e2e4;
  color: var(--text);
  position: relative; overflow: hidden; padding-block: clamp(64px, 16vw, 160px);
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; background: var(--black);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.5) 42%, rgba(0,0,0,0.2) 75%, rgba(0,0,0,0.38) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.4), transparent 40%),
    radial-gradient(ellipse 900px 500px at 90% 0%, rgba(193,2,6,0.22), transparent 60%);
}
.hero .container { position: relative; z-index: 2; max-width: 1600px; width: 100%; }
.hero-copy { max-width: 1040px; }
.hero-copy .badge-line {
  display: flex; flex-wrap: nowrap; gap: 8px; margin-bottom: 18px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; margin-inline: -2px; padding: 2px;
}
.hero-copy .badge-line::-webkit-scrollbar { display: none; }
.hero-copy .badge-line span {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--white); flex-shrink: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(217,217,217,0.28); border-radius: 999px; padding: 8px 15px; white-space: nowrap;
}
.hero-copy .badge-line svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
.hero h1 {
  max-width: 40ch; text-shadow: 0 2px 18px rgba(0,0,0,0.6);
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
}
.hero h1 em { font-style: normal; color: var(--red); }
@media (max-width: 480px) {
  .hero-copy .badge-line span { font-size: 0.7rem; padding: 7px 12px; gap: 5px; }
  .hero-copy .badge-line svg { width: 12px; height: 12px; }
}
.hero-sub { margin-top: 18px; font-size: 1.12rem; max-width: 52ch; color: var(--grey-light); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; padding-top: 26px; border-top: 1px solid rgba(217,217,217,0.22); }
.hero-trust .trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--grey-light); }
.hero-trust svg { width: 26px; height: 26px; color: var(--red); flex-shrink: 0; }
@media (prefers-reduced-motion: reduce) { .hero-bg-video { display: none; } }

/* Hero secondaire (pages internes) */
.page-hero {
  min-height: clamp(300px, 44vw, 600px);
  padding-block: clamp(28px, 5vw, 48px);
  display: flex; align-items: center;
  background: linear-gradient(180deg, var(--black-soft), var(--black));
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero.has-photo {
  /* Texte fixe clair : il repose sur un dégradé sombre posé sur la photo,
     pas sur le fond de page (indépendant du thème clair/sombre). --text
     hérite d'une valeur déjà calculée à la racine, donc on le réécrit
     ici aussi, pas seulement --white. */
  --white: #ffffff;
  --grey-light: #e2e2e4;
  --grey-mid: #c7c7ca;
  --border: rgba(217, 217, 217, 0.28);
  --text: #ffffff;
  --text-muted: #e2e2e4;
  color: var(--text);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(circle 520px at 90% -10%, rgba(193,2,6,0.22), transparent 60%);
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero.has-photo::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.72) 45%, rgba(0,0,0,0.28) 78%, rgba(0,0,0,0.5) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.4), transparent 45%),
    radial-gradient(circle 520px at 90% -10%, rgba(193,2,6,0.16), transparent 60%);
}
.page-hero.has-photo h1 { text-shadow: 0 2px 16px rgba(0,0,0,0.55); }
.page-hero .container { position: relative; z-index: 2; max-width: 1600px; width: 100%; }
.page-hero h1 { max-width: 24ch; }
.page-hero .hero-sub { color: var(--grey-light); }
@media (max-width: 640px) { .page-hero .hero-sub { display: none; } }
.page-hero .hero-cta { margin-top: 26px; }
.page-hero .meta-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; font-size: 0.88rem; color: var(--grey-light); }
.page-hero .meta-row span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero .meta-row svg { width: 18px; height: 18px; color: var(--red); }

/* --- Bandeau urgence ------------------------------------------------------ */
.band-urgence {
  background: var(--red); color: var(--on-brand); padding-block: 18px;
}
.band-urgence .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.band-urgence p { color: rgba(255,255,255,0.92); font-weight: 600; }
.band-urgence strong { color: var(--on-brand); }

/* --- Cards grid ------------------------------------------------------------ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.grid-fixed-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .grid-fixed-4 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .grid-fixed-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m);
  padding: 26px; transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); border-color: var(--red-dark); box-shadow: var(--shadow-2); }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card .icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-s); background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; flex-shrink: 0;
}
.service-card .icon-wrap svg { width: 30px; height: 30px; color: var(--red); }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.94rem; flex-grow: 1; }
.service-card .card-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--red); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.03em; }
.service-card .card-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.card:hover .card-link svg { transform: translateX(4px); }

.city-card { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; }
.city-card .name { font-family: var(--font-display); text-transform: uppercase; font-size: 1.02rem; }
.city-card .dist { font-size: 0.78rem; color: var(--grey-mid); display: block; margin-top: 4px; text-transform: none; font-family: var(--font-body); }
.city-card svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.city-group + .city-group { margin-top: 44px; }
.city-group h3 { margin-bottom: 18px; font-size: 1.05rem; color: var(--grey-light); }

.pillar-card { text-align: left; }
.pillar-card .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--red-dark); -webkit-text-stroke: 1.5px var(--red); color: transparent; line-height: 1; margin-bottom: 10px; }

.step-card { position: relative; padding-top: 40px; }
.step-card .step-num {
  position: absolute; top: -18px; left: 24px; width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; border: 4px solid var(--bg);
}

.review-card { position: relative; }
.review-card .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-card .stars svg { width: 18px; height: 18px; color: var(--red); }
.review-card p.quote { color: var(--grey-light); font-style: italic; }
.review-card .author { margin-top: 16px; font-size: 0.86rem; color: var(--text); font-weight: 700; font-style: normal; }
.review-card .author span { display: block; color: var(--grey-mid); font-weight: 400; font-size: 0.8rem; margin-top: 2px; }

.blog-card img { border-radius: var(--radius-m); border: 1px solid var(--border); aspect-ratio: 16/9; object-fit: cover; }
.blog-card .blog-meta { display: flex; gap: 10px; align-items: center; margin-top: 16px; font-size: 0.78rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card h3 { margin-top: 10px; font-size: 1.15rem; text-transform: none; font-family: var(--font-body); font-weight: 800; letter-spacing: 0; }
.blog-card p { margin-top: 10px; font-size: 0.94rem; }
.blog-card .card-link { margin-top: 14px; display: inline-flex; gap: 8px; color: var(--red); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; }

/* --- Section zone (villes + carte) ------------------------------------------ */
.zone-layout { display: grid; gap: 32px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) { .zone-layout { grid-template-columns: 1.1fr 0.9fr; gap: 40px; } }

/* --- Zone map schématique -------------------------------------------------- */
.zone-map { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 26px; }
.zone-map svg { width: 100%; height: auto; }
.zone-map figcaption { margin-top: 14px; font-size: 0.8rem; color: var(--grey-mid); text-align: center; }

/* --- FAQ (details/summary) ------------------------------------------------ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-weight: 700; font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); flex-shrink: 0; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--red); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item summary .plus::before { width: 12px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 12px; transition: transform 0.2s var(--ease); }
.faq-item[open] summary .plus::after { transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-item .faq-a { padding: 0 22px 22px; font-size: 0.96rem; }

/* --- Contenu long / prose (blog, pages prestation) -------------------------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.2em; margin-bottom: 0.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; margin-bottom: 0.5em; color: var(--white); }
.prose p { margin-bottom: 1.1em; }
.prose ul, .prose ol { margin: 1.1em 0 1.4em; display: flex; flex-direction: column; gap: 10px; }
.prose li { position: relative; padding-left: 26px; color: var(--grey-light); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 10px; height: 10px; background: var(--red); }
.prose ol { counter-reset: item; }
.prose ol li { counter-increment: item; }
.prose ol li::before { content: counter(item); position: absolute; left: 0; top: 0; color: var(--red); font-family: var(--font-display); }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.prose .btn { color: var(--white); text-decoration: none; }
.prose blockquote { border-left: 3px solid var(--red); padding-left: 20px; color: var(--grey-light); font-style: italic; margin: 1.4em 0; }
.prose table { margin: 1.4em 0; font-size: 0.92rem; }
.prose th, .prose td { border: 1px solid var(--border); padding: 12px 14px; text-align: left; }
.prose th { background: var(--surface); font-family: var(--font-display); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.03em; }
.prose .lead { font-size: 1.12rem; color: var(--text); }

.cta-inline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--surface); border: 1px solid var(--red-dark); border-radius: var(--radius-m);
  padding: 26px; margin: 2em 0;
}
.cta-inline p { color: var(--text); margin: 0; }
.cta-inline strong { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }

/* --- Article header --------------------------------------------------------- */
.article-head { padding-block: clamp(36px, 6vw, 60px) 20px; }
.article-head .meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.82rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 14px; }
.article-cover { margin-bottom: 8px; }
.article-cover img { width: 100%; border-radius: var(--radius-l); border: 1px solid var(--border); aspect-ratio: 16/9; object-fit: cover; }

/* --- Mise en page prose + sidebar (pages prestation / ville) ----------------- */
.devis-layout { display: grid; gap: 32px; }
@media (min-width: 980px) { .devis-layout { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.split-2 { display: grid; gap: 32px; }
@media (min-width: 860px) { .split-2 { grid-template-columns: 1fr 1fr; align-items: start; } }
.side-panel { display: flex; flex-direction: column; gap: 22px; position: sticky; top: calc(var(--header-h) + 20px); }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 26px; }
.info-card h2 { font-size: 1.1rem; margin-bottom: 18px; }
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.92rem; color: var(--grey-light); }
.info-list svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.info-list a:hover { color: var(--white); }

/* --- Footer ------------------------------------------------------------------ */
.site-footer { background: var(--black-soft); border-top: 1px solid var(--border); padding-top: clamp(48px, 8vw, 76px); font-size: 0.92rem; }
.footer-top { display: grid; gap: 40px; grid-template-columns: repeat(2, 1fr); padding-bottom: 40px; }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1.3fr repeat(3, 1fr); } }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { max-width: 34ch; font-size: 0.88rem; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h3 { font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey-mid); margin-bottom: 18px; font-family: var(--font-body); font-weight: 800; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--grey-light); font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-nap { display: flex; flex-direction: column; gap: 12px; }
.footer-nap li { display: flex; gap: 10px; align-items: flex-start; color: var(--grey-light); }
.footer-nap svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--grey-mid); }
.footer-bottom ul { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--white); }

/* --- Barre mobile fixe -------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: grid;
  grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: var(--mobile-bar-h); font-family: var(--font-display); text-transform: uppercase; font-size: 0.98rem;
}
.mobile-cta-bar svg { width: 20px; height: 20px; }
.mobile-cta-bar .call { background: var(--white); color: var(--black); }
.mobile-cta-bar .devis { background: var(--whatsapp); color: var(--on-brand); }
@media (min-width: 1220px) { .mobile-cta-bar { display: none; } }

/* --- Scroll reveal -------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- 404 ------------------------------------------------------------------------- */
.error-page { min-height: 70vh; display: flex; align-items: center; padding-block: 60px; }
.error-page .code { font-family: var(--font-display); font-size: clamp(5rem, 18vw, 10rem); color: transparent; -webkit-text-stroke: 2px var(--red); line-height: 1; }
.error-page h1 { margin-top: 6px; }
.error-page p { margin-top: 16px; max-width: 56ch; font-size: 1.05rem; }
.error-page .hero-cta { margin-top: 30px; }

/* --- À propos / valeurs ---------------------------------------------------------- */
.value-row { display: flex; gap: 16px; align-items: flex-start; padding-block: 20px; border-bottom: 1px solid var(--border); }
.value-row:last-child { border-bottom: none; }
.value-row svg { width: 30px; height: 30px; color: var(--red); flex-shrink: 0; }
.value-row h3 { font-size: 1.02rem; margin-bottom: 6px; text-transform: none; font-family: var(--font-body); font-weight: 800; }
.value-row p { font-size: 0.92rem; }

.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; text-align: center; }
.stat-row .stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--red); }
.stat-row .stat span { font-size: 0.8rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.03em; }

/* --- Utilitaires ---------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.split-media { border-radius: var(--radius-l); border: 1px solid var(--border); overflow: hidden; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag-list span { background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; font-size: 0.8rem; color: var(--grey-light); }
.divider { height: 1px; background: var(--border); border: none; margin-block: 12px; }
.noindex-banner { background: #3a2600; color: #ffd479; border: 1px solid #6b4c00; padding: 14px 18px; border-radius: var(--radius-s); font-size: 0.86rem; margin-bottom: 30px; }
