/* =========================================================================
   PRO-REFLEX — v2
   Feuille de style unique. La CHARTE (couleurs, polices, espacements) est
   regroupée tout en haut dans :root. Modifier une variable s'applique partout.
   Ordre des sections :
     1.  Charte / variables
     2.  Reset / base / utilitaires
     3.  En-tête + barre de contact + navigation
     4.  Boutons / CTA
     5.  Hero
     6.  Bandeau de réassurance (garanties)
     7.  Sections de services / expertises
     8.  Chiffres clés
     9.  À propos
     10. Aperçu avant / après
     11. Galerie (page réalisations)
     12. Zones d'intervention
     13. Avis
     14. Appel à l'action final
     15. Contact + formulaire
     16. Pied de page
     17. Animations + responsive + print
   ========================================================================= */

/* ----------------------------------------------------------------------- */
/* 1. CHARTE / VARIABLES                                                    */
/* ----------------------------------------------------------------------- */
:root {
  /* ----- DA reprise de la v1 (direction artistique éditoriale) ----- */
  /* Couleurs de marque */
  --accent:      #F26000;   /* orange PRO-REFLEX : CTA, liens, accents       */
  --accent-dark: #B84800;   /* orange foncé : survol / pressé                */
  --accent-soft: #FBEADB;   /* orange très clair : focus / fonds doux        */
  --accent-tint: #FBEADB;
  --accent-glow: rgba(242, 96, 0, .14);

  /* Neutres chauds (beige v1) */
  --ink:       #1C1714;   /* near-black chaud : fonds sombres + texte fort   */
  --ink-2:     #2C2420;   /* second fond sombre                              */
  --ink-soft:  #2C2420;
  --body:      #3A332E;   /* texte courant                                   */
  --muted:     #6C6056;   /* texte secondaire                                */
  --muted-2:   #9C9082;   /* texte tertiaire / libellés mono                 */
  --line:      #E3D8C8;   /* filets / bordures                               */
  --line-2:    #EEE6D8;   /* filets clairs                                   */
  --paper:     #F6F1E8;   /* fond clair principal (beige chaud)              */
  --surface:   #FFFDF8;   /* cartes (blanc chaud)                            */
  --surface-2: #EFE7D9;   /* fonds doux alternés                             */

  /* Texte sur fond sombre */
  --on-ink:   #F5F0E8;
  --on-ink-2: rgba(245, 240, 232, .62);
  --on-ink-3: rgba(245, 240, 232, .34);

  /* Vert d'appui */
  --green:      #3F5A45;
  --green-deep: #2C4332;
  --green-tint: #E7EDE2;
  --green-line: #C9D6BF;

  /* Typographies v1 : Fraunces (titres) · Hanken Grotesk (texte) · IBM Plex Mono (libellés) */
  --f-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --f-sans:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;

  /* Échelle d'espacement (base 4 / 8 px) */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px;

  /* Divers — DA souple façon LMT : coins arrondis + ombres douces */
  --max-w: 1280px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow:    0 22px 54px -28px rgba(28, 23, 20, .32);
  --shadow-sm: 0 12px 30px -20px rgba(28, 23, 20, .24);
  --hair: 1px solid var(--line);
  --header-h: 0px;
}

/* ----------------------------------------------------------------------- */
/* 2. RESET / BASE / UTILITAIRES                                            */
/* ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--paper);
  font-weight: 420;
  line-height: 1.58;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Grain léger sur tout le site (texture éditoriale de la v1) */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media print { body::after { display: none; } }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-optical-sizing: auto;
  color: var(--ink);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -.018em;
}

p { color: var(--body); }

ul { list-style: none; }

.wrap { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--s5); }

.section-pad { padding-block: clamp(56px, 9vw, 112px); }

/* Badge pilule en tête de section (signature LMT) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent-dark);
  font-family: var(--f-mono); font-weight: 500; font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 15px; border-radius: var(--radius-pill);
  margin-bottom: var(--s5);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.section-head.center .eyebrow { justify-content: center; }
.mono { font-family: var(--f-mono); }
/* Variante sur fond sombre */
.dark .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow {
  background: rgba(255, 255, 255, .12); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

.section-head { max-width: 680px; margin-bottom: var(--s8); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.8vw, 3.25rem); margin-bottom: var(--s4); letter-spacing: -.026em; }
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }
.section-head.center p { margin-inline: auto; }

.hl { color: var(--accent); font-style: italic; font-weight: 500; }

.tint { background: var(--surface-2); }
.dark { background: var(--ink); }
.dark h2, .dark h3, .dark p, .dark .eyebrow { color: var(--paper); }
.dark .eyebrow { color: var(--accent); }

/* Liseré décoratif en tête de section sombre */
.tint { position: relative; }

/* ----------------------------------------------------------------------- */
/* 3. EN-TÊTE + BARRE DE CONTACT + NAVIGATION                               */
/* ----------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 248, .82);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
          backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 1px 0 rgba(28, 23, 20, .06);
}

.contact-bar { background: var(--ink); color: #E9E1D8; font-size: .85rem; }
.contact-bar-inner { display: flex; align-items: center; gap: var(--s5); flex-wrap: wrap; padding-block: var(--s2); }
.cb-item { display: inline-flex; align-items: center; gap: var(--s2); color: var(--on-ink); font-family: var(--f-mono); font-size: .75rem; letter-spacing: .01em; }
.cb-item svg { width: 14px; height: 14px; color: var(--accent); }
.cb-item:hover { color: #fff; }
.cb-note { margin-left: auto; font-family: var(--f-mono); font-size: .625rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-ink-3); }

.header-nav { border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s5); padding-block: var(--s3); }

.site-logo img { height: 54px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: var(--s5); }
.primary-nav a {
  font-weight: 600; font-size: .95rem; color: var(--body);
  padding-block: var(--s2); position: relative; transition: color .15s;
}
.primary-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .2s;
}
.primary-nav a:not(.nav-cta):hover { color: var(--accent); }
.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a.is-active::after { width: 100%; }
.primary-nav a.is-active { color: var(--accent); }

.nav-cta {
  background: var(--accent); color: #fff !important; padding: 11px 22px !important;
  border-radius: var(--radius-pill); font-weight: 700; transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 12px 24px -14px rgba(242, 96, 0, .7);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 0; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------------- */
/* 4. BOUTONS / CTA                                                         */
/* ----------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--f-sans); font-weight: 700; font-size: .95rem;
  padding: 15px 30px; border-radius: var(--radius-pill); cursor: pointer;
  border: 1px solid transparent; transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 16px 32px -16px rgba(242, 96, 0, .65); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); }

/* ----------------------------------------------------------------------- */
/* 5. HERO                                                                  */
/* ----------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 80px);
  align-items: center; padding-block: clamp(52px, 8vw, 104px);
}
.hero-tag { color: var(--muted); }
.hero h1 { font-size: clamp(2.5rem, 6.2vw, 4.6rem); line-height: 1.0; letter-spacing: -.03em; margin-bottom: var(--s5); max-width: 15ch; }
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 46ch; margin-bottom: var(--s7); line-height: 1.55; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; height: 100%; max-height: 560px; object-fit: cover;
  border-radius: 0; box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute; left: -14px; bottom: 28px; background: var(--surface);
  border-radius: var(--radius); padding: var(--s4) var(--s5); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: var(--s4);
}
.hero-badge .hb-num { font-family: var(--f-display); font-size: 2rem; color: var(--accent); line-height: 1; }
.hero-badge .hb-txt { font-size: .85rem; color: var(--muted); line-height: 1.3; }


/* ----------------------------------------------------------------------- */
/* 7. SECTIONS DE SERVICES / EXPERTISES                                     */
/* ----------------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.service-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .sc-media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.service-card .sc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card .sc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(28,23,20,.22)); }
.service-card:hover .sc-media img { transform: scale(1.07); }
.service-card .sc-body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { color: var(--muted); font-size: .96rem; }
.service-card .sc-link { margin-top: auto; font-weight: 700; color: var(--accent); display: inline-flex; gap: 6px; }
.service-card .sc-link:hover { gap: 12px; }

/* Bloc texte + image (prestations détaillées) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.feature + .feature { margin-top: var(--s9); }
.feature.rev .feature-media { order: 2; }
.feature-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.feature h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: var(--s4); }
.feature .checklist { margin: var(--s5) 0; display: grid; gap: var(--s4); }

/* Avant / après intégré dans une prestation (page services) : deux photos côte à
   côte, avec les pastilles "Avant" / "Après" (réutilise la classe .ba-tag). */
.feature-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.feature-ba figure { position: relative; margin: 0; }
.feature-ba img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  display: block; border-radius: 0; box-shadow: none; }
.checklist { display: grid; gap: var(--s4); }
.checklist li { display: flex; gap: var(--s3); align-items: flex-start; color: var(--body); font-weight: 500; }
.checklist li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-dark);
  font-weight: 800; font-size: .82rem; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ----------------------------------------------------------------------- */
/* 7bis. NOS PRESTATIONS (tous corps d'état, 3 familles)                    */
/* ----------------------------------------------------------------------- */
.prestations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.presta-card {
  background: var(--surface); border: 1px solid var(--line); border-top: 4px solid var(--accent);
  border-radius: var(--radius); padding: var(--s6); display: flex; flex-direction: column; gap: var(--s4);
  transition: transform .2s, box-shadow .2s;
}
.presta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.presta-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft);
  display: grid; place-items: center; flex: none;
}
.presta-icon svg { width: 28px; height: 28px; color: var(--accent-dark); }
.presta-card h3 { font-size: 1.3rem; }
.presta-list { display: grid; gap: var(--s2); }
.presta-list li { display: flex; gap: var(--s3); align-items: flex-start; color: var(--body); font-size: .98rem; }
.presta-list li::before { content: "—"; color: var(--accent); font-weight: 800; flex: none; }

/* ----------------------------------------------------------------------- */
/* 7ter. NOS PARTENAIRES (carrousel CSS infini)                            */
/* ----------------------------------------------------------------------- */
/* Bande de preuve sociale, placée juste sous le hero */
.partners { overflow: hidden; background: var(--surface); border-block: 1px solid var(--line); padding-block: var(--s7); }
.partners-head { text-align: center; margin-bottom: var(--s6); }
.partners-head .eyebrow { justify-content: center; }
.partners-kicker {
  display: block; text-align: center; font-weight: 700; font-size: .76rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: var(--s5);
}
.marquee {
  position: relative; overflow: hidden; width: 100%;
  /* Marge verticale pour ne pas rogner les contours des pastilles (bordure + survol) */
  padding-block: 10px;
  /* Dégradé latéral pour estomper les bords du bandeau */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex; width: max-content; gap: var(--s5); align-items: center;
  /* La piste contient DEUX copies identiques de la liste : on la translate de
     -50 % pour un défilement parfaitement bouclé (bandeau infini). */
  animation: marquee-scroll 40s linear infinite;
}
.partners:hover .marquee-track { animation-play-state: paused; }
.partner-item {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  height: 96px; padding: 0 var(--s6); border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: border-color .2s;
  /* Évite la re-rastérisation des bordures 1px pendant l'animation de la piste */
  backface-visibility: hidden;
}
.partner-item:hover { border-color: var(--accent); }
/* Logos en couleur dès le départ, plus grands */
.partner-item img {
  height: 52px; width: auto; max-width: 220px; object-fit: contain; display: block;
  transition: transform .2s;
}
.partner-item:hover img { transform: scale(1.05); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ----------------------------------------------------------------------- */
/* 8. CHIFFRES CLÉS                                                         */
/* ----------------------------------------------------------------------- */
.stats-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, #3a2415 130%);
  padding-block: clamp(44px, 6vw, 72px); position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 300px at 88% -20%, rgba(242,96,0,.22), transparent 60%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); text-align: center; position: relative; z-index: 1; }
.stats-band .stat { padding-inline: var(--s4); }
.stats-band .stat + .stat { border-left: 1px solid rgba(255,255,255,.1); }
.stat .stat-num { font-family: var(--f-display); font-size: clamp(2.6rem, 5.4vw, 3.8rem); color: var(--accent); line-height: 1; font-weight: 600; }
.stat .stat-lbl { color: rgba(255,255,255,.72); font-weight: 600; margin-top: var(--s2); font-size: .95rem; }

/* ----------------------------------------------------------------------- */
/* 9. À PROPOS                                                              */
/* ----------------------------------------------------------------------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.about-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-lead { font-size: 1.1rem; color: var(--body); margin-bottom: var(--s5); }

/* ----------------------------------------------------------------------- */
/* 10. APERÇU AVANT / APRÈS                                                 */
/* ----------------------------------------------------------------------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
.ba-pair {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.ba-pair-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-pair-imgs figure { position: relative; }
.ba-pair-imgs img { width: 100%; height: 280px; object-fit: cover; }
.ba-tag {
  position: absolute; top: var(--s3); left: var(--s3); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(28,23,20,.78); color: #fff;
}
.ba-tag.is-after { background: var(--accent); }
.ba-pair-body { padding: var(--s5); }
.ba-pair-body h3 { font-size: 1.25rem; margin-bottom: var(--s2); }
.ba-pair-body p { color: var(--muted); font-size: .95rem; }

.center-cta { text-align: center; margin-top: var(--s7); }

/* ----------------------------------------------------------------------- */
/* 11. GALERIE (PAGE RÉALISATIONS)                                          */
/* ----------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden; color: var(--paper);
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 55%, #3a2415 135%);
  padding-block: clamp(64px, 9vw, 112px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(620px 320px at 85% -25%, rgba(242,96,0,.25), transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: var(--paper); font-size: clamp(2.2rem, 5.4vw, 3.4rem); letter-spacing: -.025em; margin-bottom: var(--s4); max-width: 18ch; }
.page-hero p { color: rgba(245,240,232,.78); max-width: 60ch; font-size: 1.06rem; line-height: 1.6; }

.cat-group + .cat-group { margin-top: var(--s9); }
.cat-head { margin-bottom: var(--s6); }
.cat-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.cat-head p { color: var(--muted); max-width: 56ch; margin-top: var(--s2); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.g-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-sm);
}
.g-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s; }
.g-item:hover img { transform: scale(1.05); }
.g-phase {
  position: absolute; top: var(--s3); left: var(--s3); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); color: #fff;
}
.g-phase.avant   { background: rgba(28,23,20,.82); }
.g-phase.pendant { background: #7A6A58; }
.g-phase.apres   { background: var(--accent); }
.g-cap {
  position: absolute; inset: auto 0 0 0; padding: var(--s5) var(--s4) var(--s4);
  background: linear-gradient(180deg, transparent, rgba(28,23,20,.88));
  color: #fff; font-size: .9rem;
}
.g-cap strong { display: block; font-family: var(--f-display); font-size: 1rem; }

/* Comparatif côte à côte mis en avant */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: center; margin-bottom: var(--s8); }
.compare-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.compare-imgs figure { position: relative; }
.compare-imgs img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-sm); }
.compare h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: var(--s4); }
.compare .g-trades { margin-top: var(--s4); }

.g-trades { display: flex; flex-wrap: wrap; gap: var(--s2); }
.g-trade { font-size: .8rem; font-weight: 600; background: var(--surface-2); color: var(--body); padding: 4px 11px; border-radius: 0; border: 1px solid var(--line); }

/* ----------------------------------------------------------------------- */
/* 12. ZONES D'INTERVENTION                                                 */
/* ----------------------------------------------------------------------- */
.zones { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.zone-list { display: flex; flex-wrap: wrap; gap: var(--s3); }
.zone-chip {
  background: var(--surface); border: 1px solid var(--line); border-radius: 0;
  padding: 9px 18px; font-weight: 600; font-size: .95rem; color: var(--ink);
}
.zone-chip svg { width: 14px; height: 14px; color: var(--accent); vertical-align: -2px; margin-right: 6px; }

/* ----------------------------------------------------------------------- */
/* 13. AVIS                                                                 */
/* ----------------------------------------------------------------------- */
.reviews-layout { display: grid; grid-template-columns: .8fr 2fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.score-display { display: flex; align-items: baseline; gap: var(--s3); }
.score-num { font-family: var(--f-display); font-size: 3.4rem; color: var(--accent); line-height: 1; }
.score-of { color: var(--muted); }
.score-stars { color: var(--accent); font-size: 1.2rem; letter-spacing: 2px; margin-block: var(--s2); }
.score-count { color: var(--muted); font-size: .92rem; }
.rev-link { display: inline-block; margin-top: var(--s4); font-weight: 700; color: var(--accent); }
.rev-link:hover { color: var(--accent-dark); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.review-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s6) var(--s5); box-shadow: var(--shadow-sm); overflow: hidden; }
.review-card::before { content: "\201C"; position: absolute; top: 6px; right: 20px; font-family: var(--f-display); font-size: 4.5rem; line-height: 1; color: var(--accent-soft); }
.review-card .rc-stars { color: var(--accent); margin-bottom: var(--s3); letter-spacing: 2px; position: relative; }
.review-quote { font-family: var(--f-display); font-style: italic; font-size: 1.06rem; line-height: 1.5; color: var(--ink); position: relative; }
.review-footer { display: flex; justify-content: space-between; margin-top: var(--s4); font-size: .82rem; color: var(--muted); }
.review-src { font-weight: 600; }

/* --- Carrousel d'avis à défilement automatique (du plus récent au plus ancien).
       La piste #reviewsTrack contient DEUX copies identiques des cartes (la 2de
       est aria-hidden) pour une boucle continue, sur le même principe que le
       bandeau partenaires. Le rendu et les données sont gérés dans js/main.js. --- */
.reviews-marquee {
  position: relative; overflow: hidden; width: 100%; min-width: 0; padding-block: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.reviews-track {
  display: flex; width: max-content; gap: var(--s4); align-items: stretch;
  animation: marquee-scroll var(--reviews-duration, 60s) linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-track .review-card {
  flex: none; width: clamp(280px, 78vw, 360px);
  display: flex; flex-direction: column;
  backface-visibility: hidden;
}
.reviews-track .review-card .review-footer { margin-top: auto; }
@media (prefers-reduced-motion: reduce) {
  /* Pas d'animation : on revient à une grille statique lisible. */
  .reviews-marquee { -webkit-mask-image: none; mask-image: none; }
  .reviews-track {
    animation: none; width: 100%; flex-wrap: wrap;
    display: grid; grid-template-columns: repeat(3, 1fr);
  }
  .reviews-track .review-card { width: auto; }
  .reviews-track .review-card[aria-hidden="true"] { display: none; }
}

/* ----------------------------------------------------------------------- */
/* 14. APPEL À L'ACTION FINAL                                               */
/* ----------------------------------------------------------------------- */
.cta-band {
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 50%, #3a2415 130%);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(680px 360px at 50% -30%, rgba(242,96,0,.28), transparent 60%);
}
.cta-band-inner { position: relative; z-index: 1; padding-block: clamp(56px, 8vw, 104px); display: flex; flex-direction: column; align-items: center; gap: var(--s5); }
.cta-band h2 { color: var(--paper); font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 22ch; }
.cta-band p { color: #C9BFB4; max-width: 52ch; }

/* ----------------------------------------------------------------------- */
/* 15. CONTACT + FORMULAIRE                                                 */
/* ----------------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); }
.contact-lead { color: var(--body); font-size: 1.08rem; margin-bottom: var(--s6); }
.ch-block { padding-block: var(--s4); border-top: 1px solid var(--line); }
.ch-label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ch-val { font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.ch-val.sm { font-size: 1rem; }
.ch-val a:hover { color: var(--accent); }

.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.field { margin-bottom: var(--s4); display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--f-sans); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: var(--s3); }
.form-status { font-weight: 600; margin-top: var(--s4); padding: var(--s3) var(--s4); border-radius: var(--radius-sm); display: none; }
.form-status.ok { display: block; background: var(--green-tint); color: var(--green); }
.form-status.err { display: block; background: #FBE6E6; color: #A6322B; }

/* ----------------------------------------------------------------------- */
/* 16. PIED DE PAGE                                                         */
/* ----------------------------------------------------------------------- */
/* Pied de page épuré façon LMT : fond foncé uni, filets discrets */
.site-footer {
  background: #17120D; color: #B3A89B;
  padding-block: clamp(56px, 8vw, 88px) var(--s6);
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(32px, 4vw, 48px); border-bottom: 1px solid rgba(255, 255, 255, .08);
}
/* Logo détouré (fond transparent) : net sur fond sombre */
.footer-logo { margin-bottom: var(--s5); }
.footer-logo img { height: 58px; width: auto; }
.footer-col > p { color: #8C8276; font-size: .95rem; line-height: 1.7; max-width: 36ch; }
.footer-col h4 {
  color: #fff; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: var(--s5);
}
.footer-col ul { display: grid; gap: var(--s3); }
.footer-col ul a { color: #B3A89B; font-size: .95rem; transition: color .15s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-col address { font-style: normal; line-height: 1.9; font-size: .95rem; color: #B3A89B; }
.footer-col address a { transition: color .15s; }
.footer-col address a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s3);
  margin-top: var(--s5); font-size: .82rem; color: #786E62;
}
.footer-bottom a:hover { color: var(--accent); }

/* ----------------------------------------------------------------------- */
/* 16bis. DA SOUPLE (LMT) — arrondis, ombres douces, panneaux               */
/* ----------------------------------------------------------------------- */
/* Cartes : arrondies, ombre douce, léger soulèvement au survol */
.service-card, .presta-card, .review-card, .contact-card, .ba-pair, .g-item {
  border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line-2);
}
.service-card:hover, .presta-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.service-card:hover h3, .presta-card:hover h3 { color: var(--accent); }
.g-item:hover, .ba-pair:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.presta-card { border-top: 4px solid var(--accent); }

/* Pastilles corps d'état & zones : arrondies (pilule) */
.g-trade { background: var(--paper); color: var(--body); border: 1px solid var(--line); border-radius: var(--radius-pill); }
.zone-chip { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-pill); }
.zone-chip:hover { border-color: var(--accent); color: var(--accent); }

/* Section expertises : panneau plein écran, contenu centré */
.panel-screen {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding-block: clamp(64px, 9vw, 110px);
}
.panel-screen > .wrap { width: 100%; }

/* Couverture « tous corps d'état » (fusion des prestations sous les cartes) */
.coverage { margin-top: clamp(48px, 7vw, 84px); padding-top: clamp(36px, 5vw, 56px); border-top: 1px solid var(--line); }
.coverage-head { text-align: center; margin-bottom: var(--s7); }
.coverage-head h3 { font-size: clamp(1.4rem, 3vw, 2.05rem); margin-top: var(--s2); letter-spacing: -.02em; }
.coverage-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 52px); }
.coverage-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--accent-soft); margin-bottom: var(--s4); }
.coverage-icon svg { width: 24px; height: 24px; color: var(--accent-dark); }
.coverage-col h4 { font-size: 1.2rem; margin-bottom: var(--s4); }
.coverage-list { display: flex; flex-wrap: wrap; gap: 8px; }
.coverage-list li {
  font-size: .85rem; font-weight: 600; color: var(--body);
  background: var(--surface); border: 1px solid var(--line); padding: 7px 13px; border-radius: var(--radius-pill);
}

/* ----------------------------------------------------------------------- */
/* 17. ANIMATIONS + RESPONSIVE + PRINT                                      */
/* ----------------------------------------------------------------------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.js .fade-up { will-change: opacity, transform; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .prestations-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s6) var(--s5); }
  .stats-band .stat + .stat { border-left: 0; }
  .about, .feature, .feature.rev, .zones, .contact-layout, .compare { grid-template-columns: 1fr; }
  .feature.rev .feature-media { order: -1; }
  .about-media { max-width: 420px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  /* CORRECTIF BUG MENU MOBILE (surtout Safari iOS) : le `backdrop-filter` (flou)
     de l'en-tête fixe ROGNE/masque le menu déroulant (un descendant en position
     absolue) sur WebKit. On retire le flou sur mobile et on met un fond opaque :
     le menu s'affiche alors entièrement et correctement sous la navigation. */
  .site-header {
    -webkit-backdrop-filter: none; backdrop-filter: none;
    background: var(--surface);
  }

  /* MENU MOBILE (déroulant sous la barre de navigation).
     Le conteneur .header-inner est en position:relative (voir plus bas) pour
     ancrer ce menu juste sous le logo. Points importants pour éviter les bugs :
       - z-index élevé : le menu doit passer AU-DESSUS du hero et des sections
         (l'en-tête utilise un backdrop-filter qui, sans z-index explicite,
         pouvait faire passer le menu DERRIÈRE l'image du hero sur certains
         navigateurs mobiles) ;
       - fond opaque (var(--surface)) : on ne voit pas le contenu par transparence ;
       - hauteur d'ouverture généreuse + overflow-y:auto : le menu ne coupe
         jamais le dernier lien, et défile si l'écran est très petit. */
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 90; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  /* Ouvert : hauteur plafonnée à 80 % de l'écran, avec défilement interne au besoin. */
  .primary-nav.is-open { max-height: min(80vh, 560px); overflow-y: auto; -webkit-overflow-scrolling: touch; }
  /* display:block INDISPENSABLE : en version bureau les liens sont `inline`
     (rangée horizontale) ; tels quels dans le menu mobile, leur padding vertical
     ne pousse pas les voisins → les liens se CHEVAUCHENT (menu écrasé/buggé).
     En `block`, chaque lien occupe toute sa hauteur (et devient une bonne cible tactile). */
  .primary-nav a { display: block; padding: 16px var(--s5); border-top: 1px solid var(--line); }
  .primary-nav a.nav-cta { margin: var(--s4) var(--s5); text-align: center; border-radius: var(--radius-pill); }
  .header-inner { position: relative; }
  .cb-note { display: none; }
  .ba-grid, .ba-pair-imgs { grid-template-columns: 1fr; }
  .ba-pair-imgs img { height: 220px; }
  .compare-imgs img { height: 230px; }
  .coverage-cols { grid-template-columns: 1fr; gap: var(--s6); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .services-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

@media print {
  .site-header, .nav-toggle, .cta-band, .contact-card, .site-footer { display: none; }
  body { background: #fff; }
}

/* ========================================================================= */
/* 18. HERO « base LMT » (image en fade + overlays + glassmorphism)          */
/* ========================================================================= */
.lmt-hero {
  position: relative; display: flex; align-items: center; overflow: hidden;
  min-height: 92vh; min-height: 92svh;
  background: var(--ink); color: #fff; isolation: isolate;
}
.lmt-hero .hero__bg { position: absolute; inset: 0; z-index: 0; }
.lmt-hero .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay-1 { position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,11,8,.95) 0%, rgba(15,11,8,.82) 36%, rgba(15,11,8,.5) 70%, rgba(15,11,8,.32) 100%); }
.hero__overlay-2 { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,11,8,.55) 0%, rgba(15,11,8,.2) 38%, rgba(15,11,8,.72) 100%); }

.hero__container {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max-w); margin-inline: auto; padding-inline: var(--s5);
  padding-block: clamp(90px, 14vh, 150px);
}
.hero__content { max-width: 720px; }

/* Effet verre dépoli */
.glass {
  background: rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
          backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255,255,255,.22);
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; border-radius: 999px;
  padding: 9px 18px; margin-bottom: var(--s5); color: #fff;
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: wa-dot 2s infinite; }
@keyframes wa-dot { 0%{box-shadow:0 0 0 0 rgba(242,96,0,.6)} 70%{box-shadow:0 0 0 9px rgba(242,96,0,0)} 100%{box-shadow:0 0 0 0 rgba(242,96,0,0)} }

.hero__title {
  font-family: var(--f-display); color: #fff; font-weight: 560;
  font-size: clamp(2.4rem, 5.8vw, 4.6rem); line-height: 1.04; letter-spacing: -.025em;
  margin-bottom: var(--s5); max-width: 16ch;
}
.hero__title-accent { color: var(--accent); font-style: italic; }
.hero__title-underline { position: relative; white-space: nowrap; }
.hero__title-underline svg { position: absolute; left: 0; bottom: -.16em; width: 100%; height: .38em; }

.hero__subtitle { font-size: 1.18rem; color: rgba(255,255,255,.82); max-width: 52ch; line-height: 1.6; margin-bottom: var(--s7); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s7); }
.hero__cta-primary {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: .98rem;
  padding: 16px 30px; border-radius: 999px; transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 14px 30px -12px rgba(242,96,0,.7);
}
.hero__cta-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.hero__cta-secondary {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: .98rem;
  padding: 16px 28px; border-radius: 999px; transition: background .2s;
}
.hero__cta-secondary:hover { background: rgba(255,255,255,.2); }

/* Brillance qui balaie le CTA */
.shimmer::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); animation: shimmer 3.4s ease-in-out infinite;
}
@keyframes shimmer { 0%{left:-130%} 55%{left:140%} 100%{left:140%} }

.hero__badges { display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero__trust-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  color: #fff; font-size: .85rem; font-weight: 600;
}
.hero__trust-badge svg { color: var(--accent); flex: none; }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2; }
.hero__scroll-indicator {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.hero__scroll-dot { width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: scrolldot 1.7s infinite; }
@keyframes scrolldot { 0%{opacity:0; transform:translateY(-4px)} 35%{opacity:1} 75%{opacity:0; transform:translateY(11px)} 100%{opacity:0} }

/* Entrée animée en cascade */
.hero__content > * { opacity: 0; transform: translateY(18px); animation: hero-in .7s ease forwards; }
.hero__badge   { animation-delay: .05s; }
.hero__title   { animation-delay: .18s; }
.hero__subtitle{ animation-delay: .32s; }
.hero__ctas    { animation-delay: .46s; }
.hero__badges  { animation-delay: .6s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }

/* MOBILE : le hero occupe tout l'écran du téléphone (hauteur de l'écran MOINS
   l'en-tête fixe), pour que l'indicateur « scroll » reste visible en bas.
   --header-h est mesuré en JS (main.js → setHeaderHeightVar). */
@media (max-width: 760px) {
  /* Hero = hauteur de l'écran moins l'en-tête. On utilise dvh (dynamic viewport
     height) : il vaut exactement la zone visible et se met à jour quand la barre
     d'URL du navigateur mobile apparaît/disparaît → l'indicateur de scroll reste
     collé au bas de l'écran. Fallback svh pour les très vieux navigateurs. */
  .lmt-hero {
    min-height: calc(100svh - var(--header-h, 0px));
    min-height: calc(100dvh - var(--header-h, 0px));
  }
}
@media (max-width: 600px) {
  /* Contenu compacté pour tenir sur un seul écran avec l'indicateur de scroll. */
  .hero__container { padding-block: var(--s5) 54px; }
  .hero__badge { margin-bottom: var(--s3); }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.5rem); line-height: 1.08; margin-bottom: var(--s3); }
  .hero__subtitle { font-size: 1rem; margin-bottom: var(--s4); }
  .hero__ctas { margin-bottom: var(--s4); }
  .hero__cta-primary, .hero__cta-secondary { width: 100%; justify-content: center; }
  .hero__scroll { bottom: 14px; }
}
/* Téléphones courts (peu de hauteur) : on compacte davantage et on masque les
   badges de réassurance pour GARANTIR que l'indicateur de scroll reste visible. */
@media (max-width: 600px) and (max-height: 720px) {
  .hero__subtitle { margin-bottom: var(--s3); }
  .hero__badges { display: none; }
}
/* Écrans très étroits : on masque l'e-mail de la barre de contact (toujours
   accessible ailleurs) pour qu'elle tienne sur UNE ligne → en-tête plus court,
   donc plus de place pour le hero et son indicateur de scroll. */
@media (max-width: 420px) {
  .cb-item[href^="mailto"] { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__content > * { animation: none; opacity: 1; transform: none; }
  .shimmer::after, .hero__badge-dot, .hero__scroll-dot { animation: none; }
}

/* ========================================================================= */
/* 19. BOUTON WHATSAPP FLOTTANT (à ma sauce, avec le numéro)                 */
/* ========================================================================= */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 9999;
  display: inline-flex; align-items: center; gap: 12px;
}
.whatsapp-float__label {
  display: flex; flex-direction: column; line-height: 1.15;
  background: #fff; color: var(--ink); font-weight: 700; font-size: .9rem;
  padding: 9px 16px; border-radius: 999px;
  box-shadow: 0 10px 26px -12px rgba(0,0,0,.45); border: 1px solid var(--line);
  transition: transform .2s, opacity .2s;
}
.whatsapp-float__label small {
  font-family: var(--f-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: #25D366; font-weight: 500;
}
.whatsapp-float__btn {
  position: relative; flex: none; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.65); transition: transform .2s;
}
.whatsapp-float:hover .whatsapp-float__btn { transform: scale(1.08); }
.whatsapp-float__icon { width: 34px; height: 34px; }
.whatsapp-float__pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25D366; z-index: -1;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse { 0%{transform:scale(1); opacity:.55} 70%{transform:scale(1.7); opacity:0} 100%{opacity:0} }

@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float__btn { width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) { .whatsapp-float__pulse { animation: none; opacity: 0; } }
