/* =========================================================================
   Klean Facility Solutions — Feuille de style commune
   Style « Moderne Épuré » (variante epure du design canvas)
   Portage statique du design Klean Facility Solutions.dc.html
   ========================================================================= */

/* ---------- Reset ---------- */
* { box-sizing: border-box; max-width: 100%; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--gold); color: #fff; }

/* ---------- Jetons de couleur / typo (style Épuré) ---------- */
:root {
  --navy: #17313F;
  --navy-deep: #0F2530;
  --navy-soft: #EDE9DF;
  --gold: #C6A15B;
  --gold-soft: #EFE4C8;
  --cream: #FAF8F2;
  --paper: #FFFFFF;
  --ink: #1A2A33;
  --muted: #66757D;
  --font-head: 'Roboto', Helvetica, system-ui, sans-serif;
  --font-body: 'Roboto', Helvetica, system-ui, sans-serif;
  --r: 12px;
  --r-lg: 18px;
  /* Rythme vertical : espace d'une section (cf. .kfs-sec). */
  --sy: 88px;
  /* Hauteurs des bandeaux du haut — le hero occupe le reste de l'écran. */
  --topbar-h: 44px;
  --header-h: 74px;
  --line: color-mix(in srgb, #17313F 14%, transparent);
  --line-on-header: color-mix(in srgb, #1A2A33 16%, transparent);
  --head-on-header: #1A2A33;
  --sub-on-header: #66757D;
  --ph-photo: linear-gradient(rgba(8,41,61,.04), rgba(8,41,61,.06)), url('../img/full-length-portrait-smiling-young-housekeeper.jpg') center/cover no-repeat;
  --ph-dark: repeating-linear-gradient(135deg, #0F2530 0 16px, #17313F 16px 32px);
  --ph-map: repeating-linear-gradient(45deg, color-mix(in srgb,#17313F 8%, #FBFCFC) 0 12px, color-mix(in srgb,#17313F 3%, #FBFCFC) 12px 24px);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
}

/* ---------- Animations ---------- */
@keyframes kfsFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes kfsSpin { to { transform: rotate(360deg); } }
@keyframes kfsPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } }
@keyframes kfsSheen { to { background-position: 200% center; } }

/* ---------- Barres de défilement ---------- */
.kfs-scroll::-webkit-scrollbar { height: 6px; width: 6px; }
.kfs-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 20px; }

/* ---------- Galerie — carrousel infini ---------- */
.kfs-marquee { overflow: hidden; padding: 6px 0 20px; }
.kfs-marquee__track {
  display: flex; gap: 18px; width: max-content;
  animation: kfsMarquee var(--kfs-marquee-dur, 40s) linear infinite;
}
.kfs-marquee:hover .kfs-marquee__track { animation-play-state: paused; }
/* -50% = fin de la 1re copie ; -9px = moitié du gap (18px) pour un raccord sans saut. */
@keyframes kfsMarquee { to { transform: translateX(calc(-50% - 9px)); } }
@media (prefers-reduced-motion: reduce) {
  .kfs-marquee__track { animation: none; }
}

/* ---------- Conteneur de page ---------- */
.klean-page-container { max-width: 1240px; margin-inline: auto; padding-inline: 24px; }
.klean-page-container--narrow { max-width: 1040px; }
.klean-page-container--tight { max-width: 900px; }
.klean-page-container--prose { max-width: 820px; }

/* ---------- Galerie — lightbox ---------- */
.kfs-lb {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  gap: 12px; padding: clamp(16px, 4vw, 48px);
  background: rgba(8, 41, 61, .92);
  opacity: 0; transition: opacity .25s ease;
}
.kfs-lb.is-open { display: flex; opacity: 1; }
.kfs-lb__fig {
  margin: 0; display: flex; flex-direction: column; align-items: center;
  gap: 14px; max-width: 100%; max-height: 100%;
}
.kfs-lb__img {
  max-width: min(1100px, 90vw); max-height: 80vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--r-lg); box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}
.kfs-lb__cap { text-align: center; color: #fff; }
.kfs-lb__cat {
  display: block; color: var(--gold);
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
}
.kfs-lb__title {
  display: block; margin-top: 4px;
  font-family: var(--font-head); font-weight: 700; font-size: 19px;
}
.kfs-lb__close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .12); color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer; transition: background .2s;
}
.kfs-lb__nav {
  flex: none; width: 52px; height: 52px; border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff;
  font-size: 20px; cursor: pointer; transition: background .2s;
}
.kfs-lb__close:hover, .kfs-lb__nav:hover { background: var(--gold); color: var(--navy-deep); }
@media (max-width: 640px) {
  .kfs-lb__nav { position: absolute; bottom: 20px; }
  .kfs-lb__prev { left: 24px; }
  .kfs-lb__next { right: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .kfs-lb { transition: none; }
}

/* ---------- Classes utilitaires (styles calculés du design) ---------- */
/* Kicker / eyebrow — traitement « line » */
.kfs-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--muted); padding-left: 0;
}
/* Titres H2 — traitement « clean » */
.kfs-h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(27px,3.2vw,40px); line-height: 1.15; letter-spacing: -.8px;
  color: var(--ink); margin: 10px 0 0;
}
.kfs-lead { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 16px 0 0; }

/* Boutons */
.kfs-btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--navy-deep); font-weight: 800;
  padding: 16px 26px; border-radius: 12px; font-size: 15px;
  transition: transform .22s, box-shadow .22s;
}
.kfs-btn-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--navy); color: #fff; font-weight: 800;
  padding: 16px 26px; border-radius: 12px; font-size: 15px; transition: transform .22s;
}
.kfs-btn-outline-dark {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; border: 1.5px solid var(--line); color: var(--ink);
  font-weight: 700; padding: 14px 26px; border-radius: 12px; font-size: 15px; transition: all .22s;
}
.kfs-btn-outline-light {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.35); color: #fff;
  font-weight: 700; padding: 14px 26px; border-radius: 12px; font-size: 15px; transition: background .22s;
}

/* Formulaire */
.kfs-field-label { display: grid; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.kfs-input {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: var(--r); background: var(--paper); font-size: 14px; color: var(--ink); outline: none;
}
.kfs-input:focus { border-color: var(--gold); }

/* Pied de page */
.kfs-foot-head { font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.kfs-foot-link { display: block; font-size: 13.5px; line-height: 1.5; padding: 6px 0; color: rgba(255,255,255,.72); transition: color .2s; }
.kfs-foot-link:hover { color: var(--gold); }

/* ---------- En-tête / navigation ---------- */
.kfs-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.kfs-navlink {
  padding: 9px 13px; border-radius: 999px; color: var(--head-on-header);
  transition: background .2s, color .2s; display: inline-flex; align-items: center;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
}
.kfs-navlink:hover { background: var(--navy-soft); color: var(--navy); }
/* État actif selon la page courante (body[data-page]) */
body[data-page="home"]     .kfs-navlink[data-nav="home"],
body[data-page="about"]    .kfs-navlink[data-nav="about"],
body[data-page="services"] .kfs-navlink[data-nav="services"],
body[data-page="sectors"]  .kfs-navlink[data-nav="sectors"],
body[data-page="nacelle"]  .kfs-navlink[data-nav="nacelle"],
body[data-page="why"]      .kfs-navlink[data-nav="why"],
body[data-page="blog"]     .kfs-navlink[data-nav="blog"],
body[data-page="contact"]  .kfs-navlink[data-nav="contact"] {
  background: var(--navy-soft); color: var(--navy);
}

/* ---------- Menu mobile plein écran ---------- */
/* Ouverture animée : fondu de l'overlay + révélation décalée des liens.
   Toujours présent dans le DOM (visibility) pour permettre les transitions. */
.kfs-mobile {
  position: fixed; inset: 0; z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility 0s linear .4s;
}
.kfs-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .4s ease, visibility 0s;
}
/* Panneau image : léger fondu + dézoom */
.kfs-mobile .kfs-menupanel {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .6s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.kfs-mobile.is-open .kfs-menupanel { opacity: 1; transform: scale(1); }
/* Liens de navigation : apparition décalée depuis la gauche */
.kfs-mobile .kfs-menulink {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.kfs-mobile.is-open .kfs-menulink { opacity: 1; transform: none; }
.kfs-mobile.is-open .kfs-menulink:nth-child(1) { transition-delay: .08s; }
.kfs-mobile.is-open .kfs-menulink:nth-child(2) { transition-delay: .13s; }
.kfs-mobile.is-open .kfs-menulink:nth-child(3) { transition-delay: .18s; }
.kfs-mobile.is-open .kfs-menulink:nth-child(4) { transition-delay: .23s; }
.kfs-mobile.is-open .kfs-menulink:nth-child(5) { transition-delay: .28s; }
.kfs-mobile.is-open .kfs-menulink:nth-child(6) { transition-delay: .33s; }
.kfs-mobile.is-open .kfs-menulink:nth-child(7) { transition-delay: .38s; }
.kfs-mobile.is-open .kfs-menulink:nth-child(8) { transition-delay: .43s; }
/* Survol des liens (l'état ouvert neutralise le décalage d'entrée) */
.kfs-menulink:hover .kfs-menulabel { transform: translateX(14px); color: var(--gold); }
.kfs-menulink:hover .kfs-menuarrow { opacity: 1; transform: translateX(0); }
/* Respect de la préférence « animations réduites » */
@media (prefers-reduced-motion: reduce) {
  .kfs-mobile, .kfs-mobile .kfs-menupanel, .kfs-mobile .kfs-menulink { transition-duration: .01ms; }
  .kfs-mobile .kfs-menupanel, .kfs-mobile.is-open .kfs-menulink { transform: none; }
}
/* état actif du lien de menu mobile */
body[data-page="home"]     .kfs-menulink[data-nav="home"]     .kfs-menulabel,
body[data-page="about"]    .kfs-menulink[data-nav="about"]    .kfs-menulabel,
body[data-page="services"] .kfs-menulink[data-nav="services"] .kfs-menulabel,
body[data-page="sectors"]  .kfs-menulink[data-nav="sectors"]  .kfs-menulabel,
body[data-page="nacelle"]  .kfs-menulink[data-nav="nacelle"]  .kfs-menulabel,
body[data-page="why"]      .kfs-menulink[data-nav="why"]      .kfs-menulabel,
body[data-page="blog"]     .kfs-menulink[data-nav="blog"]     .kfs-menulabel,
body[data-page="contact"]  .kfs-menulink[data-nav="contact"]  .kfs-menulabel { color: var(--gold); }

/* ---------- Mega menu ---------- */
.kfs-mega { display: none; }
.kfs-mega.is-open { display: block; }

/* ---------- Zoom photo au survol ---------- */
.kfs-photocard:hover .kfs-zoom { transform: scale(1.07); }

/* ---------- Révélation au scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =========================================================================
   Composants — barre supérieure, en-tête
   ========================================================================= */
.kfs-topbar { background: var(--navy-deep); color: rgba(255,255,255,.82); font-family: var(--font-body); font-size: 12.5px; letter-spacing: .2px; }
.kfs-topbar__inner { min-height: var(--topbar-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.kfs-topbar__group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.kfs-topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.kfs-topbar__phone { opacity: .8; }
.kfs-topbar__hours { display: flex; align-items: center; gap: 8px; }
.kfs-topbar__hours-text { opacity: .82; }
.kfs-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.kfs-topmail { display: none; align-items: center; gap: 7px; }

.kfs-header__inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.kfs-header__actions { display: flex; align-items: center; gap: 12px; }
.kfs-brand { display: flex; align-items: center; gap: 11px; }
.kfs-brand__logo { height: 52px; width: auto; display: block; }
.kfs-brand__mark {
  width: 42px; height: 42px; border-radius: calc(var(--r) + 2px);
  background: var(--gold); color: var(--navy-deep); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 19px;
  box-shadow: 0 6px 16px rgba(198,161,91,.35);
}
.kfs-brand__text { line-height: 1.05; }
.kfs-brand__name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--head-on-header); letter-spacing: .2px; }
.kfs-brand__dot { color: var(--gold); }
.kfs-brand__tagline { display: block; font-family: var(--font-body); font-size: 9.5px; letter-spacing: 2.6px; text-transform: uppercase; color: var(--sub-on-header); }
.kfs-headcta {
  display: none; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-body); font-weight: 800; font-size: 13.5px;
  padding: 12px 20px; border-radius: 999px; letter-spacing: .2px;
  box-shadow: 0 8px 20px rgba(198,161,91,.32); transition: transform .25s, box-shadow .25s;
}
.kfs-headcta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(198,161,91,.45); }
.kfs-burger {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 9px 9px 18px; background: var(--navy); color: #fff; border: none; border-radius: 999px;
  font-family: var(--font-body); font-weight: 800; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  transition: transform .25s;
}
.kfs-burger:hover { transform: translateY(-2px); }
.kfs-burger__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); }
.kfs-burger__bars { display: block; width: 15px; height: 2px; background: var(--navy-deep); box-shadow: 0 5px 0 var(--navy-deep), 0 -5px 0 var(--navy-deep); }

.kfs-main { font-family: var(--font-body); color: var(--ink); }

/* =========================================================================
   Composants — menu mobile plein écran
   ========================================================================= */
.kfs-menuwrap { position: fixed; inset: 0; background: var(--navy-deep); color: #fff; display: grid; grid-template-columns: 1.25fr .75fr; overflow: hidden; }
.kfs-menuglow { position: absolute; right: 32%; top: -140px; width: 420px; height: 420px; border-radius: 50%; background: rgba(198,161,91,.14); filter: blur(10px); pointer-events: none; }
.kfs-menucol { position: relative; display: flex; flex-direction: column; padding: 26px clamp(24px,5vw,72px); }
.kfs-menuhead { display: flex; align-items: center; justify-content: space-between; }
.kfs-menubrand { font-family: var(--font-head); font-weight: 700; font-size: 22px; }
.kfs-menubrand__dot { color: var(--gold); }
.kfs-menubrand__sub { font-family: var(--font-body); font-size: 10px; letter-spacing: 2.6px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-left: 6px; }
.kfs-menuclose {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 1px solid rgba(255,255,255,.25); color: #fff;
  padding: 9px 9px 9px 18px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 800; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
}
.kfs-menuclose__icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; font-size: 16px; }
.kfs-menunav { margin: auto 0; display: flex; flex-direction: column; }
.kfs-menulink { display: flex; align-items: center; gap: 18px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.kfs-menunum { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--gold); width: 34px; flex: none; letter-spacing: 1px; }
.kfs-menulabel { font-family: var(--font-head); font-weight: 600; font-size: clamp(30px,4.4vw,52px); line-height: 1.06; letter-spacing: -.5px; transition: transform .3s, color .3s; }
.kfs-menuarrow { margin-left: auto; color: var(--gold); font-size: 22px; opacity: 0; transform: translateX(-10px); transition: opacity .3s, transform .3s; }
.kfs-menufoot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.kfs-menucta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--font-body); font-weight: 800; font-size: 14px;
  padding: 14px 24px; border-radius: 999px;
}
.kfs-menucontact { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.7; }
.kfs-menupanel { position: relative; overflow: hidden; }
/* background-image posée en ligne : image dynamique, remplacée au survol par le JS. */
.kfs-menupanel__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: background-image .4s; transform: scale(1.04); }
.kfs-menupanel__veil { position: absolute; inset: 0; background: linear-gradient(120deg, var(--navy-deep) 0%, rgba(8,23,34,.45) 45%, rgba(8,23,34,.15) 100%); }
.kfs-menupanel__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px; }
.kfs-menupanel__eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.kfs-menupanel__label { font-family: var(--font-head); font-weight: 700; font-size: 26px; line-height: 1.15; margin-top: 8px; }
.kfs-menubadge {
  position: absolute; top: 26px; right: 26px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.3); backdrop-filter: blur(4px);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700;
}
.kfs-menubadge__dot { width: 7px; height: 7px; border-radius: 50%; background: #3AD07A; }

/* =========================================================================
   Composants — pied de page et boutons flottants
   ========================================================================= */
.kfs-footer { position: relative; background: var(--navy-deep); color: rgba(255,255,255,.72); font-family: var(--font-body); margin-top: 80px; }
.kfs-footer__wave { position: absolute; left: 0; right: 0; top: 0; transform: translateY(-99%); line-height: 0; pointer-events: none; }
.kfs-footer__wave svg { display: block; }
.kfs-footer__inner { padding-block: 56px 26px; }
.kfs-footgrid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 38px; }
.kfs-footbrand { display: flex; align-items: center; gap: 11px; }
.kfs-footbrand__logo { height: 56px; width: auto; display: block; }
.kfs-footbrand__mark {
  width: 40px; height: 40px; border-radius: calc(var(--r) + 2px);
  background: var(--gold); color: var(--navy-deep); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
}
.kfs-footbrand__name { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: #fff; }
.kfs-footbrand__text { font-size: 13.5px; line-height: 1.7; margin: 16px 0 18px; max-width: 320px; }
.kfs-footbadge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: #fff;
}
.kfs-footbadge__icon { color: var(--gold); }
.kfs-foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.kfs-foot-social {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  font-size: 14px; color: #fff; transition: background .2s, color .2s;
}
.kfs-foot-social:hover { background: var(--gold); color: var(--navy-deep); }
.kfs-foot-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  background: var(--gold); color: var(--navy-deep);
  font-weight: 800; font-size: 13px; padding: 11px 18px; border-radius: 999px;
}
.kfs-footbottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 12.5px;
}
.kfs-footlegal { display: flex; gap: 20px; }
.kfs-footlegal a { opacity: .8; }

.kfs-whatsapp {
  position: fixed; right: 22px; bottom: 88px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; font-size: 26px;
  box-shadow: 0 12px 26px rgba(37,211,102,.45); animation: kfsPulse 2.4s infinite;
}
/* display piloté par le JS au défilement (none ↔ grid). */
.kfs-totop {
  display: none; position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; place-items: center; font-size: 18px;
  box-shadow: 0 12px 26px rgba(8,41,61,.35);
}
.kfs-stickycta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  background: var(--navy); padding: 12px 16px; box-shadow: 0 -8px 24px rgba(0,0,0,.2);
}
.kfs-stickycta__link {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--gold); color: var(--navy-deep);
  font-weight: 800; font-size: 15px; padding: 14px; border-radius: 999px;
}

/* =========================================================================
   Utilitaires transverses
   ========================================================================= */
/* Image de fond dynamique : l'URL arrive par --kfs-bg posée en ligne (contenu éditable). */
.kfs-bg { background-image: var(--kfs-bg); background-size: cover; background-position: center; background-repeat: no-repeat; }
/* Bandes de section alternées (services, secteurs). */
.kfs-band { background: var(--paper); border-top: 1px solid var(--line); }
.kfs-band--alt { background: var(--cream); }
.kfs-order2 { order: 2; }

/* Boutons pilule */
.kfs-pill { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px; padding: 16px 28px; border-radius: 999px; }
.kfs-pill--gold { background: var(--gold); color: var(--navy-deep); }
.kfs-pill--ghost { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28); color: #fff; font-weight: 700; }
.kfs-pill--navy { background: var(--navy); color: #fff; transition: transform .2s; }
.kfs-pill--navy:hover { transform: translateY(-2px); }
.kfs-pill--sm { gap: 8px; margin-top: 24px; font-size: 14px; padding: 13px 22px; }

/* Liens « en savoir plus » */
.kfs-morelink { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 13px; color: var(--navy); }
.kfs-morelink__arrow { color: var(--gold); }
.kfs-textlink { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 800; font-size: 14px; color: var(--navy); }
.kfs-textlink__arrow { color: var(--gold); }

/* Listes à coches et étiquettes */
.kfs-checklist { display: grid; gap: 9px; margin: 22px 0 0; }
.kfs-checklist__item { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.kfs-checklist__mark { color: var(--gold); font-weight: 800; margin-top: 1px; }
.kfs-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.kfs-tag { background: var(--navy-soft); color: var(--navy); font-size: 12.5px; font-weight: 700; padding: 7px 14px; border-radius: 999px; }

/* Pastille d'icône dorée */
.kfs-bigicon {
  display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: var(--r);
  background: var(--gold); color: var(--navy-deep); font-size: 26px; margin-bottom: 16px;
}

/* =========================================================================
   Composants — hero secondaire (pages internes)
   ========================================================================= */
.kfs-subhero { position: relative; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--line); }
.kfs-subhero__blob { position: absolute; border-radius: 50%; }
.kfs-subhero__blob--navy { right: -60px; top: -70px; width: 320px; height: 320px; background: var(--navy-soft); opacity: .55; }
.kfs-subhero__blob--gold { right: 130px; bottom: -50px; width: 120px; height: 120px; background: var(--gold-soft); opacity: .5; }
.kfs-subhero__inner { position: relative; padding-block: 46px 54px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.kfs-subhero__eyebrow { margin-top: 18px; }
.kfs-subhero__title { font-size: clamp(32px,4.4vw,52px); margin-top: 12px; max-width: 15ch; }
.kfs-subhero__text { font-size: 16.5px; line-height: 1.65; color: var(--muted); max-width: 520px; margin: 16px 0 0; }
.kfs-subhero__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/12; box-shadow: 0 24px 50px rgba(8,41,61,.14); }
.kfs-subhero__photo .kfs-zoom { position: absolute; inset: 0; transition: transform .5s; }
.kfs-crumb { font-family: var(--font-body); font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.kfs-crumb__home { font-weight: 600; }
.kfs-crumb__sep { color: var(--gold); }
.kfs-crumb__current { color: var(--ink); font-weight: 700; }
.kfs-statcard {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--paper); border-radius: var(--r); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 24px rgba(8,41,61,.16);
}
.kfs-statcard__value { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--navy); line-height: 1; }
.kfs-statcard__label { font-size: 12px; font-weight: 600; color: var(--muted); line-height: 1.25; max-width: 110px; }

/* Hero « cover » — image pleine largeur, voile sombre, bandeau de chiffres clés */
.kfs-coverhero { position: relative; overflow: hidden; color: #fff; }
.kfs-coverhero__veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,37,48,.94) 0%, rgba(15,37,48,.78) 45%, rgba(23,49,63,.42) 100%); }
.kfs-coverhero__inner { position: relative; padding-top: 54px; }
.kfs-coverhero__crumb { color: rgba(255,255,255,.72); }
.kfs-coverhero__crumb .kfs-crumb__current { color: #fff; }
.kfs-coverhero__eyebrow { margin-top: 26px; color: var(--gold); }
.kfs-coverhero__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px,4.6vw,56px); line-height: 1.12; letter-spacing: -.8px; margin: 14px 0 0; max-width: 16ch; }
.kfs-coverhero__text { font-size: 16.5px; line-height: 1.65; color: rgba(255,255,255,.85); max-width: 560px; margin: 18px 0 0; }
.kfs-coverhero__stats { margin-top: 52px; padding-block: 30px 36px; border-top: 1px solid rgba(255,255,255,.28); display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.kfs-coverhero__stat { display: grid; gap: 9px; align-content: start; }
.kfs-coverhero__stat + .kfs-coverhero__stat { border-left: 1px solid rgba(255,255,255,.28); padding-left: 24px; }
.kfs-coverhero__stat-value { font-family: var(--font-head); font-weight: 700; font-size: 32px; line-height: 1; color: var(--gold); }
.kfs-coverhero__stat-label { font-size: 13.5px; color: rgba(255,255,255,.82); }

/* =========================================================================
   Composants — CTA final
   ========================================================================= */
.kfs-ctasection { padding-block: 0 var(--sy);}
.kfs-ctabox { position: relative; overflow: hidden; background: var(--navy); color: #fff;  padding: 64px 48px; text-align: center; }
.kfs-ctabox__bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(15,37,48,.94) 0%, rgba(15,37,48,.72) 45%, rgba(15,37,48,.45) 100%), var(--kfs-bg);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.kfs-ctabox__body { position: relative; }
.kfs-ctabox__eyebrow { font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.kfs-ctabox__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px,3.6vw,44px); line-height: 1.12; margin: 12px 0 0; }
.kfs-ctabox__text { font-size: 16px; color: rgba(255,255,255,.82); max-width: 560px; margin: 16px auto 30px; line-height: 1.6; }
.kfs-ctabox__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   Composants — zone d'intervention
   ========================================================================= */
.kfs-geo { padding: 90px 0; background: var(--paper); }
.kfs-geo__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: center; }
.kfs-inforows { display: grid; gap: 12px; margin-top: 24px; }
.kfs-inforow { display: flex; align-items: center; gap: 13px; font-size: 14.5px; }
.kfs-inforow__icon {
  width: 40px; height: 40px; flex: none; border-radius: var(--r);
  background: var(--navy-soft); color: var(--navy); display: grid; place-items: center; font-size: 17px;
}
.kfs-inforow__label { display: block; font-weight: 700; color: var(--ink); }
.kfs-inforow__value { display: block; color: var(--muted); font-size: 13.5px; }
.kfs-map {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16/12; background: var(--ph-map); position: relative; display: grid; place-items: center;
}
.kfs-map__pin {
  position: absolute; top: 44%; left: 38%; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 6px rgba(198,161,91,.3); animation: kfsPulse 2s infinite;
}

/* =========================================================================
   Composants — cartes
   ========================================================================= */
/* Carte service : vignette non cliquable, donc sans effet de survol. */
.kfs-svccard { background: transparent; }
.kfs-svccard__media { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; border-radius: var(--r-lg); overflow: hidden; }
.kfs-svccard__icon {
  position: absolute; top: 14px; left: 14px; width: 44px; height: 44px; border-radius: var(--r);
  background: var(--gold); color: var(--navy-deep); display: grid; place-items: center; font-size: 20px;
  box-shadow: 0 8px 18px rgba(198,161,91,.4);
}
.kfs-svccard__body { padding: 18px 2px 0; }
.kfs-svccard__title { font-family: var(--font-head); font-weight: 700; font-size: 20px; margin: 0; color: var(--ink); }
.kfs-svccard__text { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 9px 0 16px; }

/* Carte secteur : photo plein cadre, texte en surimpression sur un voile navy.
   Vignette non cliquable : aucun effet de survol, qui laisserait croire à un lien. */
.kfs-seccard {
  position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r-lg);
}
.kfs-seccard__media { position: absolute; inset: 0; }
.kfs-seccard__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,41,61,.9) 0%, rgba(8,41,61,.45) 42%, rgba(8,41,61,.05) 100%);
}
.kfs-seccard__body { position: absolute; inset: auto 0 0 0; padding: 22px 22px 24px; }
.kfs-seccard__title { font-family: var(--font-head); font-weight: 700; font-size: 21px; line-height: 1.25; color: #fff; margin: 0; }
.kfs-seccard__desc { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.78); margin: 7px 0 0; }
.kfs-seccard__body::before {
  content: ''; display: block; width: 26px; height: 2px; margin-bottom: 14px; background: var(--gold);
}

.kfs-postcard { display: block; transition: transform .3s; }
.kfs-postcard:hover { transform: translateY(-5px); }
.kfs-postcard__media { aspect-ratio: 16/10; display: grid; place-items: center; position: relative; border-radius: var(--r-lg); overflow: hidden; }
.kfs-postcard__cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy-deep);
  font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .5px;
}
.kfs-postcard__body { padding: 20px; }
.kfs-postcard__meta { font-size: 12px; color: var(--muted); }
.kfs-postcard__title { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin: 8px 0 0; color: var(--ink); line-height: 1.3; }
.kfs-postcard__text { font-size: 13.5px; color: var(--muted); margin: 9px 0 12px; line-height: 1.55; }

/* =========================================================================
   Composants — rangées détaillées (services / secteurs)
   ========================================================================= */
.kfs-fullrow { padding-block: 76px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.kfs-fullrow--sec { padding-block: 72px; }
.kfs-fullrow__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 60px rgba(8,41,61,.14); }
.kfs-fullrow__media--svc { aspect-ratio: 4/3; display: grid; place-items: center; position: relative; }
.kfs-fullrow__media--sec { aspect-ratio: 16/11; }
.kfs-fullrow__icon {
  position: absolute; top: 16px; left: 16px; width: 46px; height: 46px; border-radius: var(--r);
  background: var(--gold); color: var(--navy-deep); display: grid; place-items: center; font-size: 22px;
}
.kfs-fullrow__tagline { font-family: var(--font-head); font-style: italic; font-size: 19px; color: var(--navy); margin: 12px 0 0; }

/* =========================================================================
   Composants — formulaire de devis
   ========================================================================= */
.kfs-form { display: grid; gap: 16px; }
.kfs-form__honeypot { position: absolute; left: -9999px; }
.kfs-formrow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kfs-textarea { resize: vertical; }
.kfs-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.kfs-consent__box { margin-top: 2px; }
.kfs-submit {
  background: var(--gold); color: var(--navy-deep); font-weight: 800; font-size: 15px;
  padding: 16px; border: none; border-radius: 999px;
  box-shadow: 0 12px 26px rgba(198,161,91,.32); transition: transform .2s;
}
.kfs-submit:hover { transform: translateY(-2px); }
.kfs-formsent { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 34px 30px; text-align: center; }
.kfs-formsent__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--navy-deep); display: grid; place-items: center;
  font-size: 28px; margin: 0 auto 16px;
}
.kfs-formsent__title { font-family: var(--font-head); font-weight: 700; font-size: 22px; }
.kfs-formsent__text { font-size: 14.5px; color: rgba(255,255,255,.82); margin: 10px 0 0; }
.kfs-formerror { background: #fdecec; color: #c0392b; border-radius: var(--r); padding: 12px 16px; font-size: 14px; margin: 0 0 16px; }

/* =========================================================================
   Accueil
   ========================================================================= */
.kfs-gold { color: var(--gold); }
.kfs-eyebrow--center { justify-content: center; }
.kfs-eyebrow__rule { width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.kfs-h2--center { text-align: center; }
.kfs-h2--tight { margin-top: 8px; }
.kfs-h2--tight6 { margin-top: 6px; }
.kfs-btn--spaced { margin-top: 24px; }
.kfs-btn-gold:hover { transform: translateY(-3px); }
.kfs-btn-dark:hover { transform: translateY(-2px); }
.kfs-btn-outline-dark:hover { border-color: var(--gold); color: var(--navy); }
.kfs-pill--lift { transition: transform .25s; padding: 15px 28px; }
.kfs-pill--lift:hover { transform: translateY(-3px); }

/* Entête de section centré et rangée titre + lien */
.kfs-sectionhead { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.kfs-headrow { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.kfs-headrow--wide { margin-bottom: 34px; }
.kfs-headrow__link { font-weight: 800; font-size: 14px; color: var(--navy); }
.kfs-headrow__arrow { color: var(--gold); }
.kfs-cardgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* Rythme vertical des sections ------------------------------------------
   Chaque section porte un espace haut et bas d'une unité (--sy). Deux
   sections de même fond qui se suivent ne doivent pas cumuler leurs deux
   espaces : la seconde annule le sien en haut. Quand le fond change, les
   deux espaces se voient — l'un dans la couleur sortante, l'autre dans la
   couleur entrante — ce qui est le comportement recherché. */
.kfs-sec { padding-block: var(--sy); }
.kfs-sec--paper { background: var(--paper); }
.kfs-sec--cream { background: var(--cream); }
.kfs-sec--paper + .kfs-sec--paper,
.kfs-sec--cream + .kfs-sec--cream,
.kfs-sec--navy + .kfs-sec--navy { padding-top: 0; }

/* Fond sombre : plutôt que de réécrire chaque couleur de texte, on redéfinit
   les jetons du thème dans la portée de la section. Tout ce qu'elle contient
   (titres, textes secondaires, filets) suit automatiquement. */
.kfs-sec--navy {
  background: var(--navy);
  --ink: #ffffff;
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.16);
  --navy-soft: rgba(255,255,255,.10);
  --paper: rgba(255,255,255,.06);
  --cream: rgba(255,255,255,.06);
  color: #fff;
}
/* Sur fond sombre, le bouton foncé se confondrait avec la section. */
.kfs-sec--navy .kfs-btn-dark { background: var(--gold); color: var(--navy-deep); }
.kfs-sec--navy .kfs-morelink,
.kfs-sec--navy .kfs-headrow__link,
.kfs-sec--navy .kfs-textlink { color: #fff; }

/* Hero */
.kfs-hero { background: var(--cream); color: var(--ink); border-bottom: 1px solid var(--line); }
/* Le hero remplit l'écran sous la barre supérieure et l'en-tête.
   svh plutôt que vh : sur mobile, vh ignore la barre d'URL du navigateur. */
.kfs-herofull {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  min-height: calc(100svh - var(--topbar-h) - var(--header-h));
}
/* Connecté à l'admin, la barre WordPress mange le haut de l'écran. */
.admin-bar .kfs-herofull { min-height: calc(100svh - var(--topbar-h) - var(--header-h) - 32px); }
@media (max-width: 782px) {
  .admin-bar .kfs-herofull { min-height: calc(100svh - var(--topbar-h) - var(--header-h) - 46px); }
}
.kfs-hero__text { display: flex; flex-direction: column; justify-content: center; padding: 72px clamp(24px,5.5vw,96px); }
.kfs-hero__title { font-size: clamp(38px,4.4vw,60px); margin: 22px 0 0; }
.kfs-hero__lead { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 480px; margin: 22px 0 0; }
.kfs-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.kfs-hero__badges { display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.kfs-badge { display: flex; align-items: center; gap: 10px; }
.kfs-badge__icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-soft); color: var(--navy); display: grid; place-items: center; font-size: 14px;
}
.kfs-badge__label { font-size: 12.5px; font-weight: 600; line-height: 1.3; color: var(--ink); }
/* Une couche par image ; au-delà d'une seule, le JS les fait se succéder en fondu.
   Durées pilotées depuis l'admin via --kfs-hero-fade / --kfs-hero-zoom. */
.kfs-herofull-img { position: relative; overflow: hidden; }
.kfs-heroslide {
  position: absolute; inset: 0;
  background-image: linear-gradient(160deg, rgba(255,255,255,.02), rgba(0,0,0,.14)), var(--kfs-bg);
  background-size: cover; background-position: center 20%; background-repeat: no-repeat;
  opacity: 0; transform: scale(1);
  transition: opacity var(--kfs-hero-fade, 1.2s) ease;
}
.kfs-heroslide.is-active { opacity: 1; }
/* Le zoom n'a de sens qu'en diaporama : une image seule reste statique. */
.is-slideshow .kfs-heroslide.is-active { animation: kfsHeroZoom var(--kfs-hero-zoom, 6.2s) linear forwards; }
/* L'image qui s'efface perd son animation : on fige son échelle de fin, sinon
   elle se dézoome d'un coup pendant le fondu sortant. */
.kfs-heroslide.is-leaving { opacity: 0; transform: scale(1.12); }
@keyframes kfsHeroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) {
  .kfs-heroslide { transition: none; }
  .is-slideshow .kfs-heroslide.is-active { animation: none; }
  .kfs-heroslide.is-leaving { transform: none; }
}
.kfs-hero__chip {
  position: absolute; left: 22px; bottom: 22px;
  background: var(--paper); border-radius: var(--r-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: 0 18px 40px rgba(8,41,61,.28);
}
.kfs-hero__chip-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-soft); color: var(--navy); display: grid; place-items: center; font-weight: 800;
}
.kfs-hero__chip-title { display: block; font-weight: 800; font-size: 14px; }
.kfs-hero__chip-sub { display: block; font-size: 12px; color: var(--muted); }

/* Engagements */
.kfs-engagements__grid {
  position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3,1fr);
  padding: 0 22px; gap: 18px; margin-top: 32px;
  box-shadow: 0px 10px 30px rgba(0,0,0,.1);
  border-radius: var(--r-lg); background: #fff; overflow: hidden;
}
.kfs-engagement { padding: 26px 28px 26px 0; display: flex; align-items: center; gap: 16px; }
.kfs-engagement__icon {
  width: 52px; height: 52px; flex: none; border-radius: var(--r);
  background: var(--navy-soft); color: var(--navy); display: grid; place-items: center; font-size: 22px;
}
.kfs-engagement__title { display: block; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); }
.kfs-engagement__sub { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }

/* Services */
.kfs-services__more { text-align: center; margin-top: 40px; }

/* Avant / après */
.kfs-ba__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: center; }
.kfs-ba__stats { display: flex; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.kfs-ba__stat-value { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--navy); }
.kfs-ba__stat-label { font-size: 13px; color: var(--muted); }
.kfs-compare {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 50px rgba(8,41,61,.14); display: grid; grid-template-columns: 1fr 1fr;
}
.kfs-compare__pane { position: relative; aspect-ratio: 4/5; display: grid; place-items: end center; padding-bottom: 16px; }
.kfs-compare__pane--after { filter: saturate(1.05); }
.kfs-compare__tag { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.kfs-compare__tag--before { background: rgba(8,41,61,.85); color: #fff; }
.kfs-compare__tag--after { background: var(--gold); color: var(--navy-deep); }
.kfs-compare__rule { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); }
.kfs-compare__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--navy); display: grid; place-items: center; font-size: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* Secteurs */
.kfs-sectors__more { display: flex; justify-content: center; margin-top: 46px; }

/* Différenciation */
.kfs-diff__head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 44px; }
.kfs-diff__text { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; }
.kfs-diff__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.kfs-diffcard { position: relative; padding: 26px 4px 6px; border-top: 2px solid var(--line); transition: transform .25s; }
.kfs-diffcard:hover { transform: translateY(-5px); }
.kfs-diffcard__top { display: flex; align-items: center; justify-content: space-between; }
.kfs-diffcard__num { font-family: var(--font-head); font-weight: 800; font-size: 38px; color: var(--gold); line-height: 1; }
.kfs-diffcard__rule { width: 34px; height: 3px; background: var(--gold); border-radius: 2px; }
.kfs-diffcard__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: 18px 0 8px; color: var(--ink); line-height: 1.28; }
.kfs-diffcard__sub { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Bannière expertise technique */
.kfs-expertise { position: relative; display: flex; align-items: center; }
.kfs-expertise__bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(100deg, var(--navy) 0%, rgba(23,49,63,.62) 52%, rgba(23,49,63,.18) 100%), var(--kfs-bg);
  background-size: cover; background-position: center;
}
/* Sans image choisie : motif rayé de repli. */
.kfs-expertise__bg--pattern {
  background-image: linear-gradient(100deg, var(--navy) 0%, rgba(23,49,63,.62) 52%, rgba(23,49,63,.18) 100%),
                    repeating-linear-gradient(135deg, color-mix(in srgb,var(--navy) 90%,#000) 0 24px, var(--navy) 24px 48px);
}
.kfs-expertise__inner { position: relative; color: #fff; flex: 1; }
.kfs-expertise__eyebrow { font-family: var(--font-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.kfs-expertise__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px,3vw,34px); line-height: 1.15; margin: 10px 0 12px; }
.kfs-expertise__text { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.86); margin: 0 0 20px; max-width: 470px; }
.kfs-expertise__cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--navy-deep);
  font-weight: 800; font-size: 14px; padding: 14px 24px; border-radius: 12px;
}

/* Galerie */
.kfs-gallerysection { overflow: hidden; }
.kfs-galcard {
  cursor: pointer; flex: 0 0 auto; width: 310px; height: 400px; position: relative;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 12px 30px rgba(8,41,61,.12);
}
.kfs-galcard__img { position: absolute; inset: 0; transition: transform .5s; }
.kfs-galcard__veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,41,61,.82) 8%, rgba(8,41,61,.1) 48%, transparent); }
.kfs-galcard__cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy-deep);
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
  padding: 5px 11px; border-radius: 999px;
}
.kfs-galcard__caption { position: absolute; left: 18px; right: 16px; bottom: 18px; color: #fff; }
.kfs-galcard__title { font-family: var(--font-head); font-size: 19px; font-weight: 700; line-height: 1.25; }

/* Chiffres clés */
.kfs-statgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.kfs-statcell { text-align: center; padding: 10px 16px; border-left: 1px solid var(--line); }
.kfs-statcell__value { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px,4vw,52px); color: var(--navy); line-height: 1; }
.kfs-statcell__label { font-size: 13.5px; font-weight: 600; color: var(--muted); margin-top: 8px; letter-spacing: .2px; }

/* Témoignages */
.kfs-testi { max-width: 960px; margin: 0 auto; padding: 0 24px; text-align: center; }
.kfs-testi__body { margin-top: 34px; padding: 10px 0 0; position: relative; }
.kfs-testi__mark { font-family: var(--font-head); font-size: 96px; line-height: 0; color: var(--gold-soft); position: relative; top: 44px; }
.kfs-testi__quote {
  position: relative; font-family: var(--font-head); font-style: italic; font-weight: 500;
  font-size: clamp(20px,2.4vw,27px); line-height: 1.5; color: var(--ink); margin: 0;
}
.kfs-testi__author { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; }
.kfs-testi__initials {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-soft); color: var(--navy); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
}
/* Photo de l'auteur : l'URL est posée en ligne (PHP au chargement, JS au
   changement de slide) ; la pastille garde son gabarit rond. */
.kfs-testi__initials.has-avatar {
  background-color: transparent;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.kfs-testi__id { text-align: left; }
.kfs-testi__name { display: block; font-weight: 800; font-size: 15px; color: var(--ink); }
.kfs-testi__role { display: block; font-size: 13px; color: var(--muted); }
.kfs-testi__nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 26px; }
.kfs-testi__btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper); color: var(--navy); font-size: 16px;
}
/* width/background repris en ligne par le JS à chaque changement de slide. */
.kfs-testi__dot { width: 9px; height: 9px; border-radius: 999px; border: none; background: var(--line); transition: width .25s; }
.kfs-testi__dot.is-active { width: 22px; background: var(--gold); }

/* Aperçu blog */
.kfs-previewcard__media { aspect-ratio: 16/10; display: grid; place-items: center; border-radius: var(--r-lg); overflow: hidden; }
.kfs-previewcard__body { padding: 16px 2px 0; }
.kfs-previewcard__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gold);
}
.kfs-previewcard__read { color: var(--muted); font-weight: 500; text-transform: none; letter-spacing: 0; }
.kfs-previewcard__title { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin: 10px 0 0; color: var(--ink); line-height: 1.3; }
.kfs-previewcard__text { font-size: 13.5px; color: var(--muted); margin: 9px 0 0; line-height: 1.55; }

/* =========================================================================
   Pages internes — blocs communs
   ========================================================================= */
.kfs-sectionhead--sm { max-width: 600px; margin-bottom: 44px; }
.kfs-centerhead { text-align: center; margin-bottom: 38px; }
.kfs-centerhead--sm { margin-bottom: 34px; }
.kfs-richtext { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 16px 0 0; }
.kfs-richtext p + p { margin-top: 14px; }
.kfs-article-content { font-family: var(--font-body); font-size: 16.5px; line-height: 1.8; color: var(--ink); }

/* Cartes à filet supérieur (approche, sécurité) */
.kfs-topcard { padding: 26px 4px 6px; border-top: 2px solid var(--line); transition: transform .25s; }
.kfs-topcard:hover { transform: translateY(-5px); }
.kfs-topcard--gold { padding: 26px 4px 4px; border-top-color: var(--gold); }
.kfs-topcard__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: var(--r);
  background: var(--gold); color: var(--navy-deep); font-size: 22px; margin-bottom: 16px;
}
.kfs-topcard__title { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin: 0 0 8px; color: var(--ink); }
.kfs-topcard__title--lg { font-size: 20px; }
.kfs-topcard__text { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.kfs-topcard__text--lg { font-size: 14px; }

/* Accordéons FAQ */
.kfs-faq { display: grid; gap: 12px; }
.kfs-faq__item { border-bottom: 1px solid var(--line); }
.kfs-faq__item--boxed { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.kfs-faq__q {
  width: 100%; text-align: left; background: transparent; border: none; padding: 20px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink);
}
.kfs-faq__q--boxed { padding: 20px 22px; }
.kfs-faq__sign { color: var(--gold); font-size: 22px; flex: none; }
.kfs-faq__a { padding: 0 4px 22px; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.kfs-faq__a--boxed { padding: 0 22px 22px; }

/* =========================================================================
   Page — À propos
   ========================================================================= */
.kfs-about-pres__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: center; }
.kfs-about-pres__photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 30px 60px rgba(8,41,61,.14); }
.kfs-mission {
  background: var(--navy); color: #fff; border-radius: var(--r-lg);
  padding: 52px 48px; text-align: center; position: relative; overflow: hidden;
}
.kfs-mission__pattern { position: absolute; inset: 0; background: var(--ph-dark); opacity: .28; }
.kfs-mission__body { position: relative; }
.kfs-mission__text {
  font-family: var(--font-head); font-style: italic; font-weight: 500;
  font-size: clamp(22px,2.8vw,32px); line-height: 1.4; margin: 16px 0 0;
}
.kfs-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.kfs-about-pos__inner {
  border-top: 2px solid var(--line); padding: 36px 0 0;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 34px; align-items: start;
}
.kfs-about-pos__text { font-size: 16.5px; line-height: 1.7; color: var(--muted); margin: 0; }

/* =========================================================================
   Page — Services
   ========================================================================= */
.kfs-table { overflow: hidden; border-top: 2px solid var(--navy); }
.kfs-table__head { display: grid; grid-template-columns: 1.4fr 1fr 1fr; background: var(--navy); color: #fff; font-weight: 700; font-size: 14px; }
.kfs-table__cell { padding: 18px 22px; }
.kfs-table__cell--center { text-align: center; }
.kfs-table__cell--hl { background: rgba(255,255,255,.06); }
.kfs-table__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-top: 1px solid var(--line); font-size: 14px; }
.kfs-table__label { padding: 16px 22px; font-weight: 600; color: var(--ink); }
.kfs-table__value { padding: 16px 22px; text-align: center; color: var(--muted); }
.kfs-table__value--strong { color: var(--navy); font-weight: 700; background: var(--navy-soft); }

/* =========================================================================
   Page — Pourquoi nous
   ========================================================================= */
.kfs-why__grid { display: grid; grid-template-columns: .44fr .56fr; gap: 56px; align-items: start; }
.kfs-why__panel {
  position: sticky; top: calc(var(--header-h) + 24px); overflow: hidden;
  background: var(--navy-deep); color: #fff; border-radius: var(--r-lg); padding: 40px 34px;
}
.kfs-why__panel-blob { position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.05); }
.kfs-why__panel-eyebrow { position: relative; color: var(--gold); }
.kfs-why__panel-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px,2.6vw,34px); line-height: 1.18; letter-spacing: -.5px; margin: 14px 0 0; }
.kfs-why__panel-text { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.8); margin: 16px 0 0; }
.kfs-why__photo { position: relative; margin-top: 28px; border-radius: var(--r); overflow: hidden; aspect-ratio: 1/1; }
.kfs-why__photo-veil { position: absolute; inset: 0; background: linear-gradient(rgba(8,23,34,0) 55%, rgba(8,23,34,.82)); }
.kfs-why__photo-stat { position: absolute; left: 20px; right: 20px; bottom: 18px; display: grid; gap: 3px; }
.kfs-why__photo-value { font-family: var(--font-head); font-weight: 800; font-size: 28px; line-height: 1; }
.kfs-why__photo-label { font-size: 12.5px; color: rgba(255,255,255,.85); }
.kfs-why__list { border-bottom: 1px solid var(--line); }
.kfs-why__item { border-top: 1px solid var(--line); padding: 26px 0; display: grid; grid-template-columns: 60px 1fr; column-gap: 20px; align-items: center; }
.kfs-why__num { font-family: var(--font-head); font-weight: 800; font-size: 30px; line-height: 1; color: var(--gold); }
.kfs-why__head { display: flex; align-items: center; gap: 14px; }
.kfs-why__icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--gold-soft); color: var(--navy-deep); display: grid; place-items: center; font-size: 19px;
}
.kfs-why__title { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--ink); }
.kfs-why__desc { grid-column: 2; margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: var(--muted); }
.kfs-versus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.kfs-versus__col { border-top: 2px solid var(--line); padding-top: 8px; }
.kfs-versus__col--gold { border-top-color: var(--gold); }
.kfs-versus__title { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.kfs-versus__title--muted { color: var(--muted); }
.kfs-versus__row {
  display: flex; gap: 11px; align-items: flex-start; padding: 9px 0;
  font-size: 14.5px; color: var(--ink); border-top: 1px solid var(--line);
}
.kfs-versus__row--muted { color: var(--muted); }
.kfs-versus__mark { font-weight: 800; }
.kfs-versus__mark--no { color: #C6553E; }
.kfs-versus__mark--yes { color: var(--gold); }

/* =========================================================================
   Page — Travaux en hauteur
   ========================================================================= */
.kfs-nac__head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 42px; }
.kfs-nac__intro { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; }
.kfs-nac__grid { display: grid; gap: 20px; }
.kfs-grid3.kfs-nac__grid { grid-template-columns: repeat(3,1fr); }
.kfs-grid4.kfs-nac__grid { grid-template-columns: repeat(4,1fr); }
.kfs-naccard { transition: transform .3s; }
.kfs-naccard:hover { transform: translateY(-5px); }
.kfs-naccard__media { aspect-ratio: 16/10; background: var(--ph-photo); display: grid; place-items: center; border-radius: var(--r-lg); overflow: hidden; }
.kfs-naccard__media.kfs-bg { background: var(--kfs-bg) center/cover no-repeat; }
.kfs-naccard__body { padding: 18px 2px 0; }
.kfs-naccard__title { font-family: var(--font-head); font-weight: 700; font-size: 19px; margin: 0 0 6px; color: var(--ink); }
.kfs-naccard__text { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.kfs-stepcard { position: relative; padding: 26px 4px 4px; border-top: 2px solid var(--line); }
.kfs-stepcard__num { font-family: var(--font-head); font-weight: 700; font-size: 40px; color: var(--gold-soft); line-height: 1; }
.kfs-stepcard__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: 8px 0 6px; color: var(--ink); }
.kfs-stepcard__text { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* =========================================================================
   Page — Contact
   ========================================================================= */
.kfs-contact__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: start; }
.kfs-contact__title { margin-bottom: 24px; }
.kfs-contact__infos { display: grid; gap: 14px; align-content: start; }
.kfs-contactrow { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.kfs-contactrow__icon {
  width: 46px; height: 46px; flex: none; border-radius: var(--r);
  background: var(--navy-soft); color: var(--navy); display: grid; place-items: center; font-size: 18px;
}
.kfs-contactrow__label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.kfs-contactrow__value { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.kfs-contact__actions { display: flex; gap: 12px; margin-top: 4px; }
.kfs-contactbtn { flex: 1; text-align: center; color: #fff; font-weight: 800; font-size: 14px; padding: 14px; border-radius: 999px; }
.kfs-contactbtn--wa { background: #25D366; }
.kfs-contactbtn--mail { background: var(--navy); }

/* =========================================================================
   Blog — liste, article, repli
   ========================================================================= */
.kfs-bloglist { padding: 44px 0 90px; background: var(--paper); }
.kfs-blogbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.kfs-blogbar__filters { display: flex; gap: 9px; flex-wrap: wrap; }
/* background/color repris en ligne par le JS au clic sur un filtre. */
.kfs-filter {
  border: 1px solid var(--line); background: var(--cream); color: var(--muted);
  font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: 999px; transition: all .2s;
}
.kfs-filter.is-active { background: var(--navy); color: #fff; }
.kfs-search {
  display: flex; align-items: center; gap: 9px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; color: var(--muted); font-size: 13.5px;
}
.kfs-search__input { border: none; background: transparent; outline: none; color: var(--ink); width: 150px; font-size: 13.5px; }
.kfs-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 44px; }

.kfs-posthero {
  background-color: var(--navy); color: #fff; position: relative; overflow: hidden;
  background-image: var(--kfs-bg);
  background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed;
}
.kfs-posthero__veil { position: absolute; inset: 0; background: rgba(8,41,61,.8); }
.kfs-posthero__inner { position: relative; padding-block: 60px 66px; }
.kfs-posthero__crumb { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,.7); }
.kfs-posthero__cat {
  display: inline-block; margin-top: 16px;
  background: var(--gold); color: var(--navy-deep);
  font-size: 11px; font-weight: 800; padding: 6px 13px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .5px;
}
.kfs-posthero__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px,4vw,48px); line-height: 1.1; margin: 16px 0 14px; }
.kfs-posthero__meta { font-size: 13.5px; color: rgba(255,255,255,.75); }
.kfs-postcover { padding: 0 0 40px; background: var(--paper); }
.kfs-postcover__img {
  border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/8;
  margin-top: -34px; position: relative; z-index: 2; box-shadow: 0 30px 60px rgba(8,41,61,.16);
}
.kfs-postbody { padding: 20px 0 80px; background: var(--paper); }
.kfs-postcta {
  margin: 34px 0; background: var(--navy); color: #fff; border-radius: var(--r-lg);
  padding: 32px 30px; position: relative; overflow: hidden;
}
.kfs-postcta__pattern { position: absolute; inset: 0; background: var(--ph-dark); opacity: .28; }
.kfs-postcta__body { position: relative; }
.kfs-postcta__title { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin-bottom: 8px; }
.kfs-postcta__text { font-size: 14.5px; color: rgba(255,255,255,.82); margin: 0 0 18px; }
.kfs-postcta__link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy-deep);
  font-weight: 800; font-size: 14px; padding: 13px 22px; border-radius: 999px;
}
.kfs-share { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.kfs-share__label { font-size: 13px; font-weight: 700; color: var(--ink); }
.kfs-share__link {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--cream); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 13px; color: var(--navy);
}
.kfs-related { padding: 0 0 90px; background: var(--paper); }
.kfs-related__title { margin-bottom: 28px; }
.kfs-fallback { padding: 70px 0 90px; background: var(--paper); }
.kfs-fallback__article { margin-bottom: 40px; }
.kfs-fallback__content { margin-top: 16px; }
.kfs-fallback__empty { font-size: 16px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (min-width: 980px) {
  .kfs-headcta { display: inline-flex !important; }
  .kfs-heroimg { display: block !important; }
  .kfs-topmail { display: inline-flex !important; }
}
@media (max-width: 860px) {
  .kfs-menuwrap { grid-template-columns: 1fr !important; }
  .kfs-menupanel { display: none !important; }
}
@media (max-width: 979px) {
  :root { --sy: 64px; }
  .kfs-grid3 { grid-template-columns: 1fr 1fr !important; }
  .kfs-grid4 { grid-template-columns: 1fr 1fr !important; }
  .kfs-grid6 { grid-template-columns: repeat(3,1fr) !important; }
  .kfs-footgrid { grid-template-columns: 1fr 1fr !important; }
  .kfs-stickycta { display: block !important; }
  .kfs-split { grid-template-columns: 1fr !important; }
  .kfs-split .kfs-order2 { order: 0 !important; }
  .kfs-article { grid-template-columns: 1fr !important; }
  .kfs-article aside { position: static !important; }
  .kfs-gallery { grid-template-columns: repeat(2,1fr) !important; }
  /* Hero empilé : la colonne image est un div vide (fond CSS). Sans hauteur
     imposée, elle s'effondre à 0 et l'image disparaît. */
  .kfs-herofull { grid-template-columns: 1fr !important; min-height: 0 !important; }
  .kfs-herofull-img { min-height: 500px; }
  .kfs-hero__text { padding-block: 56px; }
  /* Colonnes des sections d'accueil qui restent en grille hors .kfs-split. */
  .kfs-diff__head,
  .kfs-nac__head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .kfs-about-pos__inner { grid-template-columns: 1fr; }
  .kfs-diff__grid,
  .kfs-statgrid,
  .kfs-steps { grid-template-columns: repeat(2,1fr); }
  .kfs-subhero__inner { grid-template-columns: 1fr; }
  .kfs-coverhero__stats { grid-template-columns: repeat(2,1fr); }
  .kfs-coverhero__stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .kfs-why__grid { grid-template-columns: 1fr; gap: 36px; }
  .kfs-why__panel { position: static; }
}
@media (max-width: 720px) {
  :root { --sy: 48px; }
  .kfs-grid3 { grid-template-columns: 1fr !important; }
  .kfs-grid4 { grid-template-columns: 1fr 1fr !important; }
  .kfs-grid6 { grid-template-columns: 1fr 1fr !important; }
  .kfs-footgrid { grid-template-columns: 1fr !important; }
  .kfs-formrow { grid-template-columns: 1fr !important; }
  .kfs-herofull-img { min-height: 500px; }
  .kfs-hero__text { padding-block: 44px; }
  .kfs-hero__badges { gap: 14px 22px; margin-top: 28px; }
  .kfs-hero__actions .kfs-btn-gold,
  .kfs-hero__actions .kfs-btn-outline-dark { flex: 1; justify-content: center; }
  .kfs-engagements__grid { border-bottom: none; }
  .kfs-engagement { padding: 20px 0; border-bottom: 1px solid var(--line); }
  .kfs-ctabox { padding: 44px 24px; }
  .kfs-statcell { border-left: none; }
}

/* ---------- Compatibilité WordPress ---------- */
.screen-reader-text { position:absolute!important; width:1px; height:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }
.alignleft { float:left; margin:0 20px 12px 0; } .alignright { float:right; margin:0 0 12px 20px; } .aligncenter { display:block; margin:0 auto 12px; }
.wp-caption { max-width:100%; } .wp-caption-text { font-size:13px; color:var(--muted); }
.admin-bar .kfs-header { top:32px; } @media (max-width:782px){ .admin-bar .kfs-header { top:46px; } }
.admin-bar .kfs-mobile { top:32px; } @media (max-width:782px){ .admin-bar .kfs-mobile { top:46px; } }
