/* ============================================================
   VS BÂTI RÉNOV — Feuille de styles principale
   Design System v1 (inspiré Saint-Gobain) — Violet #5E2D87 / Anthracite #26262B
   Police : Barlow (fallback Inter). Mobile-first. Base 8px.
   ============================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS (variables CSS alignées sur le design system)
   ---------------------------------------------------------------- */
:root {
  /* Couleur principale — Violet de marque */
  --violet:        #5E2D87;
  --violet-dark:   #482066;
  --violet-light:  #7E52A6;
  --violet-tint:   #F4EFF9;
  --violet-pale:   #E6D9F2;

  /* Couleur secondaire — Anthracite */
  --dark:          #26262B;
  --dark-med:      #36363D;
  --dark-soft:     #54545C;

  /* Neutres */
  --n0:   #FFFFFF;
  --n50:  #F8F8FA;
  --n100: #F1F1F4;
  --n200: #E4E4E9;
  --n400: #9A9AA3;
  --n600: #5A5B63;
  --n800: #2A2B30;
  --n900: #181A1D;

  /* Sémantiques */
  --success: #2E9E5A;
  --warning: #E8A029;
  --error:   #DC4646;
  --info:    #3B72C4;

  /* Texte sur fond sombre */
  --on-dark-soft: #C9C9D0;

  /* Espacements — base 8px */
  --sp-4:   4px;
  --sp-8:   8px;
  --sp-12:  12px;
  --sp-16:  16px;
  --sp-24:  24px;
  --sp-32:  32px;
  --sp-40:  40px;
  --sp-48:  48px;
  --sp-64:  64px;
  --sp-80:  80px;
  --sp-96:  96px;
  --sp-128: 128px;

  /* Rayons */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  --r-xl:   18px;
  --r-2xl:  24px;
  --r-full: 9999px;

  /* Bordures */
  --bd:        1px solid var(--n200);
  --bd-active: 2px solid var(--violet);

  /* Grille */
  --max-width: 1200px;

  /* Ombres (subtiles uniquement) */
  --shadow-card:  0 8px 24px rgba(94, 45, 135, 0.10);
  --shadow-soft:  0 2px 8px rgba(24, 26, 29, 0.05);

  /* Z-index */
  --z-header: 100;
  --z-mobile-bar: 999;
  --z-modal: 1000;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-enter: 0.3s ease-out;
}

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

html {
  font-family: 'Barlow', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--n800);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--n600);
  background: var(--n0);
  /* Marge basse mobile : ne pas masquer le contenu sous la barre fixe */
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--violet); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--violet-dark); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Cible accessible : focus visible (jamais supprimer le focus ring) */
:focus-visible {
  outline: 3px solid var(--violet-light);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* Lien d'évitement clavier */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--violet);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-md) 0;
  z-index: var(--z-modal);
  font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ----------------------------------------------------------------
   3. TYPOGRAPHIE (hiérarchie du design system)
   ---------------------------------------------------------------- */
.display {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--n900);
}

h1, .h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--n900);
}

h2, .h2 {
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--dark);
}

h3, .h3 {
  font-size: clamp(19px, 2.5vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--n800);
}

.body-lg { font-size: 18px; line-height: 1.7; color: var(--n600); }
p { font-size: 16px; line-height: 1.65; color: var(--n600); }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--n600); }

.overline {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--sp-12);
}

.caption { font-size: 12px; line-height: 1.4; color: var(--n400); }

/* Chiffres clés en violet */
.chiffre-cle { color: var(--violet); font-weight: 700; }

/* Texte sur fond sombre */
.on-dark { color: #fff; }
.on-dark p, .on-dark .body-lg { color: var(--on-dark-soft); }

/* ----------------------------------------------------------------
   4. LAYOUT — conteneur & sections
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px; /* mobile */
}
@media (min-width: 768px)  { .container { padding-inline: 32px; } }  /* tablette */
@media (min-width: 1024px) { .container { padding-inline: 64px; } }  /* desktop */

.section { padding-block: var(--sp-48); }
.section--lg { padding-block: var(--sp-64); }

/* Fonds alternés */
.bg-white { background: var(--n0); }
.bg-gray  { background: var(--n50); }
.bg-tint  { background: var(--violet-tint); }
.bg-dark  { background: var(--dark); color: #fff; }
.bg-violet { background: var(--violet); color: #fff; }

.section-head { max-width: 720px; margin-bottom: var(--sp-40); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--sp-16); }

/* ----------------------------------------------------------------
   5. BOUTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--r-md);
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
  min-height: 48px; /* cible tactile ≥44px */
  text-align: center;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--violet); color: #fff; }
.btn-primary:hover { background: var(--violet-dark); color: #fff; transform: translateY(-1px); }
.btn-primary:active { background: var(--violet-dark); transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--violet);
  border: 1.5px solid var(--violet);
}
.btn-secondary:hover { background: var(--violet-tint); border-color: var(--violet-dark); color: var(--violet-dark); }
.btn-secondary:active { background: var(--violet-pale); }

/* Sur hero anthracite : bouton blanc */
.btn-dark { background: #fff; color: var(--dark); }
.btn-dark:hover { background: var(--n100); color: var(--dark); transform: translateY(-1px); }
.btn-dark:active { background: var(--n200); }

.btn-ghost { background: transparent; color: var(--dark-soft); font-weight: 500; padding: 12px 18px; }
.btn-ghost:hover { background: var(--n100); color: var(--dark); }

.btn[disabled], .btn.is-disabled {
  background: var(--n200); color: var(--n400); cursor: not-allowed; transform: none;
}

.btn-lg { padding: 16px 32px; font-size: 16px; min-height: 52px; }
.btn-sm { padding: 8px 14px; font-size: 13px; min-height: 40px; }
.btn-block { width: 100%; }

/* ----------------------------------------------------------------
   6. BADGES & PILLS
   ---------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
  background: var(--violet-pale);
  color: var(--violet);
}
.badge-dark { background: var(--dark); color: #fff; }
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--n100);
  color: var(--n600);
  border: 1px solid var(--n200);
}

/* Badge avis Google (signature) */
.badge-avis {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet-tint);
  color: var(--violet);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--r-full);
}
.badge-avis .etoiles { color: var(--warning); letter-spacing: 1px; }
.bg-dark .badge-avis { background: rgba(255,255,255,0.08); color: #fff; }

.etoiles { color: var(--warning); letter-spacing: 1px; font-size: 16px; }

/* ----------------------------------------------------------------
   7. CARDS
   ---------------------------------------------------------------- */
.card {
  background: var(--n0);
  border: var(--bd);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--violet);
  box-shadow: var(--shadow-card);
}
.card--high { border: var(--bd-active); }
.card--feat { background: var(--violet-tint); border: none; border-radius: var(--r-xl); padding: 32px; }
.card--dark {
  background: var(--dark-med); border: none; color: #fff; border-radius: var(--r-lg); padding: 28px;
}
.card--dark h3, .card--dark h4 { color: #fff; }
.card--dark p { color: var(--on-dark-soft); }

.card .card-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--violet-tint);
  color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-16);
}
.card .card-ico svg { width: 26px; height: 26px; }
.card--high .card-ico { background: var(--violet-pale); }
.card--dark .card-ico { background: var(--violet); color: #fff; }
.card h3 { margin-bottom: var(--sp-8); }
.card p { font-size: 15px; }

/* ----------------------------------------------------------------
   8. GRILLES UTILITAIRES
   ---------------------------------------------------------------- */
.grid { display: grid; gap: var(--sp-24); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

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

/* ----------------------------------------------------------------
   9. HEADER / NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--n0);
  border-bottom: var(--bd);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--sp-16);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--n900); }
.nav-logo img { width: 38px; height: 38px; border-radius: var(--r-sm); }
.nav-logo strong { color: var(--violet); }

.nav-links { display: none; align-items: center; gap: 4px; flex-wrap: nowrap; }
.nav-links a {
  font-weight: 500; font-size: 14px; color: var(--dark-soft);
  padding: 10px 10px; border-radius: var(--r-md); transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap; flex-shrink: 0;
}
.nav-links a:hover { color: var(--violet); background: var(--n50); }
.nav-links a.is-active { color: var(--violet); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: var(--sp-12); }
.nav-phone {
  display: none;
  align-items: center; gap: 6px;
  font-weight: 600; font-size: 15px; color: var(--n900);
  white-space: nowrap; flex-shrink: 0;
}
.nav-phone:hover { color: var(--violet); }
.nav-phone svg { width: 18px; height: 18px; color: var(--violet); }

/* Bouton burger mobile */
.nav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-md); color: var(--n900);
}
.nav-burger svg { width: 26px; height: 26px; }

/* Menu mobile déroulant */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--sp-16) 0 var(--sp-24);
  border-top: var(--bd);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-weight: 500; font-size: 16px; color: var(--n800);
  padding: 12px var(--sp-16); border-radius: var(--r-md);
}
.nav-mobile a:hover, .nav-mobile a.is-active { background: var(--n50); color: var(--violet); }
.nav-mobile .btn { margin-top: var(--sp-12); }

@media (min-width: 1200px) {
  .nav { height: 72px; }
  .nav-links { display: flex; }
  .nav-phone { display: inline-flex; }
  .nav-burger { display: none; }
}

/* ----------------------------------------------------------------
   10. HERO (fond anthracite + accent violet)
   ---------------------------------------------------------------- */
.hero {
  background: var(--dark);
  color: #fff;
  padding-block: var(--sp-80);
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; gap: var(--sp-40); align-items: center; }
.hero h1, .hero .display { color: #fff; }
.hero .hero-sub { color: var(--n400); font-size: 18px; line-height: 1.7; margin-top: var(--sp-16); max-width: 56ch; }
.hero .overline { color: var(--violet-light); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-12); margin-top: var(--sp-32); }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-16); margin-top: var(--sp-32); }
.hero-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--dark-med);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 980px) {
  .hero { padding-block: var(--sp-128); }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-64); }
}

/* ----------------------------------------------------------------
   11. BANDEAU PREUVE (certifications / avis)
   ---------------------------------------------------------------- */
.proof-bar { display: grid; gap: var(--sp-24); grid-template-columns: repeat(2, 1fr); text-align: center; }
.proof-item .num { font-size: 30px; font-weight: 700; color: var(--violet); line-height: 1.1; }
.proof-item .lbl { font-size: 14px; color: var(--n600); margin-top: 4px; }
.proof-item svg { width: 28px; height: 28px; color: var(--violet); margin-bottom: 8px; }
@media (min-width: 768px) {
  .proof-bar { grid-template-columns: repeat(4, 1fr); }
}

/* ----------------------------------------------------------------
   12. ÉTAPES (process numéroté)
   ---------------------------------------------------------------- */
.steps { display: grid; gap: var(--sp-24); grid-template-columns: 1fr; counter-reset: step; }
.step { background: var(--n0); border-radius: var(--r-lg); padding: 28px; border: var(--bd); }
.step .step-num {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--violet); color: #fff; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-16);
}
.step h3 { margin-bottom: 6px; }
.bg-tint .step { background: var(--n0); }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* ----------------------------------------------------------------
   13. FAQ (accordéon accessible)
   ---------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: var(--bd); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-16);
  padding: 20px 0; font-size: 18px; font-weight: 600; color: var(--n900);
}
.faq-q svg { width: 22px; height: 22px; color: var(--violet); flex-shrink: 0; transition: transform var(--t-fast); }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--t-fast);
}
.faq-a-inner { padding: 0 0 20px; color: var(--n600); line-height: 1.7; }

/* ----------------------------------------------------------------
   14. GALERIE / RÉALISATIONS
   ---------------------------------------------------------------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: var(--sp-8);
  justify-content: center; margin-bottom: var(--sp-40);
}
.gallery-filters button {
  font-size: 14px; font-weight: 500; color: var(--n600);
  padding: 8px 18px; border-radius: var(--r-full); border: 1px solid var(--n200);
  background: var(--n0); transition: all var(--t-fast); min-height: 40px;
}
.gallery-filters button:hover { border-color: var(--violet-light); color: var(--violet); }
.gallery-filters button.is-active { background: var(--violet); color: #fff; border-color: var(--violet); }

.gallery { display: grid; gap: var(--sp-24); grid-template-columns: 1fr; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.realisation {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: var(--bd);
  background: var(--n0);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.realisation:hover { box-shadow: var(--shadow-card); }
.realisation .photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--n100); }
.realisation .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-enter); }
.realisation:hover .photo img { transform: scale(1.03); }
.realisation .meta { padding: var(--sp-16); }
.realisation .meta h3 { font-size: 17px; margin-bottom: 4px; }
.realisation .meta .lieu { font-size: 14px; color: var(--n400); display: flex; align-items: center; gap: 6px; }
.realisation .meta .lieu svg { width: 15px; height: 15px; }

.gallery-empty { text-align: center; padding: var(--sp-48) var(--sp-16); color: var(--n400); }

/* ----------------------------------------------------------------
   15. FORMULAIRE
   ---------------------------------------------------------------- */
.form { display: grid; gap: var(--sp-16); }
.form-row { display: grid; gap: var(--sp-16); grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.field label { display: block; font-size: 13px; font-weight: 500; color: var(--n800); margin-bottom: 6px; }
.field .req { color: var(--error); }

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 52px;
  background: var(--n0);
  border: 1px solid var(--n200);
  border-radius: var(--r-sm);
  padding: 0 16px;
  font-size: 16px; /* évite le zoom auto iOS */
  font-family: inherit;
  color: var(--n800);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form textarea { padding: 14px 16px; min-height: 120px; line-height: 1.6; resize: vertical; }
.form input::placeholder,
.form textarea::placeholder { color: var(--n400); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border: 1.5px solid var(--violet);
  box-shadow: 0 0 0 3px rgba(94, 45, 135, 0.12);
}
.form input[aria-invalid="true"],
.form select[aria-invalid="true"],
.form textarea[aria-invalid="true"] { border: 1.5px solid var(--error); }

.field-error { display: none; color: var(--error); font-size: 13px; margin-top: 6px; }
.field-error.is-visible { display: block; }

.form-rgpd {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--n600); line-height: 1.5;
}
.form-rgpd input[type="checkbox"] { width: 20px; height: 20px; min-height: auto; flex-shrink: 0; margin-top: 2px; accent-color: var(--violet); }

.form-feedback { padding: 14px 16px; border-radius: var(--r-sm); font-size: 14px; display: none; }
.form-feedback.is-success { display: block; background: rgba(46,158,90,0.1); color: var(--success); border: 1px solid rgba(46,158,90,0.3); }
.form-feedback.is-error { display: block; background: rgba(220,70,70,0.1); color: var(--error); border: 1px solid rgba(220,70,70,0.3); }

/* Carte formulaire mise en avant */
.form-card { background: var(--n0); border-radius: var(--r-xl); padding: var(--sp-32); box-shadow: var(--shadow-soft); border: var(--bd); }
@media (min-width: 768px) { .form-card { padding: var(--sp-40); } }

/* ----------------------------------------------------------------
   16. TÉMOIGNAGES (section sombre)
   ---------------------------------------------------------------- */
.temoignage { background: var(--dark-med); border-radius: var(--r-lg); padding: 28px; }
.temoignage .etoiles { margin-bottom: var(--sp-12); }
.temoignage blockquote { color: #fff; font-size: 16px; line-height: 1.7; font-style: normal; }
.temoignage .auteur { margin-top: var(--sp-16); font-weight: 600; color: #fff; }
.temoignage .auteur span { display: block; font-weight: 400; font-size: 14px; color: var(--n400); }

/* ----------------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------------- */
.site-footer { background: var(--dark); color: var(--on-dark-soft); padding-block: var(--sp-64) var(--sp-32); }
.footer-grid { display: grid; gap: var(--sp-40); grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand .nav-logo { color: #fff; margin-bottom: var(--sp-16); }
.footer-brand p { color: var(--n400); font-size: 15px; max-width: 38ch; }
.footer h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: var(--sp-16); letter-spacing: 0.02em; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--on-dark-soft); font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 15px; color: var(--on-dark-soft); }
.footer-contact svg { width: 18px; height: 18px; color: var(--violet-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: var(--on-dark-soft); }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  margin-top: var(--sp-40); padding-top: var(--sp-24);
  border-top: 1px solid var(--dark-med);
  display: flex; flex-wrap: wrap; gap: var(--sp-12); justify-content: space-between;
  font-size: 13px; color: var(--n400);
}
.footer-bottom a { color: var(--n400); }
.footer-bottom a:hover { color: #fff; }

/* ----------------------------------------------------------------
   18. BARRE CTA FIXE MOBILE (Appeler + Devis)
   ---------------------------------------------------------------- */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-mobile-bar);
  background: var(--dark);
  display: flex; gap: var(--sp-12);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--dark-med);
}
.mobile-cta-bar a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;
  font-weight: 600; font-size: 15px;
  border-radius: var(--r-md);
}
.mobile-cta-bar a svg { width: 18px; height: 18px; }
.mobile-cta-bar .cta-call { background: #fff; color: var(--dark); }
.mobile-cta-bar .cta-devis { background: var(--violet); color: #fff; }
/* Réserve d'espace pour ne pas masquer le contenu/footer */
body { padding-bottom: 0; }
@media (max-width: 1199px) {
  body { padding-bottom: 72px; }
}
@media (min-width: 1200px) {
  .mobile-cta-bar { display: none; }
}

/* ----------------------------------------------------------------
   19. CONTENU RÉDACTIONNEL (pages service / à propos / légal)
   ---------------------------------------------------------------- */
.prose { max-width: 760px; }
.prose p { margin-bottom: var(--sp-16); }
.prose h2 { margin-top: var(--sp-40); margin-bottom: var(--sp-16); }
.prose h3 { margin-top: var(--sp-24); margin-bottom: var(--sp-8); }
.prose ul { margin: 0 0 var(--sp-16) var(--sp-24); list-style: disc; }
.prose ul li { margin-bottom: 8px; color: var(--n600); }
.prose ul li::marker { color: var(--violet); }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Liste avantages avec puces icône */
.list-check { display: grid; gap: var(--sp-12); }
.list-check li { display: flex; align-items: flex-start; gap: 12px; color: var(--n600); }
.list-check svg { width: 22px; height: 22px; color: var(--violet); flex-shrink: 0; margin-top: 1px; }

/* Fil d'ariane */
.breadcrumb { padding-block: var(--sp-16); font-size: 14px; color: var(--n400); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--n600); }
.breadcrumb a:hover { color: var(--violet); }
.breadcrumb [aria-current="page"] { color: var(--n800); font-weight: 500; }

/* Bloc de maillage interne */
.maillage { background: var(--violet-tint); border-radius: var(--r-lg); padding: var(--sp-24); margin-top: var(--sp-32); }
.maillage p { color: var(--n600); }
.maillage a { color: var(--violet); font-weight: 600; }

/* ----------------------------------------------------------------
   19bis. CONTENU ENRICHI — composants pour aérer les pages service / à propos
   (remplacent les longs blocs de texte par des grilles visuelles ;
   réutilisent les tokens du design system, aucun texte n'est supprimé)
   ---------------------------------------------------------------- */

/* Lead d'introduction centré (chapô de section) */
.lead { max-width: 740px; margin-inline: auto; text-align: center; }
.lead p { font-size: 18px; line-height: 1.7; color: var(--n600); }

/* Titre + chapô d'une sous-section centrée, sans la contrainte de .section-head */
.bloc-intro { max-width: 760px; margin: 0 auto var(--sp-40); text-align: center; }
.bloc-intro h2 { margin-bottom: var(--sp-16); }
.bloc-intro p { color: var(--n600); }

/* Grille d'atouts : icône + titre + texte court (carte horizontale) */
.atouts-grid { display: grid; gap: var(--sp-16); grid-template-columns: 1fr; }
@media (min-width: 640px)  { .atouts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .atouts-grid { grid-template-columns: repeat(3, 1fr); } }

.atout {
  display: flex; align-items: flex-start; gap: var(--sp-16);
  background: var(--n0); border: var(--bd); border-radius: var(--r-lg);
  padding: var(--sp-24);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.atout:hover { transform: translateY(-3px); border-color: var(--violet); box-shadow: var(--shadow-card); }
.atout .atout-ico {
  width: 44px; height: 44px; border-radius: var(--r-md); flex-shrink: 0;
  background: var(--violet-tint); color: var(--violet);
  display: flex; align-items: center; justify-content: center;
}
.atout .atout-ico svg { width: 24px; height: 24px; }
.atout h3 { font-size: 17px; margin-bottom: 4px; }
.atout p { font-size: 15px; margin: 0; }

/* Sur fond gris, les cartes restent blanches (contraste DS) */
.bg-gray .atout, .bg-tint .atout { background: var(--n0); }

/* Pills de communes (zone d'intervention) */
.zone-villes { display: flex; flex-wrap: wrap; gap: var(--sp-12); }
.zone-villes.center { justify-content: center; }
.zone-villes .tag {
  gap: 6px; font-weight: 500; color: var(--n800);
  background: var(--n0); border: 1px solid var(--n200);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.zone-villes .tag svg { width: 14px; height: 14px; color: var(--violet); flex-shrink: 0; }
.zone-villes .tag:hover { border-color: var(--violet-light); color: var(--violet); }

/* Étapes process « comment ça se passe » (réutilise .steps mais avec connecteur) */
.process-intro { max-width: 760px; margin: 0 auto var(--sp-40); text-align: center; }

/* Features centrées (icône au-dessus, texte centré) — fonctionne clair et sombre */
.features { display: grid; gap: var(--sp-24); grid-template-columns: 1fr; }
@media (min-width: 640px)  { .features.cols-2 { grid-template-columns: repeat(2, 1fr); }
                             .features.cols-3 { grid-template-columns: repeat(2, 1fr); }
                             .features.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features.cols-3 { grid-template-columns: repeat(3, 1fr); }
                             .features.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.feature { text-align: center; }
.feature .feature-ico {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--violet-tint); color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-16);
}
.feature .feature-ico svg { width: 28px; height: 28px; }
.feature h3 { font-size: 18px; margin-bottom: 6px; }
.feature p { font-size: 15px; }
/* Variante sur fond sombre */
.bg-dark .feature h3 { color: #fff; }
.bg-dark .feature p { color: var(--on-dark-soft); }
.bg-dark .feature .feature-ico { background: rgba(255,255,255,0.08); color: var(--violet-light); }

/* ----------------------------------------------------------------
   20. UTILITAIRES & ANIMATIONS
   ---------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: var(--sp-16); }
.mt-24 { margin-top: var(--sp-24); }
.mt-32 { margin-top: var(--sp-32); }
.mb-0 { margin-bottom: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: var(--sp-12); flex-wrap: wrap; }

/* Apparition au scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--t-enter), transform var(--t-enter); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* CTA final pleine largeur violet */
.cta-final { text-align: center; }
.cta-final .display, .cta-final h2 { color: #fff; }
.cta-final p { color: rgba(255,255,255,0.85); max-width: 60ch; margin-inline: auto; }
.cta-final .btn-dark { margin-top: var(--sp-24); }
.cta-final .contact-direct { margin-top: var(--sp-24); display: flex; flex-wrap: wrap; gap: var(--sp-24); justify-content: center; }
.cta-final .contact-direct a { color: #fff; font-weight: 700; font-size: 20px; display: inline-flex; align-items: center; gap: 8px; }
.cta-final .contact-direct svg { width: 22px; height: 22px; }

/* ----------------------------------------------------------------
   21. ACCESSIBILITÉ — reduced motion
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* Masquer visuellement mais garder pour lecteurs d'écran */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
