/*
Theme Name: Vallée Dôme Finitions
Theme URI: https://www.vallee-dome-finitions.fr
Description: Theme sur mesure pour Vallée Dôme Finitions. Entreprise familiale de finitions bâtiment à Clermont-Ferrand depuis 2002, certifiée Qualibat RGE, Eco Artisan et Handibat. Theme autonome, performant, sécurisé.
Author: MYRA Digital Web
Author URI: https://www.vallee-dome-finitions.fr
Version: 3.5.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vdf
*/

/* ==========================================================================
   VDF CHILD THEME - Variables et reset
   ========================================================================== */

:root {
  /* Palette de marque */
  --orange: #E8630A;
  --orange-dark: #C8520A;
  --orange-pale: #FFF3E8;
  --teal: #1B998B;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light: #F5F5F3;
  --cream: #F8F6F2;
  --grey-bg: #F0F0EE;

  /* Texte */
  --text-dark: #1D1D1F;
  --text: #3A3A3C;
  --text-mid: #6E6E73;
  --text-light: #9A9A9F;
  --border: rgba(0, 0, 0, .07);

  /* Polices */
  --font-h: 'Oswald', sans-serif;
  --font-b: 'Source Sans 3', sans-serif;

  /* Espacements responsifs */
  --pad: clamp(1.5rem, 6.5vw, 7rem);
  --sec: clamp(4rem, 9vw, 6.5rem);
  --radius: 12px;

  /* Animation */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset minimal (Astra fournit déjà un reset, on complète seulement) */
*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; height: auto; }

/* Base body : on force les polices au cas où Astra apporte les siennes */
body.vdf-body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: var(--white); }

/* Lien skip (accessibilité) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--orange);
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-family: var(--font-b);
  font-weight: 600;
  z-index: 10001;
  transition: top .3s;
}
.skip-link:focus { top: 1rem; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */

.vdf-topbar {
  background: var(--orange);
  padding: .5rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.vdf-topbar a, .vdf-topbar span {
  color: var(--white);
  font-size: .78rem;
  font-family: var(--font-b);
  font-weight: 600;
  text-decoration: none;
}
.vdf-topbar a:hover { text-decoration: underline; }
.vdf-topbar-left {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   NAV (header principal)
   ========================================================================== */

.vdf-nav {
  position: relative;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.vdf-nav-logo {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.vdf-nav-logo .accent { color: var(--orange); }
.vdf-nav-logo-icon {
  height: 54px;
  width: auto;
  display: flex;
  align-items: center;
}
.vdf-nav-logo-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.vdf-nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.vdf-nav-links a {
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .3s;
}
.vdf-nav-links a:hover,
.vdf-nav-links a.current-menu-item,
.vdf-nav-links a.current-menu-ancestor {
  color: var(--orange);
}
.vdf-nav-links li { list-style: none; }
.vdf-nav-links ul { display: flex; align-items: center; gap: 1.8rem; padding: 0; margin: 0; }

/* CTA "Devis gratuit" dans la nav */
.vdf-nav-cta {
  padding: .7rem 1.6rem !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 8px;
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .04em;
  transition: all .3s var(--ease-luxury);
}
.vdf-nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 99, 10, .35);
}

/* Sous-menu déroulant (Prestations) */
.vdf-nav-links .menu-item-has-children { position: relative; }
.vdf-nav-links .menu-item-has-children > ul.sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease-luxury);
}
.vdf-nav-links .menu-item-has-children:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vdf-nav-links .sub-menu li { width: 100%; }
.vdf-nav-links .sub-menu a {
  display: block;
  padding: .7rem 1.2rem;
  font-size: .75rem;
  white-space: nowrap;
}

/* Burger mobile */
.vdf-ham {
  display: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}
.vdf-ham span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  transition: all .3s;
}
.vdf-ham span:nth-child(1) { top: 2px; }
.vdf-ham span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.vdf-ham span:nth-child(3) { bottom: 2px; }
.vdf-ham.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.vdf-ham.open span:nth-child(2) { opacity: 0; }
.vdf-ham.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 900px) {
  .vdf-ham { display: block; }
  .vdf-nav-links {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transform: translateY(-100%);
    transition: transform .5s ease;
    z-index: 1000;
  }
  .vdf-nav-links.open { transform: translateY(0); }
  .vdf-nav-links ul { flex-direction: column; gap: 1.5rem; }
  .vdf-nav-links .menu-item-has-children > ul.sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    background: transparent;
  }
  .vdf-nav-logo { font-size: 1.1rem; }
  .vdf-nav-logo-icon { height: 36px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.vdf-footer {
  background: var(--text-dark);
  padding: 4rem var(--pad) 1.5rem;
  color: rgba(255, 255, 255, .55);
}
.vdf-footer .ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.vdf-footer .ft-brand {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .8rem;
  letter-spacing: .02em;
}
.vdf-footer .ft-brand .accent { color: var(--orange); }
.vdf-footer .ft-desc {
  font-size: .85rem;
  line-height: 1.7;
  max-width: 290px;
}
.vdf-footer .ft-col h5 {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.vdf-footer .ft-col a, .vdf-footer .ft-col span {
  display: block;
  font-size: .85rem;
  margin-bottom: .55rem;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color .3s;
}
.vdf-footer .ft-col a:hover { color: var(--orange); }
.vdf-footer ul { list-style: none; padding: 0; margin: 0; }
.vdf-footer .ft-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .72rem;
}

/* Réseaux sociaux */
.vdf-footer .ft-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
}
.vdf-footer .ft-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  transition: all .3s var(--ease-luxury);
  margin: 0;
}
.vdf-footer .ft-socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 99, 10, .08);
  transform: translateY(-2px);
}
.vdf-footer .ft-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

@media (max-width: 900px) {
  .vdf-footer .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .vdf-footer .ft-grid { grid-template-columns: 1fr; text-align: center; }
  .vdf-footer .ft-socials { justify-content: center; }
  .vdf-footer .ft-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   BOUTONS FLOTTANTS (appel téléphone + retour en haut)
   ========================================================================== */

.vdf-float-call {
  position: fixed;
  bottom: 6.8rem;
  right: 1.8rem;
  z-index: 99;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #E8630A, #C8520A);
  color: white !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .4s var(--ease-luxury);
  animation: vdfFloatPulse 2.2s ease-in-out infinite;
}
.vdf-float-call:hover { transform: translateY(-3px) scale(1.06); }
.vdf-float-call svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2.2;
}
@keyframes vdfFloatPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(232, 99, 10, .45),
                0 0 0 0 rgba(232, 99, 10, .55),
                0 0 30px 4px rgba(232, 99, 10, .35);
  }
  50% {
    box-shadow: 0 10px 30px rgba(232, 99, 10, .55),
                0 0 0 18px rgba(232, 99, 10, 0),
                0 0 38px 8px rgba(232, 99, 10, .55);
  }
}

.vdf-float-top {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 99;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 99, 10, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease-luxury);
  padding: 0;
}
.vdf-float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vdf-float-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 99, 10, .45);
}
.vdf-float-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .vdf-float-call {
    right: 1rem;
    bottom: 5.8rem;
    width: 56px;
    height: 56px;
  }
  .vdf-float-call svg { width: 24px; height: 24px; }
  .vdf-float-top {
    right: 1rem;
    bottom: 1rem;
    width: 42px;
    height: 42px;
  }
  .vdf-float-top svg { width: 18px; height: 18px; }
}

/* ==========================================================================
   COOKIE BANNER (RGPD)
   ========================================================================== */

.vdf-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(29, 29, 31, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .15);
  display: none;
}
.vdf-cookie-banner.show { display: block; }
.vdf-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.vdf-cookie-text { flex: 1; min-width: 260px; }
.vdf-cookie-text strong {
  display: block;
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .3rem;
  letter-spacing: .02em;
}
.vdf-cookie-text p {
  font-size: .82rem;
  line-height: 1.6;
  opacity: .85;
  margin: 0;
}
.vdf-cookie-actions { display: flex; gap: .6rem; }
.vdf-cookie-btn {
  padding: .7rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.vdf-cookie-btn.accept { background: var(--orange); color: white; }
.vdf-cookie-btn.accept:hover { background: var(--orange-dark); }
.vdf-cookie-btn.refuse {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, .25);
}
.vdf-cookie-btn.refuse:hover { background: rgba(255, 255, 255, .08); }

/* ==========================================================================
   PAGE D'ACCUEIL : hero, stats, services, réalisations, à propos,
   features, témoignages, zone, FAQ, avis Google, CTA
   ========================================================================== */


/* 
   VALLÉE DÔME FINITIONS - Feuille de style globale
   Toutes les pages utilisent ce fichier.
    */

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

:root{
  --orange:#E8630A;
  --orange-light:#F5923A;
  --orange-dark:#C8520A;
  --orange-pale:#FFF3E8;
  --yellow:#F5B731;
  --teal:#1B998B;
  --teal-light:#2CC4B3;
  --blue:#3A86FF;
  --white:#FFFFFF;
  --off-white:#FAFAFA;
  --light:#F5F5F3;
  --cream:#F8F6F2;
  --grey-bg:#EEECEB;
  --text-dark:#1D1D1F;
  --text:#3A3A3C;
  --text-mid:#6E6E73;
  --text-light:#9A9A9F;
  --border:rgba(0,0,0,.07);
  --font-h:'Oswald',sans-serif;
  --font-b:'Source Sans 3',sans-serif;
  --pad:clamp(1.5rem,6.5vw,7rem);
  --sec:clamp(4rem,9vw,6.5rem);
  --radius:12px;
}

html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-b);background:var(--white);color:var(--text);overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{display:block;width:100%;height:100%;object-fit:cover}
a{text-decoration:none;color:inherit}
::selection{background:var(--orange);color:var(--white)}

/*  NAV  */
.topbar{background:var(--orange);padding:.5rem var(--pad);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem}
.topbar a,.topbar span{font-size:.75rem;color:var(--white);font-weight:400;display:flex;align-items:center;gap:.4rem}
.topbar a:hover{text-decoration:underline}

nav{position:sticky;top:0;z-index:1000;background:var(--white);box-shadow:0 2px 20px rgba(0,0,0,.06);padding:0 var(--pad);display:flex;justify-content:space-between;align-items:center;height:70px}
.nav-logo{font-family:var(--font-h);font-size:1.3rem;font-weight:700;color:var(--text-dark);text-transform:uppercase;letter-spacing:.02em;display:flex;align-items:center;gap:.6rem;text-decoration:none}
.nav-logo .accent{color:var(--orange)}
.nav-logo-icon{height:44px;width:auto;display:flex;align-items:center;justify-content:center}
.nav-logo-icon img{height:100%;width:auto;object-fit:contain;display:block}

.nav-links{display:flex;align-items:center;gap:1.8rem}
.nav-links a{font-family:var(--font-h);font-size:.78rem;font-weight:500;text-transform:uppercase;letter-spacing:.06em;color:var(--text-mid);transition:color .3s}
.nav-links a:hover,.nav-links a.active{color:var(--orange)}
.nav-cta{padding:.6rem 1.6rem;background:var(--orange);color:var(--white)!important;border-radius:8px;font-size:.72rem!important;font-weight:600!important;transition:background .3s!important}
.nav-cta:hover{background:var(--orange)!important}

.ham{display:none;cursor:pointer;width:28px;height:18px;position:relative;z-index:1001}
.ham span{display:block;width:100%;height:2px;background:var(--text-dark);position:absolute;left:0;transition:all .3s}
.ham span:first-child{top:0}
.ham span:nth-child(2){top:50%}
.ham span:last-child{bottom:0}
.ham.open span:first-child{top:50%;transform:rotate(45deg)}
.ham.open span:nth-child(2){opacity:0}
.ham.open span:last-child{bottom:50%;transform:rotate(-45deg)}

@media(max-width:900px){
  .ham{display:block}
  .nav-links{position:fixed;inset:0;background:var(--white);flex-direction:column;justify-content:center;gap:1.5rem;transform:translateY(-100%);transition:transform .5s ease;z-index:1000}
  .nav-links.open{transform:translateY(0)}
  .nav-links a{font-size:1rem}
}

/*  BTN COMMUNS  */
.btn-primary{display:inline-flex;align-items:center;gap:.6rem;padding:.85rem 2rem;background:var(--orange);color:var(--white);font-family:var(--font-h);font-size:.8rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;border-radius:8px;border:none;cursor:pointer;transition:all .3s;box-shadow:0 4px 15px rgba(232,99,10,.25)}
.btn-primary:hover{background:var(--orange);transform:translateY(-2px);box-shadow:0 6px 20px rgba(232,99,10,.35)}
.btn-secondary{display:inline-flex;align-items:center;gap:.6rem;padding:.85rem 2rem;background:var(--white);color:var(--text-dark);font-family:var(--font-h);font-size:.8rem;font-weight:500;letter-spacing:.08em;text-transform:uppercase;border:2px solid var(--border);border-radius:8px;transition:all .3s;cursor:pointer}
.btn-secondary:hover{border-color:var(--orange);color:var(--orange)}

/*  SECTION HEADER (commun)  */
.sec-header{text-align:center;max-width:600px;margin:0 auto 3.5rem}
.sec-label{font-family:var(--font-h);font-size:.7rem;font-weight:600;letter-spacing:.25em;text-transform:uppercase;color:var(--orange);margin-bottom:.8rem;display:flex;align-items:center;gap:.8rem;justify-content:center}
.sec-label::before,.sec-label::after{content:'';width:20px;height:2px;background:var(--orange);border-radius:2px}
.sec-title{font-family:var(--font-h);font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:700;color:var(--text-dark);text-transform:uppercase;line-height:1.15}
.sec-title span{color:var(--orange)}
.sec-desc{font-size:.95rem;color:var(--text-mid);font-weight:400;line-height:1.7;margin-top:.8rem}

/*  HERO PAGE INTERNE (différent de la home)  */
.page-hero{position:relative;padding:6rem var(--pad) 4.5rem;background:linear-gradient(135deg,rgba(20,20,20,.78) 0%,rgba(20,20,20,.5) 60%,rgba(232,99,10,.35) 100%),url('assets/img/hero/hero-salon-1.jpg');background-size:cover;background-position:center;text-align:center;overflow:hidden;color:var(--white)}
.page-hero h1{color:var(--white) !important;text-shadow:0 4px 18px rgba(0,0,0,.3)}
.page-hero h1 span{color:#FFC58A !important}
.page-hero .page-hero-sub{color:rgba(255,255,255,.92) !important}
.page-hero .breadcrumb{color:rgba(255,255,255,.78) !important}
.page-hero .breadcrumb a{color:rgba(255,255,255,.92) !important}
.page-hero .breadcrumb a:hover{color:#FFC58A !important}
.page-hero .breadcrumb .sep{color:rgba(255,255,255,.5) !important}
/* Variantes par contexte (image différente selon page) */
body.page-template-page-a-propos .page-hero,
body.page-a-propos .page-hero{background-image:linear-gradient(135deg,rgba(20,20,20,.75) 0%,rgba(20,20,20,.45) 60%,rgba(232,99,10,.3) 100%),url('assets/img/about/devanture-vdf.jpg')}
body.page-template-page-services .page-hero,
body.page-services .page-hero{background-image:linear-gradient(135deg,rgba(20,20,20,.78) 0%,rgba(20,20,20,.5) 60%,rgba(232,99,10,.35) 100%),url('assets/img/hero/hero-peinture.jpg')}
body.page-template-page-service .page-hero{background-image:linear-gradient(135deg,rgba(20,20,20,.75) 0%,rgba(20,20,20,.5) 60%,rgba(232,99,10,.35) 100%),url('assets/img/hero/hero-salon-2.jpg')}
body.post-type-archive-realisation .page-hero,
body.single-realisation .page-hero,
body.tax-type_travaux .page-hero{background-image:linear-gradient(135deg,rgba(20,20,20,.78) 0%,rgba(20,20,20,.5) 60%,rgba(232,99,10,.35) 100%),url('assets/img/hero/hero-chantier.jpg')}
body.page-template-page-contact .page-hero,
body.page-contact .page-hero{background-image:linear-gradient(135deg,rgba(20,20,20,.75) 0%,rgba(20,20,20,.5) 60%,rgba(232,99,10,.35) 100%),url('assets/img/about/devanture-vdf.jpg')}
/* .page-hero::before retiré pour design plus épuré */
.page-hero-inner{position:relative;z-index:1;max-width:850px;margin:0 auto}
.page-hero .breadcrumb{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--font-h);font-size:.7rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:var(--text-mid);margin-bottom:1rem}
.page-hero .breadcrumb a:hover{color:var(--orange)}
.page-hero .breadcrumb .sep{opacity:.4}
.page-hero h1{font-family:var(--font-h);font-size:clamp(2rem,4.5vw,3.5rem);font-weight:700;line-height:1.1;color:var(--text-dark);text-transform:uppercase;letter-spacing:.01em}
.page-hero h1 span{color:var(--orange)}
.page-hero .page-hero-sub{font-size:1.05rem;color:var(--text-mid);font-weight:400;line-height:1.7;margin-top:1.2rem;max-width:600px;margin-left:auto;margin-right:auto}

/*  SERVICES (réutilisable)  */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:1300px;margin:0 auto;align-items:stretch}
.svc-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:all .4s;cursor:pointer;position:relative;display:flex;flex-direction:column;height:100%}
.svc-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(232,99,10,.1);border-color:rgba(232,99,10,.15)}
.svc-card-img{height:200px;overflow:hidden;position:relative;flex-shrink:0}
.svc-card-img img{transition:transform .5s}
.svc-card:hover .svc-card-img img{transform:scale(1.06)}
.svc-card-img::after{content:'';position:absolute;bottom:0;left:0;right:0;height:50%;background:linear-gradient(to top,rgba(0,0,0,.15),transparent)}
.svc-card-body{padding:1.5rem;display:flex;flex-direction:column;flex:1}
.svc-card-icon{width:44px;height:44px;background:var(--orange);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:1.1rem;margin-bottom:1rem;margin-top:-2.8rem;position:relative;z-index:2;box-shadow:0 4px 12px rgba(232,99,10,.25);flex-shrink:0}
.svc-card h3{font-family:var(--font-h);font-size:1.1rem;font-weight:600;color:var(--text-dark);text-transform:uppercase;margin-bottom:.5rem}
.svc-card p{font-size:.85rem;color:var(--text-mid);line-height:1.65;font-weight:400;flex:1}
.svc-card-link{display:inline-flex;align-items:center;gap:.4rem;margin-top:1.2rem;font-family:var(--font-h);font-size:.72rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--orange);transition:all .3s;align-self:flex-start}

@media(max-width:768px){.svc-grid{grid-template-columns:1fr}}

/*  STATS BAND  */
.stats-band{background:var(--orange);padding:3rem var(--pad);display:flex;justify-content:center;gap:clamp(2rem,5vw,5rem);flex-wrap:wrap}
.sband-item{text-align:center;color:var(--white)}
.sband-num{font-family:var(--font-h);font-size:clamp(2rem,4vw,3rem);font-weight:700;line-height:1}
.sband-lbl{font-size:.72rem;font-weight:300;margin-top:.3rem;opacity:.8}

/*  CTA BAND  */
.cta-band{padding:var(--sec) var(--pad);background:linear-gradient(135deg,var(--orange) 0%,var(--orange-dark) 100%);color:var(--white);text-align:center;position:relative;overflow:hidden}
/* .cta-band::before/::after retirés */
.cta-inner{position:relative;z-index:1}
.cta-inner h2{font-family:var(--font-h);font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:700;text-transform:uppercase;line-height:1.2;margin-bottom:1rem}
.cta-inner p{font-size:1rem;font-weight:300;max-width:500px;margin:0 auto;line-height:1.7;opacity:.85}
.cta-btn-white{display:inline-flex;align-items:center;gap:.6rem;margin-top:2rem;padding:1rem 2.5rem;background:var(--white);color:var(--orange);font-family:var(--font-h);font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;border-radius:8px;border:none;cursor:pointer;transition:all .3s;box-shadow:0 4px 15px rgba(0,0,0,.15)}
.cta-btn-white:hover{transform:translateY(-2px);box-shadow:0 6px 25px rgba(0,0,0,.2)}

/*  CONTACT FORM  */
.contact{padding:var(--sec) var(--pad);background:var(--light)}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:3rem;max-width:1200px;margin:3rem auto 0}
.contact-info h3{font-family:var(--font-h);font-size:1.4rem;font-weight:700;color:var(--text-dark);text-transform:uppercase;margin-bottom:1.5rem}
.contact-detail{margin-bottom:1.2rem;display:flex;align-items:start;gap:.8rem}
.contact-detail-icon{width:36px;height:36px;background:var(--orange-pale);border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--orange);font-size:.9rem;flex-shrink:0}
.contact-detail h4{font-family:var(--font-h);font-size:.72rem;font-weight:600;text-transform:uppercase;color:var(--text-dark);letter-spacing:.05em}
.contact-detail p{font-size:.85rem;color:var(--text-mid);font-weight:400;margin-top:.1rem}

.contact-form{background:var(--white);padding:2rem;border-radius:var(--radius);border:1px solid var(--border);box-shadow:0 4px 20px rgba(0,0,0,.04)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.form-field{display:flex;flex-direction:column}
.form-field.full{grid-column:1/-1}
.form-field label{font-family:var(--font-h);font-size:.68rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--text-mid);margin-bottom:.4rem}
.form-field input,.form-field textarea,.form-field select{padding:.75rem 1rem;border:1px solid var(--border);border-radius:8px;font-family:var(--font-b);font-size:.88rem;color:var(--text-dark);outline:none;transition:border-color .3s;background:var(--off-white)}
.form-field input:focus,.form-field textarea:focus,.form-field select:focus{border-color:var(--orange)}
.form-field textarea{min-height:120px;resize:vertical}
.form-submit{width:100%;padding:.85rem;background:var(--orange);color:var(--white);font-family:var(--font-h);font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;border:none;border-radius:8px;cursor:pointer;transition:background .3s;margin-top:.5rem}
.form-submit:hover{background:var(--orange)}

@media(max-width:768px){.contact-grid{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}}

/*  FOOTER  */
footer{background:var(--text-dark);padding:3.5rem var(--pad) 1.5rem;color:rgba(255,255,255,.5)}
.ft-grid{display:grid;grid-template-columns:2fr 1fr 1.2fr;gap:2rem;max-width:1300px;margin:0 auto;padding-bottom:2.5rem;border-bottom:1px solid rgba(255,255,255,.06)}
.ft-brand{font-family:var(--font-h);font-size:1.2rem;font-weight:700;color:var(--white);text-transform:uppercase;margin-bottom:.8rem}
.ft-brand .accent{color:var(--orange)}
.ft-desc{font-size:.78rem;line-height:1.7;max-width:280px}
.ft-col h5{font-family:var(--font-h);font-size:.65rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--orange);margin-bottom:1rem}
.ft-col a{display:block;font-size:.78rem;margin-bottom:.5rem;transition:color .3s}
.ft-col a:hover{color:var(--orange-light)}
.ft-bottom{max-width:1300px;margin:0 auto;padding-top:1.2rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem;font-size:.65rem}
.ft-socials{display:flex;gap:.6rem}
.ft-socials a{width:38px;height:38px;border:1px solid rgba(255,255,255,.12);border-radius:10px;display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.65);transition:all .3s var(--ease-luxury)}
.ft-socials a:hover{border-color:var(--orange);color:var(--orange);background:rgba(232,99,10,.08);transform:translateY(-2px)}
.ft-socials a svg{width:18px;height:18px;fill:currentColor;display:block}

@media(max-width:768px){.ft-grid{grid-template-columns:1fr 1fr}}
@media(max-width:500px){.ft-grid{grid-template-columns:1fr}}

/*  REVEAL  */
.rv{opacity:0;transform:translateY(30px);transition:opacity .6s ease,transform .6s cubic-bezier(.4,0,.2,1)}
.rv.vis{opacity:1;transform:none}

/*  BACK TO TOP  */
/*  CONTENT BLOCKS RÉUTILISABLES  */
.section{padding:var(--sec) var(--pad)}
.section-alt{background:var(--light)}
.section-cream{background:var(--cream)}
.container{max-width:1200px;margin:0 auto}
.container-sm{max-width:850px;margin:0 auto}
.container-xs{max-width:700px;margin:0 auto}

/*  FEATURES GRID (réutilisable)  */
.features{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:3rem}
.feature{padding:1.8rem;background:var(--white);border:1px solid var(--border);border-radius:var(--radius);transition:all .3s}
.feature:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(0,0,0,.05)}
.feature-icon{width:48px;height:48px;border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--white);font-size:1.1rem;margin-bottom:1rem;background:var(--orange)}
.feature h3{font-family:var(--font-h);font-size:1rem;font-weight:600;color:var(--text-dark);text-transform:uppercase;margin-bottom:.5rem;letter-spacing:.02em}
.feature p{font-size:.85rem;color:var(--text-mid);line-height:1.65}
@media(max-width:900px){.features{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.features{grid-template-columns:1fr}}

/*  PROCESS STEPS  */
.process{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:3rem;position:relative}
.step{position:relative;padding:1.5rem;background:var(--white);border:1px solid var(--border);border-radius:var(--radius);text-align:center}
.step-num{position:absolute;top:-18px;left:50%;transform:translateX(-50%);width:40px;height:40px;border-radius:50%;background:var(--orange);color:var(--white);font-family:var(--font-h);font-size:1rem;font-weight:700;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(232,99,10,.3)}
.step h4{font-family:var(--font-h);font-size:.95rem;font-weight:600;color:var(--text-dark);text-transform:uppercase;margin:1rem 0 .5rem}
.step p{font-size:.82rem;color:var(--text-mid);line-height:1.6}
@media(max-width:900px){.process{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.process{grid-template-columns:1fr}}

/*  LISTE PRESTATIONS  */
.prestations-list{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem;margin-top:2rem}
.prestation{display:flex;align-items:start;gap:.8rem;padding:1rem;background:var(--white);border:1px solid var(--border);border-radius:8px;transition:all .3s}
.prestation:hover{border-color:var(--orange);transform:translateX(4px)}
.prestation-check{width:24px;height:24px;border-radius:50%;background:var(--orange-pale);color:var(--orange);display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;flex-shrink:0;margin-top:.1rem}
.prestation-text strong{display:block;font-family:var(--font-h);font-size:.85rem;font-weight:600;color:var(--text-dark);text-transform:uppercase;letter-spacing:.02em;margin-bottom:.2rem}
.prestation-text span{font-size:.8rem;color:var(--text-mid);line-height:1.5}
@media(max-width:768px){.prestations-list{grid-template-columns:1fr}}

/*  FAQ  */
.faq-list{max-width:850px;margin:3rem auto 0}
.faq-item{border-bottom:1px solid var(--border)}
.faq-q{display:flex;justify-content:space-between;align-items:center;padding:1.3rem 0;cursor:pointer;font-family:var(--font-h);font-size:.95rem;font-weight:600;color:var(--text-dark);text-transform:uppercase;letter-spacing:.02em;transition:color .3s}
.faq-q:hover{color:var(--orange)}
.faq-toggle{width:24px;height:24px;border-radius:50%;background:var(--orange-pale);color:var(--orange);display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:700;transition:transform .3s;flex-shrink:0;margin-left:1rem}
.faq-item.open .faq-toggle{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-item.open .faq-a{max-height:300px}
.faq-a p{padding:0 0 1.3rem;font-size:.9rem;color:var(--text-mid);line-height:1.7}

/*  SPLIT IMAGE-TEXT  */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,5rem);align-items:center;max-width:1300px;margin:0 auto}
.split.reverse{direction:rtl}
.split.reverse > *{direction:ltr}
.split-img{border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3;box-shadow:0 8px 30px rgba(0,0,0,.08)}
.split-text h2{font-family:var(--font-h);font-size:clamp(1.6rem,3vw,2.2rem);font-weight:700;color:var(--text-dark);text-transform:uppercase;line-height:1.2;margin-bottom:1.2rem}
.split-text h2 span{color:var(--orange)}
.split-text p{font-size:.92rem;color:var(--text-mid);line-height:1.8;font-weight:400;margin-bottom:.8rem}
@media(max-width:900px){.split{grid-template-columns:1fr}.split.reverse{direction:ltr}}

/*  LEGAL PAGES  */
.legal-content{max-width:850px;margin:0 auto;padding:var(--sec) var(--pad)}
.legal-content h2{font-family:var(--font-h);font-size:1.4rem;font-weight:700;color:var(--text-dark);text-transform:uppercase;margin:2.5rem 0 1rem;letter-spacing:.02em}
.legal-content h2:first-child{margin-top:0}
.legal-content h3{font-family:var(--font-h);font-size:1.05rem;font-weight:600;color:var(--text-dark);margin:1.5rem 0 .6rem}
.legal-content p{font-size:.92rem;color:var(--text);line-height:1.8;margin-bottom:.8rem}
.legal-content ul{margin:.5rem 0 1rem 1.5rem}
.legal-content li{font-size:.92rem;color:var(--text);line-height:1.8;margin-bottom:.3rem}
.legal-content a{color:var(--orange);text-decoration:underline}
.legal-content strong{color:var(--text-dark);font-weight:600}

/*  REALISATIONS GRID  */
.real-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:1300px;margin:0 auto}
.real-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:all .4s;cursor:pointer;display:block}
.real-card:hover{transform:translateY(-6px);box-shadow:0 12px 40px rgba(0,0,0,.08)}
.real-card-img{aspect-ratio:4/3;overflow:hidden;position:relative}
.real-card-img img{transition:transform .5s}
.real-card:hover .real-card-img img{transform:scale(1.06)}
.real-card-tag{position:absolute;top:1rem;left:1rem;padding:.3rem .8rem;background:rgba(255,255,255,.95);color:var(--orange);border-radius:100px;font-family:var(--font-h);font-size:.65rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;z-index:2}
.real-card-body{padding:1.3rem 1.5rem 1.5rem}
.real-card-body h3{font-family:var(--font-h);font-size:1.05rem;font-weight:600;color:var(--text-dark);text-transform:uppercase;margin-bottom:.3rem}
.real-card-meta{display:flex;gap:1rem;font-size:.75rem;color:var(--text-light);margin-bottom:.8rem}
.real-card-meta span{display:flex;align-items:center;gap:.3rem}
.real-card-desc{font-size:.85rem;color:var(--text-mid);line-height:1.6}
@media(max-width:900px){.real-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.real-grid{grid-template-columns:1fr}}

/*  GALLERY (single réalisation)  */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:2rem}
.gallery-item{aspect-ratio:4/3;border-radius:var(--radius);overflow:hidden;cursor:pointer;transition:transform .3s}
.gallery-item:hover{transform:scale(1.02)}
.gallery-item.large{grid-column:span 2;grid-row:span 2;aspect-ratio:1}
@media(max-width:768px){.gallery{grid-template-columns:repeat(2,1fr)}.gallery-item.large{grid-column:span 2;aspect-ratio:4/3}}

/*  META BAR  */
.meta-bar{display:flex;justify-content:center;gap:clamp(1.5rem,4vw,3rem);padding:2rem var(--pad);background:var(--white);border-bottom:1px solid var(--border);flex-wrap:wrap}
.meta-item{text-align:center}
.meta-label{font-family:var(--font-h);font-size:.65rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--text-light);margin-bottom:.3rem}
.meta-value{font-family:var(--font-h);font-size:1.1rem;font-weight:600;color:var(--text-dark)}


/*  FIX VISIBILITE BLOCS  */
.rv{opacity:1!important;transform:none!important}

/*  MENU DEROULANT SERVICES  */
.nav-dropdown{position:relative}
.nav-dropdown > a{cursor:pointer;display:flex;align-items:center;gap:.3rem}
.nav-dropdown > a::after{content:'';width:6px;height:6px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);margin-bottom:3px;opacity:.6}
.dropdown-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);min-width:240px;background:var(--white);box-shadow:0 12px 40px rgba(0,0,0,.12);border-radius:10px;padding:.6rem;opacity:0;visibility:hidden;transition:all .25s;z-index:1001;border:1px solid var(--border)}
.dropdown-menu::before{content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%) rotate(45deg);width:12px;height:12px;background:var(--white);border-left:1px solid var(--border);border-top:1px solid var(--border)}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.dropdown-menu a{display:block;padding:.65rem .9rem;font-size:.78rem!important;font-family:var(--font-h)!important;font-weight:500!important;color:var(--text-dark)!important;text-transform:none!important;letter-spacing:.02em!important;border-radius:6px;transition:all .2s}
.dropdown-menu a:hover{background:var(--orange-pale);color:var(--orange)!important;padding-left:1.2rem}
@media(max-width:900px){
  .dropdown-menu{position:static;transform:none;box-shadow:none;border:none;padding:0;opacity:1;visibility:visible;min-width:auto;background:transparent;text-align:center;margin-top:.5rem}
  .dropdown-menu::before{display:none}
  .dropdown-menu a{font-size:.85rem!important;padding:.4rem}
  .nav-dropdown > a::after{display:none}
}

/*  CARROUSEL AMELIORE  */
.carousel-wrap{position:relative}
.carousel-nav{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;background:var(--white);border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 12px rgba(0,0,0,.1);z-index:5;transition:all .3s}
.carousel-nav:hover{background:var(--orange);border-color:var(--orange)}
.carousel-nav:hover svg{stroke:var(--white)}
.carousel-nav svg{width:18px;height:18px;stroke:var(--text-dark);fill:none;stroke-width:2.5;transition:stroke .3s}
.carousel-prev{left:1rem}
.carousel-next{right:1rem}
@media(max-width:768px){.carousel-nav{display:none}}

/*  FAQ HOME  */
.faq-home{padding:var(--sec) var(--pad);background:var(--white)}
.faq-home .faq-list{max-width:850px;margin:3rem auto 0}

/*  MAPS SECTION HOME  */
.maps-home{padding:var(--sec) var(--pad);background:var(--light)}
.maps-home-grid{display:grid;grid-template-columns:1fr 1.3fr;gap:3rem;max-width:1300px;margin:0 auto;align-items:stretch}
.maps-info{display:flex;flex-direction:column;justify-content:center}
.maps-info h2{font-family:var(--font-h);font-size:clamp(1.6rem,3vw,2.2rem);font-weight:700;color:var(--text-dark);text-transform:uppercase;line-height:1.2;margin-bottom:1.2rem}
.maps-info h2 span{color:var(--orange)}
.maps-info p{font-size:.95rem;color:var(--text-mid);line-height:1.8;margin-bottom:1rem}
.maps-info-list{margin-top:1.5rem;display:flex;flex-direction:column;gap:.8rem}
.maps-info-item{display:flex;align-items:start;gap:.8rem;padding:.8rem 1rem;background:var(--white);border-radius:8px;border:1px solid var(--border)}
.maps-info-item strong{font-family:var(--font-h);font-size:.7rem;color:var(--text-mid);text-transform:uppercase;letter-spacing:.15em;display:block;margin-bottom:.2rem}
.maps-info-item span{color:var(--text-dark);font-size:.9rem;font-weight:500}
.maps-iframe-wrap{border-radius:var(--radius);overflow:hidden;min-height:450px;box-shadow:0 8px 30px rgba(0,0,0,.1)}
.maps-iframe-wrap iframe{width:100%;height:100%;min-height:450px;border:0;display:block}
@media(max-width:900px){.maps-home-grid{grid-template-columns:1fr}.maps-iframe-wrap{min-height:350px}.maps-iframe-wrap iframe{min-height:350px}}

/*  RESPONSIVE RENFORCE  */
@media(max-width:768px){
  .topbar{flex-direction:column;text-align:center;font-size:.7rem;padding:.6rem var(--pad)}
  .topbar > div{justify-content:center}
  nav{height:60px}
  .nav-logo{font-size:1.1rem}
  .nav-logo-icon{height:36px}
  .hero{min-height:auto;padding:2rem 0}
  .hero h1{font-size:2rem!important}
  .hero-sub{font-size:.95rem}
  .hero-actions{flex-direction:column;align-items:stretch}
  .btn-primary,.btn-secondary{justify-content:center;text-align:center}
  .svc-grid,.real-grid,.testi-grid{grid-template-columns:1fr!important;gap:1.2rem}
  .features{grid-template-columns:1fr!important}
  .process{grid-template-columns:1fr!important;gap:2.5rem}
  .stats-band{gap:1.5rem;padding:2rem var(--pad)}
  .sband-num{font-size:1.7rem}
  .sband-lbl{font-size:.65rem}
  .trust{gap:1.2rem;padding:1.5rem var(--pad)}
  .trust-item{flex-direction:column;text-align:center;gap:.4rem}
  .trust-text span{font-size:1rem}
  .trust-text small{font-size:.65rem}
  .cert-inner{gap:.8rem!important}
  .cert-item{font-size:.7rem!important;padding:.4rem 1rem!important}
  .ft-grid{grid-template-columns:1fr!important;gap:2rem;text-align:center}
  .ft-col a{justify-content:center;display:flex}
  .ft-bottom{text-align:center;justify-content:center;flex-direction:column}
  footer{padding:2.5rem 1rem 1rem}
  .page-hero{padding:3rem var(--pad) 2.5rem}
  .page-hero h1{font-size:1.8rem!important}
  .sec-title{font-size:1.5rem!important}
  .contact-cards{grid-template-columns:1fr!important}
  .contact-main-grid{grid-template-columns:1fr!important;gap:2rem}
  .contact-form-large{padding:1.5rem}
  .real-content-grid{grid-template-columns:1fr!important}
}

@media(max-width:480px){
  :root{--pad:1rem;--sec:3rem}
  .nav-cta{padding:.5rem 1rem;font-size:.65rem!important}
  .hero-images{display:none}
  .stats-band{flex-direction:column;text-align:center}
  .sband-item{padding:.5rem 0}
}

@media(min-width:769px) and (max-width:1024px){
  /* Tablette */
  .svc-grid,.real-grid,.testi-grid{grid-template-columns:repeat(2,1fr)}
  .features{grid-template-columns:repeat(2,1fr)}
  .process{grid-template-columns:repeat(2,1fr)}
  .ft-grid{grid-template-columns:repeat(2,1fr)}
}


/* === CHARTE TYPOGRAPHIQUE VDF === */
h1, .sec-title, .page-hero h1, .hero h1, .about-text h2, .split-text h2, .legal-content h2, .maps-info h2 {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 600 !important;
}
h2, .sec-title {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 500 !important;
}
h3, .svc-card h3, .testi-name, .real-card-body h3 {
  font-family: 'Oswald', sans-serif !important;
  font-weight: 500 !important;
}
.nav-links a, nav a:not(.nav-logo), .topbar a, .topbar span {
  font-family: 'Source Sans 3', sans-serif !important;
  font-weight: 600 !important;
}
p, .hero-sub, .sec-desc, .page-hero-sub, .legal-content p, .about-text p, .split-text p, .maps-info p, .svc-card p, .feature p, .step p, .testi-card blockquote, .real-card-desc, .real-card-meta span {
  font-family: 'Source Sans 3', sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px;
  line-height: 1.7;
}
.btn-primary, .btn-secondary, .form-submit, .cta-btn-white, .real-cta, .nav-cta, .svc-card-link {
  font-family: 'Source Sans 3', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
}

/* === TITRES UNICOLORES (pas de mise en valeur span) === */
h1 span, h2 span, .sec-title span, .page-hero h1 span, .hero h1 span, .hero h1 .teal, .about-text h2 span, .split-text h2 span, .maps-info h2 span {
  color: inherit !important;
  display: inline !important;
}

/* === SUPPRESSION DES SEC-LABEL === */
.sec-label, [class*="sec-label"] {
  display: none !important;
}

/* === RESPONSIVE TYPO === */
@media(min-width:768px){
  h1, .page-hero h1, .hero h1 { font-size: 44px !important; }
  h2, .sec-title { font-size: 34px !important; }
  h3 { font-size: 26px !important; }
}
@media(max-width:767px){
  h1, .page-hero h1, .hero h1 { font-size: 32px !important; line-height:1.15 !important; }
  h2, .sec-title { font-size: 26px !important; }
  h3 { font-size: 20px !important; }
}


/* === ANIMATIONS LUXE STYLE FRAMER/WEBFLOW === */

/* Easing curves luxe */
:root {
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-power: cubic-bezier(0.83, 0, 0.17, 1);
}

/* Reveal au scroll - classes optionnelles, contenu reste visible si JS off */
.fx-up { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury); }
.fx-up.in-view { opacity: 1; transform: translateY(0); }

.fx-fade { opacity: 0; transition: opacity 1.2s var(--ease-luxury); }
.fx-fade.in-view { opacity: 1; }

.fx-zoom { opacity: 0; transform: scale(0.95); transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury); }
.fx-zoom.in-view { opacity: 1; transform: scale(1); }

.fx-left { opacity: 0; transform: translateX(-40px); transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury); }
.fx-left.in-view { opacity: 1; transform: translateX(0); }

.fx-right { opacity: 0; transform: translateX(40px); transition: opacity 1s var(--ease-luxury), transform 1s var(--ease-luxury); }
.fx-right.in-view { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.fx-d1 { transition-delay: 0.1s; }
.fx-d2 { transition-delay: 0.2s; }
.fx-d3 { transition-delay: 0.3s; }
.fx-d4 { transition-delay: 0.4s; }
.fx-d5 { transition-delay: 0.5s; }

/* Fallback : si noscript ou JS off, tout reste visible */

/* === BOUTONS FLOTTANTS (Appel + Retour haut) === */
.float-call {
  position: fixed;
  bottom: 6.8rem;
  right: 1.8rem;
  z-index: 99;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #E8630A, #C8520A);
  color: white !important;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s var(--ease-luxury);
  animation: floatPulse 2.2s ease-in-out infinite;
}
.float-call:hover {
  transform: translateY(-3px) scale(1.06);
}
.float-call svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2.2;
}
@keyframes floatPulse {
  0%, 100% {
    box-shadow:
      0 10px 30px rgba(232, 99, 10, 0.45),
      0 0 0 0 rgba(232, 99, 10, 0.55),
      0 0 30px 4px rgba(232, 99, 10, 0.35);
  }
  50% {
    box-shadow:
      0 10px 30px rgba(232, 99, 10, 0.55),
      0 0 0 18px rgba(232, 99, 10, 0),
      0 0 38px 8px rgba(232, 99, 10, 0.55);
  }
}

/* Bouton back-to-top */
.float-top {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 99;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,99,10,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-luxury);
  padding: 0;
}
.float-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.float-top:hover { background: var(--orange-dark, #C8520A); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(232,99,10,.45); }
.float-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; }

@media(max-width: 768px) {
  .float-call { right: 1rem; bottom: 5.8rem; width: 56px; height: 56px; }
  .float-call svg { width: 24px; height: 24px; }
  .float-top { right: 1rem; bottom: 1rem; width: 42px; height: 42px; }
  .float-top svg { width: 18px; height: 18px; }
}

/* === HOVER EFFECTS LUXE === */

/* Cards : tilt subtil + ombre profonde */
.svc-card, .real-card, .testi-card, .feature, .certif-card, .team-card {
  transition: transform 0.6s var(--ease-luxury), box-shadow 0.5s ease, border-color 0.4s !important;
}
.svc-card:hover, .real-card:hover, .feature:hover, .certif-card:hover, .team-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.09), 0 0 0 1px rgba(232, 99, 10, 0.15) !important;
}
.testi-card:hover { transform: translateY(-5px) !important; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important; }

/* Image hover zoom doux */
.svc-card-img img, .room-card-img img, .real-card-img img, .team-photo img, .about-img-main img, .split-img img, .gallery-item img {
  transition: transform 0.9s var(--ease-luxury) !important;
}
.svc-card:hover .svc-card-img img,
.real-card:hover .real-card-img img,
.room-card:hover .room-card-img img,
.team-card:hover .team-photo img {
  transform: scale(1.08) !important;
}
.gallery-item:hover img { transform: scale(1.05) !important; }

/* Boutons : shine effect */
.btn-primary, .cta-btn-white, .form-submit, .nav-cta, .real-cta {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before, .cta-btn-white::before, .form-submit::before, .real-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transition: left 0.7s var(--ease-luxury);
  z-index: -1;
}
.btn-primary:hover::before, .cta-btn-white:hover::before, .form-submit:hover::before, .real-cta:hover::before {
  left: 100%;
}

/* Nav links : underline reveal */
.nav-links > a:not(.nav-cta), .nav-dropdown > a {
  position: relative;
}
.nav-links > a:not(.nav-cta)::after, .nav-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: all 0.4s var(--ease-luxury);
  transform: translateX(-50%);
}
.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a.active::after,
.nav-dropdown:hover > a::after,
.nav-dropdown > a.active::after {
  width: 80%;
}
.nav-dropdown > a::before { display: none !important; }

/* SVG icones : rotation subtile au hover */
.svc-card-icon, .feature-icon, .contact-card-icon, .trust-icon {
  transition: transform 0.5s var(--ease-luxury) !important;
}
.svc-card:hover .svc-card-icon { transform: rotate(-6deg) scale(1.05) !important; }
.feature:hover .feature-icon { transform: rotate(6deg) scale(1.05) !important; }
.contact-card:hover .contact-card-icon { transform: rotate(-6deg) scale(1.08) !important; }

/* Link arrow movement */
.svc-card-link {
  display: inline-flex !important;
  align-items: center;
  margin-top: 1.2rem !important;
  padding: .7rem 1.4rem !important;
  background: var(--orange-pale) !important;
  border-radius: 100px !important;
  letter-spacing: .04em !important;
  transition: all 0.3s var(--ease-luxury) !important;
}
.svc-card:hover .svc-card-link { background: var(--orange) !important; color: var(--white) !important; transform: translateX(3px); }

/* Stats : numeric tabular */
.sband-num { font-variant-numeric: tabular-nums; transition: transform 0.3s; }

/* === MARQUEE CERTIFICATIONS === */
.marquee {
  overflow: hidden;
  padding: 1.8rem 0;
  background: linear-gradient(90deg, var(--text-dark), #2A2A2D);
  color: white;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--text-dark), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--text-dark), transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  color: rgba(255,255,255,0.85);
}
.marquee-item::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50%)); }
}

/* === BANDEAU LOGOS CERTIFICATIONS === */
.certif-band{padding:2.5rem var(--pad);background:var(--white);border-bottom:1px solid var(--border)}
.certif-band-title{text-align:center;font-family:var(--font-h);font-size:.7rem;font-weight:600;letter-spacing:.25em;text-transform:uppercase;color:var(--text-light);margin-bottom:1.6rem}
.certif-band-logos{display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:clamp(2rem,5vw,4.5rem);max-width:1100px;margin:0 auto}
.certif-band-logos img{height:80px;width:auto;max-width:160px;object-fit:contain;filter:grayscale(20%);opacity:.92;transition:all .3s}
.certif-band-logos img:hover{filter:none;opacity:1;transform:scale(1.06)}
@media(max-width:640px){.certif-band-logos img{height:60px;max-width:120px}.certif-band-logos{gap:1.5rem}}

/* === GLASSMORPHISM SUR LA NAV AU SCROLL === */
nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* === SMOOTH SCROLL GLOBAL === */
html { scroll-padding-top: 80px; }

/* === HERO PLEIN ECRAN : image de fond + overlay === */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-fullscreen {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem var(--pad) 5rem;
  color: var(--white);
}
.hero-fullscreen-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero-fullscreen .hero-badge {
  display: inline-flex;
  align-items: center;
  padding: .6rem 1.2rem;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-fullscreen h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}
.hero-fullscreen .hero-sub {
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
  max-width: 680px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}
.hero-fullscreen .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
/* Variante claire du bouton secondaire sur fond sombre */
.btn-secondary-light {
  background: transparent !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, .6) !important;
}
.btn-secondary-light:hover {
  background: var(--white) !important;
  color: var(--text-dark) !important;
  border-color: var(--white) !important;
}

/* === HERO : rangée de logos certifications en bas === */
.hero-certifs {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.hero-certifs-label {
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}
.hero-certifs-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.hero-certifs-logos img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .3s, transform .3s;
}
.hero-certifs-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .hero-certifs-logos { gap: 1.2rem; }
  .hero-certifs-logos img { height: 42px; }
}
/* @keyframes floatBlob retiré (plus utilisé) */

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-mid);
  border-radius: 12px;
  z-index: 5;
}
.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}
@media(max-width:768px){.scroll-indicator{display:none}}


/* ==========================================================================
   FALLBACK : si JS désactivé, les .rv restent visibles (jamais cachés)
   ========================================================================== */
.rv { opacity: 1 !important; transform: none !important; }

/* ==========================================================================
   PAGES RÉALISATIONS : archive + single + filtre
   ========================================================================== */

/* Page hero (commun aux pages internes) - peut déjà exister, on l'override propre */
.page-hero {
  position: relative;
  padding: 5rem var(--pad) 4rem;
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--white) 60%, var(--light) 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.page-hero h1 span { color: var(--orange); }
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--text-mid); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { opacity: .4; }

/* Filtre par type de travaux */
.real-filter-bar {
  padding: 2rem var(--pad) 1rem;
  background: var(--white);
}
.real-filter-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
}
.real-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: all .3s var(--ease-luxury);
  cursor: pointer;
}
.real-filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.real-filter-btn.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 99, 10, .25);
}

/* Section grille des réalisations */
.real-section {
  padding: 3rem var(--pad) var(--sec);
  background: var(--white);
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .real-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .real-grid { grid-template-columns: 1fr; }
}

.real-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .4s var(--ease-luxury);
  display: block;
}
.real-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
  border-color: rgba(232, 99, 10, .15);
}
.real-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--grey-bg);
}
.real-card-img img,
.real-card-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-luxury);
}
.real-card-img-placeholder {
  background: linear-gradient(135deg, var(--orange-pale), var(--cream));
}
.real-card:hover .real-card-img img { transform: scale(1.06); }
.real-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .4rem 1rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
  text-decoration: none;
}
.real-card-body {
  padding: 1.5rem;
}
.real-card-body h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: .5rem;
  line-height: 1.3;
  letter-spacing: .01em;
}
.real-card-meta {
  display: flex;
  gap: 1rem;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .8rem;
}
.real-card-desc {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Pagination */
.real-pagination {
  max-width: 1300px;
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
}
.real-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1rem;
  margin: 0 .25rem;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .85rem;
  color: var(--text-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all .3s var(--ease-luxury);
}
.real-pagination .page-numbers:hover,
.real-pagination .page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* État vide (aucune réalisation) */
.real-empty {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.real-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: .35;
}
.real-empty h2 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.real-empty p {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SINGLE RÉALISATION : page détail
   ========================================================================== */

.real-single-type {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.real-single-type .real-card-tag {
  position: static;
  padding: .35rem .9rem;
}
.real-single-year {
  font-family: var(--font-h);
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--text-mid);
}

.real-single {
  padding: var(--sec) var(--pad);
  background: var(--white);
}
.real-single-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .real-single-grid { grid-template-columns: 1fr; }
}

.real-single-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16 / 10;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}
.real-single-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.real-single-content {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
}
.real-single-content > * { margin-bottom: 1.2rem; }
.real-single-content h2,
.real-single-content h3 {
  font-family: var(--font-h);
  color: var(--text-dark);
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: .8rem;
}
.real-single-content h2 { font-size: 1.5rem; }
.real-single-content h3 { font-size: 1.15rem; }
.real-single-content p { font-size: 1rem; line-height: 1.75; }
.real-single-content img { border-radius: var(--radius); margin: 1rem 0; }

/* Galerie Gutenberg native */
.real-single-content .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.real-single-content .wp-block-gallery .wp-block-image,
.real-single-content .wp-block-gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.real-single-content .wp-block-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 10px;
  transition: transform .4s var(--ease-luxury);
}
.real-single-content .wp-block-gallery .wp-block-image:hover img {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .real-single-content .wp-block-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Sidebar */
.real-single-side {
  position: sticky;
  top: 100px;
}
.real-single-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--border);
}
.real-single-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: .04em;
}
.real-single-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.real-single-list li {
  padding: .8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.real-single-list li:last-child { border-bottom: none; }
.real-single-list strong {
  display: block;
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.real-single-list span {
  font-size: .9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.real-single-contact {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
}
.real-single-tel {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}
.real-single-tel:hover { color: var(--orange-dark); }

/* Autres réalisations */
.real-related {
  padding: var(--sec) var(--pad);
  background: var(--light);
}

/* ==========================================================================
   TITRES UNIFORMES : pas de mise en valeur orange dans les titres
   (un seul ton de couleur par titre, plus propre)
   ========================================================================== */
.sec-title span,
.page-hero h1 span,
.hero h1 span,
.about-text h2 span,
.split-text h2 span,
.zone-text h2 span,
.maps-info h2 span,
.cta-inner h2 span,
.real-related h2 span,
.real-empty h2 span,
h1 span, h2 span, h3 span {
  color: inherit !important;
}

/* ==========================================================================
   PAGES LÉGALES (Mentions légales, Politique de confidentialité)
   ========================================================================== */
.legal-content {
  max-width: 850px;
  margin: 0 auto;
  padding: var(--sec) var(--pad);
}
.legal-content h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  margin: 2.8rem 0 1rem;
  letter-spacing: .02em;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--orange);
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 1.8rem 0 .6rem;
}
.legal-content p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: .9rem;
}
.legal-content ul {
  margin: .5rem 0 1.2rem 1.5rem;
}
.legal-content li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: .4rem;
}
.legal-content a {
  color: var(--orange);
  text-decoration: underline;
}
.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-info-box {
  background: var(--cream);
  padding: 1.5rem 1.8rem;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  margin: 1.2rem 0;
}
.legal-info-box p { margin-bottom: .4rem; }
.legal-info-box p:last-child { margin-bottom: 0; }

.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.right-card {
  padding: 1.2rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all .3s var(--ease-luxury);
}
.right-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
  border-color: var(--orange);
}
.right-card strong {
  display: block;
  font-family: var(--font-h);
  font-size: .85rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.right-card span {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .rights-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MENU DÉROULANT SERVICES (Header)
   ========================================================================== */
.vdf-nav-dropdown {
  position: relative;
  display: inline-block;
}
.vdf-nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.vdf-nav-dropdown.is-active > .vdf-nav-dropdown-trigger,
.vdf-nav-dropdown:hover > .vdf-nav-dropdown-trigger {
  color: var(--orange);
}
.vdf-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .12);
  padding: .6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease-luxury);
  z-index: 1100;
  border: 1px solid var(--border);
}
.vdf-nav-dropdown:hover > .vdf-nav-dropdown-menu,
.vdf-nav-dropdown:focus-within > .vdf-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.vdf-nav-dropdown-menu a {
  display: block;
  padding: .75rem 1.3rem;
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-mid);
  white-space: nowrap;
  transition: all .25s;
}
.vdf-nav-dropdown-menu a:hover {
  background: var(--orange-pale);
  color: var(--orange);
  padding-left: 1.6rem;
}
.vdf-nav-dropdown-separator {
  height: 1px;
  background: var(--border);
  margin: .5rem 1.3rem;
}
.vdf-nav-dropdown-all {
  color: var(--orange) !important;
  font-weight: 700 !important;
}

/* ==========================================================================
   RESPONSIVE : tablette + mobile (renforcement)
   ========================================================================== */

/* Tablette (1024px et moins) : ajuste les marges */
@media (max-width: 1024px) {
  :root {
    --pad: clamp(1.2rem, 4vw, 3rem);
    --sec: clamp(3rem, 7vw, 5rem);
  }
  .hero-inner,
  .about-grid,
  .zone-grid,
  .maps-home-grid,
  .real-single-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band {
    gap: 2rem;
    padding: 2rem var(--pad);
  }
  .real-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .rights-grid {
    grid-template-columns: 1fr !important;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Tablette : dropdown reste dans la nav avec menu mobile */
  .vdf-nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-top: .5rem;
  }
  .vdf-nav-dropdown-menu a {
    padding: .5rem 1rem;
    font-size: .9rem;
  }
}

/* Mobile (768px et moins) : simplification maximale */
@media (max-width: 768px) {
  :root {
    --pad: 1.2rem;
    --sec: 2.8rem;
  }
  body { font-size: 15px; }
  .svc-grid,
  .real-grid,
  .features,
  .process,
  .contact-cards,
  .certif-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }
  .hero-actions {
    flex-direction: column;
    gap: .8rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .stats-band {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem var(--pad);
  }
  .sband-num {
    font-size: 2rem !important;
  }
  .vdf-topbar {
    flex-direction: column;
    text-align: center;
    gap: .3rem;
    font-size: .7rem;
    padding: .6rem 1rem;
  }
  .vdf-topbar-left {
    flex-direction: column;
    gap: .2rem;
  }
  .vdf-nav {
    padding: 0 1rem;
    height: 70px;
  }
  .vdf-nav-logo-icon {
    height: 38px;
  }
  .page-hero {
    padding: 3rem var(--pad) 2.5rem;
  }
  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
  }
  .sec-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
  }
  .cta-inner h2 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }
  .ft-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }
  .vdf-footer .ft-socials {
    justify-content: center;
  }
  .ft-bottom {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
  .zone-tags {
    justify-content: center;
  }
  .real-filter-inner {
    gap: .4rem;
  }
  .real-filter-btn {
    padding: .5rem 1rem;
    font-size: .7rem;
  }
  .legal-content {
    padding: 2rem 1.2rem;
  }
  .legal-content h2 {
    font-size: 1.2rem;
  }
  .legal-info-box {
    padding: 1.2rem 1.4rem;
  }
}

/* Très petit mobile (480px) */
@media (max-width: 480px) {
  .vdf-nav-logo-icon {
    height: 32px;
  }
  .vdf-nav-cta {
    padding: .5rem 1rem !important;
    font-size: .68rem !important;
  }
  .vdf-topbar {
    font-size: .65rem;
  }
  .hero-images {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }
}

/* ==========================================================================
   AJUSTEMENTS STANDALONE : tailles et finitions propres (sans !important)
   Maintenant qu'on est en theme autonome, on n'a plus besoin de combattre Astra.
   ========================================================================== */

/* Reset / Base */
body.vdf-body { background: var(--white); color: var(--text); }

/* Stats : numéros bien gros + padding généreux pour éviter de coller au texte au-dessous */
.stats-band {
  padding: 3.5rem var(--pad) !important;
  margin-bottom: 0;
}
.sband-num {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -.02em;
}
.sband-lbl {
  font-size: clamp(.85rem, 1.2vw, 1rem);
  opacity: .92;
}
/* La section qui suit la stats-band a besoin d'air en haut */
.services-home {
  padding: var(--sec) var(--pad);
  background: var(--white);
}

/* (Ancien bloc testi-card retiré — remplacé par .testimonial v2.4) */

/* About : devanture en grand bloc unique (le petit bloc flottant a été retiré) */
.about-img-stack {
  position: relative;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Zone tags : style pilule + flex propre */
.zone-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.zone-tag {
  display: inline-block;
  padding: .5rem 1.1rem;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  transition: all .3s var(--ease-luxury);
}

/* Zone map : ratio propre + iframe responsive */
.zone-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--grey-bg);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.zone-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cookie banner texte plus lisible */
.vdf-cookie-text p {
  font-size: .82rem;
  line-height: 1.6;
  opacity: .92;
}
.vdf-cookie-text a { color: var(--orange); text-decoration: underline; }

/* ==========================================================================
   PAGE SERVICES (index) v3.0 : Audience / Inclus / FAQ
   ========================================================================== */
.audience { padding: var(--sec) var(--pad); background: var(--light); }
.audience-wrap { max-width: 1280px; margin: 0 auto; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.2);
  padding: 2rem 1.8rem;
  transition: all .35s var(--ease-luxury);
}
.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(20, 20, 20, .1);
  border-color: rgba(232, 99, 10, .25);
}
.audience-card-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.audience-card-icon svg { width: 26px; height: 26px; }
.audience-card h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 .8rem;
}
.audience-card > p {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 0 1.2rem;
}
.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.audience-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: var(--text-mid);
}

.included { padding: var(--sec) var(--pad); background: var(--white); }
.included-wrap { max-width: 1280px; margin: 0 auto; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.included-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  transition: all .3s var(--ease-luxury);
}
.included-item:hover {
  background: var(--white);
  box-shadow: 0 16px 36px rgba(20, 20, 20, .08);
}
.included-item-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.included-item-icon svg { width: 22px; height: 22px; }
.included-item h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 .5rem;
  letter-spacing: .02em;
}
.included-item p {
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

.services-faq { padding: var(--sec) var(--pad); background: var(--cream); }
.services-faq-wrap { max-width: 900px; margin: 0 auto; }

@media (max-width: 900px) {
  .audience-grid, .included-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE SERVICE individuelle v3.0 : galerie, témoignage, FAQ
   ========================================================================== */
/* === CARROUSEL PHOTOS DÉFILANT (page service) === */
.service-marquee {
  padding: var(--sec) 0;
  background: var(--cream);
  overflow: hidden;
}
.service-marquee-wrap { max-width: 1280px; margin: 0 auto; }
.service-marquee-wrap .sec-header { padding: 0 var(--pad); }
.service-marquee-track {
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.service-marquee-row {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: serviceMarqueeScroll 50s linear infinite;
}
.service-marquee:hover .service-marquee-row { animation-play-state: paused; }
@keyframes serviceMarqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - .6rem)); }
}
.service-marquee-item {
  flex: 0 0 320px;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) * 1.1);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(20, 20, 20, .08);
  background: var(--light);
}
.service-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-luxury);
}
.service-marquee-item:hover img { transform: scale(1.05); }
@media (max-width: 700px) {
  .service-marquee-item { flex: 0 0 240px; }
}

/* === Ancien CSS galerie service gardé inerte === */
.service-gallery { padding: var(--sec) var(--pad); background: var(--cream); }
.service-gallery-wrap { max-width: 1100px; margin: 0 auto; }
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.service-gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  transition: all .35s var(--ease-luxury);
}
.service-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .15);
}
.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-luxury);
}
.service-gallery-item:hover img { transform: scale(1.08); }
.service-gallery-zoom {
  position: absolute;
  bottom: .8rem;
  right: .8rem;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  opacity: 0;
  transform: scale(.8);
  transition: all .3s;
}
.service-gallery-item:hover .service-gallery-zoom {
  opacity: 1;
  transform: scale(1);
}
.service-gallery-zoom svg { width: 18px; height: 18px; }

.service-testimonial { padding: var(--sec) var(--pad); background: var(--white); }
.service-testimonial-wrap { max-width: 800px; margin: 0 auto; }
.service-testimonial-card {
  background: var(--cream);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
}
.service-testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
}
.service-testimonial-stars svg { width: 20px; height: 20px; color: #FFB400; }
.service-testimonial-card blockquote {
  font-family: var(--font-b);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
}
.service-testimonial-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.service-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #C44E00 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
}
.service-testimonial-name {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
}
.service-testimonial-loc {
  font-size: .82rem;
  color: var(--text-mid);
}

.service-faq { padding: var(--sec) var(--pad); background: var(--cream); }
.service-faq-wrap { max-width: 900px; margin: 0 auto; }

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

/* ==========================================================================
   ARCHIVE RÉALISATIONS v3.0 : compteurs filtre, tri, ville, "Vu sur terrain"
   ========================================================================== */
.real-filter-count {
  font-size: .82em;
  opacity: .7;
  margin-left: .2em;
}
.real-sort {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.real-sort-label {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.real-sort-btn {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .4rem .9rem;
  border-radius: 100px;
  text-decoration: none;
  color: var(--text-mid);
  border: 1px solid var(--border);
  transition: all .25s;
}
.real-sort-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.real-sort-btn.is-active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.real-card-loc {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .78rem;
  color: var(--orange);
  font-weight: 600;
}
.real-card-dot { color: var(--text-light); opacity: .5; margin: 0 .15rem; }

.field-notes { padding: var(--sec) var(--pad); background: var(--cream); }
.field-notes-wrap { max-width: 1200px; margin: 0 auto; }
.field-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}
.field-notes-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  display: flex;
  gap: 1rem;
  border: 1px solid var(--border);
  transition: all .3s var(--ease-luxury);
}
.field-notes-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 20, 20, .08);
}
.field-notes-author-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .95rem;
}
.field-notes-card p {
  font-family: var(--font-b);
  font-size: .9rem;
  line-height: 1.55;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 .5rem;
}
.field-notes-card span {
  font-size: .75rem;
  color: var(--text-mid);
  font-weight: 500;
}

@media (max-width: 900px) {
  .field-notes-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SINGLE RÉALISATION v3.0 : slider avant/après, prestations, témoignage
   ========================================================================== */
.real-single-h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 1.2rem;
  letter-spacing: -.01em;
}
.real-single-h3 span { color: var(--orange); }

.real-single-ba {
  margin-top: 2.5rem;
}
.before-after-slider-single {
  aspect-ratio: 16 / 10;
  max-height: 480px;
}

.real-single-prestations {
  margin-top: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.real-single-prest-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem 1.5rem;
}
.real-single-prest-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: var(--text-dark);
}

.real-single-quote {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--orange-pale) 0%, var(--white) 100%);
  border: 1px solid rgba(232, 99, 10, .2);
  border-radius: calc(var(--radius) * 1.3);
  padding: 2rem 2.2rem;
}
.real-single-quote-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
}
.real-single-quote-stars svg { width: 20px; height: 20px; color: #FFB400; }
.real-single-quote blockquote {
  font-family: var(--font-b);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin: 0 0 1.2rem;
  padding: 0;
  border: none;
}
.real-single-quote-author {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  flex-wrap: wrap;
}
.real-single-quote-author strong {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.real-single-quote-author span {
  font-size: .82rem;
  color: var(--text-mid);
}

@media (max-width: 700px) {
  .real-single-prest-list { grid-template-columns: 1fr; }
  .real-single-quote { padding: 1.5rem 1.3rem; }
  .real-single-quote blockquote { font-size: 1rem; }
}

/* ==========================================================================
   LIGHTBOX simple pour les galeries (CSS-only base + JS dans vdf-main.js)
   ========================================================================== */
.vdf-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 2rem;
}
.vdf-lightbox.is-open { display: flex; }
.vdf-lightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}
.vdf-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
}

/* ==========================================================================
   PHOTOS EN FOND avec opacité (v2.10)
   Ajout de texture sur 3 sections clés : Stats band, Témoignages, FAQ home.
   ========================================================================== */

/* Stats band : photo chantier + overlay orange dégradé */
.stats-band {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/img/hero/hero-chantier.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
  z-index: -1;
}
.stats-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange) 0%, rgba(232,99,10,.85) 100%);
  z-index: -1;
}

/* Témoignages : photo subtile en background, opacité basse */
.testimonials {
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/img/hero/hero-peinture.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.testimonials > * {
  position: relative;
  z-index: 1;
}

/* FAQ home : sans photo de fond (retiré v3.5) */

/* Sur mobile/tablette : enlever background-attachment fixed (lourd) */
@media (max-width: 900px) {
  .testimonials::before {
    background-attachment: scroll;
    opacity: .04;
  }
}

/* ==========================================================================
   CENTRAGE IMAGES (v3.5) : object-position center pour bien centrer
   les images dans leurs containers EXISTANTS, sans changer la structure.
   ========================================================================== */
.svc-card-img img,
.room-card-img img,
.real-card-img img,
.about-img-main img,
.cta-modern-visual img,
.founder-photo img,
.service-marquee-item img,
.real-single-cover img {
  object-fit: cover !important;
  object-position: center center !important;
  width: 100%;
  height: 100%;
  display: block;
}

/* Peinture : centrer sur les pots (un peu plus bas que center top) */
.svc-card-img img[src*="peinture.jpg"] {
  object-position: center 60% !important;
}

/* ==========================================================================
   BULLET-DOT : remplaçant des checkmarks V (v2.9)
   Petit carré orange utilisé comme puce de liste, neutre et sobre.
   ========================================================================== */
.bullet-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
  transform: rotate(45deg);
}
/* Variante dans les checklists CTA modern (déjà en flex) */
.cta-modern-checklist li .bullet-dot {
  margin-top: .35rem;
}
.contact-form-checklist li .bullet-dot {
  margin-top: .55rem;
  width: 10px;
  height: 10px;
}

/* ==========================================================================
   CITATION JEAN-PAUL VALLÉE intégrée au bloc À propos (v2.9)
   ========================================================================== */
.about-quote {
  position: relative;
  margin: 2rem 0 0;
  padding: 1.6rem 1.6rem 1.6rem 1.8rem;
  background: var(--cream);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 1.2rem;
}
.about-quote-bar {
  background: var(--orange);
  border-radius: 2px;
}
.about-quote blockquote {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}
.about-quote-author {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem;
}
.about-quote-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}
.about-quote-role {
  font-size: .82rem;
  color: var(--text-mid);
  white-space: nowrap;
}
.about-quote-role::before {
  content: '— ';
  color: var(--text-light);
}

/* ==========================================================================
   PAGE À PROPOS v2.7 : Timeline, Équipe, Méthodologie, Avant/Après, RSE
   ========================================================================== */

/* === TIMELINE === */
.timeline {
  padding: 3rem var(--pad);
  background: var(--white);
}
.timeline-wrap { max-width: 1200px; margin: 0 auto; }
.timeline-track {
  position: relative;
  margin-top: 3rem;
  padding-top: 5rem; /* place pour la maison qui se déplace au-dessus */
}
.timeline-line {
  position: absolute;
  top: 4.5rem;
  left: 4%;
  right: 4%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  z-index: 0;
}
.timeline-line-progress {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transition: width .15s linear;
}
.timeline-house {
  position: absolute;
  top: -22px;
  left: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  box-shadow: 0 10px 24px rgba(232, 99, 10, .35);
  transition: left .15s linear;
  z-index: 2;
}
.timeline-house svg { width: 24px; height: 24px; }
.timeline-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.timeline-step {
  text-align: center;
  position: relative;
  padding-top: 2.5rem;
}
.timeline-year {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: .5rem;
}
.timeline-dot {
  position: absolute;
  top: -.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  z-index: 2;
}
.timeline-step h3 {
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text-dark);
  margin: 0 0 .5rem;
  line-height: 1.25;
}
.timeline-step p {
  font-size: .78rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}

/* === ÉQUIPE === */
.team {
  padding: 3rem var(--pad);
  background: var(--cream);
}
.team-wrap { max-width: 1200px; margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: all .3s var(--ease-luxury);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, .08);
  border-color: rgba(232, 99, 10, .25);
}
.team-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.team-card-icon svg { width: 24px; height: 24px; }
.team-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 .6rem;
  letter-spacing: .02em;
}
.team-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* === MÉTHODOLOGIE === */
.methodology {
  padding: 3rem var(--pad);
  background: var(--white);
}
.methodology-wrap { max-width: 1200px; margin: 0 auto; }
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.methodology-step {
  background: var(--light);
  border-radius: calc(var(--radius) * 1.2);
  padding: 1.8rem 1.6rem;
  position: relative;
  transition: all .3s var(--ease-luxury);
  border: 1px solid transparent;
}
.methodology-step:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: rgba(232, 99, 10, .25);
  box-shadow: 0 20px 40px rgba(20, 20, 20, .08);
}
.methodology-step-num {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  opacity: .25;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.methodology-step-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.methodology-step-icon svg { width: 22px; height: 22px; }
.methodology-step h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 .8rem;
}
.methodology-step p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* === BLOC AVANT / APRÈS FEATURE (page Réalisations) === */
.ba-feature {
  padding: 3rem var(--pad);
  background: var(--white);
}
.ba-feature-wrap { max-width: 1280px; margin: 0 auto; }
.ba-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.ba-feature-eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .4rem .9rem;
  background: var(--orange-pale);
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.ba-feature-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-dark);
  margin: 0 0 1.2rem;
  letter-spacing: -.01em;
}
.ba-feature-text h2 span { color: var(--orange); }
.ba-feature-text > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 1.5rem;
}
.ba-feature-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ba-feature-meta strong {
  display: block;
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.ba-feature-meta span {
  display: block;
  font-size: .8rem;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

/* === SLIDER AVANT/APRÈS FEATURE : curseur déplaçable, photos en cover === */
.before-after-slider-feature {
  aspect-ratio: 4 / 3;
  max-height: 480px;
  margin-top: 0;
  background: var(--light);
}
.before-after-slider-feature .before-after-img {
  object-fit: cover;
  object-position: center;
}
.before-after-slider-feature .before-after-overlay .before-after-img {
  width: 200%;
  max-width: none;
}

@media (max-width: 900px) {
  .ba-feature-grid { grid-template-columns: 1fr; gap: 2rem; }
  .before-after-slider-feature { aspect-ratio: 4 / 3; max-height: none; }
}

/* === AVANT / APRÈS slider (taille réduite v2.9) === */
.before-after {
  padding: var(--sec) var(--pad);
  background: var(--cream);
}
.before-after-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.before-after-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  max-height: 480px;
  border-radius: calc(var(--radius) * 1.3);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 20, 20, .15);
  cursor: ew-resize;
  margin-top: 2rem;
  user-select: none;
}
.before-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.before-after-overlay {
  position: absolute;
  inset: 0;
  width: 50%; /* mis à jour par JS */
  overflow: hidden;
}
.before-after-overlay .before-after-img {
  width: 200%;
  max-width: none;
}
.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--white);
  cursor: ew-resize;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.before-after-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}
.before-after-handle svg {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  color: var(--orange);
}
.before-after-handle svg:first-child { margin-right: -3px; }
.before-after-handle svg:last-child { margin-left: -3px; }
.before-after-label {
  position: absolute;
  top: 1.2rem;
  padding: .4rem .9rem;
  background: rgba(0, 0, 0, .65);
  color: var(--white);
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 100px;
  pointer-events: none;
  z-index: 4;
}
.before-after-label-before { left: 1.2rem; }
.before-after-label-after { right: 1.2rem; background: var(--orange); }
.before-after-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.before-after-note a { color: var(--orange); font-weight: 600; }

/* === RSE === */
.rse {
  padding: 3rem var(--pad);
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.rse-wrap { max-width: 1200px; margin: 0 auto; }
.rse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.rse-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--border);
  transition: all .3s var(--ease-luxury);
}
.rse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, .08);
}
.rse-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4A8C4A 0%, #2F5F2F 100%);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.rse-card-icon svg { width: 22px; height: 22px; }
.rse-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 .6rem;
}
.rse-card p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* === GUARANTEES section + CTA À propos === */
.guarantees-section {
  padding: 3rem var(--pad);
  background: var(--white);
}
.cta-band-about {
  padding: 3rem var(--pad);
  background: linear-gradient(135deg, var(--orange) 0%, #C44E00 100%);
  text-align: center;
  color: var(--white);
}
.cta-band-about .cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-band-about h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1rem;
}
.cta-band-about p {
  font-size: 1.05rem;
  opacity: .95;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-band-about .btn-primary {
  background: var(--white) !important;
  color: var(--orange) !important;
}
.cta-band-about .btn-primary:hover {
  background: var(--text-dark) !important;
  color: var(--white) !important;
}

/* === Responsive À propos === */
@media (max-width: 1024px) {
  .timeline-steps { grid-template-columns: repeat(3, 1fr); }
  .team-grid,
  .methodology-steps,
  .rse-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-line { left: 12%; right: 12%; }
}
@media (max-width: 700px) {
  .timeline-track { padding-top: 1rem; }
  .timeline-line, .timeline-house { display: none; }
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .timeline-step {
    padding: 1.4rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--orange);
    text-align: left;
  }
  .timeline-step h3, .timeline-step p { text-align: left; }
  .timeline-dot { display: none; }
  .team-grid,
  .methodology-steps,
  .rse-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FOUNDER : photo équipe + mot du gérant
   ========================================================================== */
.founder {
  padding: var(--sec) var(--pad);
  background: var(--cream);
}
.founder-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.founder-photo {
  position: relative;
  border-radius: calc(var(--radius) * 1.3);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--light);
  box-shadow: 0 20px 50px rgba(20, 20, 20, .12);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: .5rem .9rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.founder-content {
  position: relative;
  padding: 1rem 0;
}
.founder-quote-mark {
  font-family: 'Georgia', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: .5rem;
}
.founder-quote {
  font-family: var(--font-b);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  font-style: italic;
  font-weight: 400;
}
.founder-signature {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-top: 1.3rem;
  border-top: 2px solid var(--orange);
  max-width: 280px;
}
.founder-signature-name {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.founder-signature-role {
  font-size: .85rem;
  color: var(--text-mid);
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo { aspect-ratio: 16 / 11; max-height: 420px; }
  .founder-quote { font-size: 1.02rem; }
  .founder-quote-mark { font-size: 4rem; }
}

/* ==========================================================================
   BLOC LABELS / CERTIFICATIONS sur la home (v2.7)
   ========================================================================== */
.labels-home {
  padding: 3rem var(--pad);
  background: var(--white);
}
.labels-home-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.labels-home .sec-header {
  margin-bottom: 2.5rem;
}
.labels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.label-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.2);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: all .35s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.label-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(20, 20, 20, .08);
  border-color: rgba(232, 99, 10, .25);
}
.label-card-logo {
  width: 100%;
  max-width: 180px;
  height: 110px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding: .6rem;
  border: 1px solid var(--border);
}
.label-card-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.label-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-dark);
  margin: 0 0 .6rem;
}
.label-card p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}
@media (max-width: 1024px) {
  .labels-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .label-card { padding: 1.5rem 1.3rem; }
  .label-card-logo { max-width: 220px; height: 100px; }
}

/* === Responsive global v2.7 : assurer que tout tient bien === */
@media (max-width: 1024px) {
  .testi-slide { flex: 0 0 320px; padding: 1.5rem 1.3rem; }
  .testi-carousel-track { gap: 1rem; }
  .testi-carousel {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }
}
@media (max-width: 600px) {
  .testi-slide { flex: 0 0 280px; padding: 1.4rem 1.2rem; }
  .testi-slide blockquote { font-size: .9rem; }
  .testi-slide-avatar { width: 40px; height: 40px; font-size: .95rem; }
  .testi-slide-name { font-size: .85rem; }
  .testi-slide-meta { font-size: .72rem; }
  /* Boutons hero plus petits en mobile */
  .hero-fullscreen .hero-actions { flex-direction: column; gap: .7rem; width: 100%; }
  .hero-fullscreen .btn-primary, .hero-fullscreen .btn-secondary { width: 100%; justify-content: center; }
  /* Bloc fondateur sur 1 colonne en mobile */
  .founder { padding: 2.5rem var(--pad); }
  .founder-photo-tag { font-size: .65rem; padding: .4rem .7rem; }
  /* Cards contact + CTA modern */
  .contact-form-card { padding: 1.6rem 1.3rem; }
  .cta-modern-grid { padding: 1.4rem; }
  .cta-modern-content h2 { font-size: 1.5rem; }
  .cta-modern-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
  .cta-modern-actions .btn-primary { width: 100%; text-align: center; justify-content: center; }
  .cta-modern-phone { justify-content: center; }
  /* Social proof : flex column mais compact */
  .social-proof-link { padding: .9rem 1rem; }
  /* Slider avant/après */
  .before-after-slider { aspect-ratio: 4 / 5; }
  .before-after-label { font-size: .62rem; padding: .3rem .6rem; }
  /* Page contact form row */
  .contact-quick-card { padding: 1.5rem 1.3rem; }
  .contact-quick-card h3 { font-size: .72rem; }
  .contact-hero-sub { font-size: 1rem; }
}

/* ==========================================================================
   TÉMOIGNAGES v2.5 : carrousel défilant automatique
   ========================================================================== */
.testimonials {
  padding: 2.5rem 0 3rem;
  background: var(--cream);
  overflow: hidden;
}
.testimonials-wrap {
  position: relative;
}
.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 0 var(--pad);
}
.testimonials-header h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -.01em;
}
.testimonials-header h2 span { color: var(--orange); }

/* === CARROUSEL DÉFILANT AUTOMATIQUE === */
.testi-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.testi-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testiScroll 60s linear infinite;
}
.testi-carousel:hover .testi-carousel-track {
  animation-play-state: paused;
}
@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - .75rem)); }
}

/* Slides individuelles */
.testi-slide {
  flex: 0 0 380px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.2);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 8px 24px rgba(20, 20, 20, .05);
  display: flex;
  flex-direction: column;
}
.testi-stars {
  display: flex;
  gap: .15rem;
  margin-bottom: 1rem;
}
.testi-stars svg {
  width: 16px;
  height: 16px;
  color: #FFB400;
}
.testi-slide blockquote {
  font-family: var(--font-b);
  font-size: .95rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  font-style: normal;
  font-weight: 400;
  flex: 1;
}
.testi-slide-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-slide-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  flex-shrink: 0;
}
.testi-avatar-c1 { background: linear-gradient(135deg, #E8630A 0%, #C44E00 100%); }
.testi-avatar-c2 { background: linear-gradient(135deg, #2C8E96 0%, #1F6A70 100%); }
.testi-avatar-c3 { background: linear-gradient(135deg, #6B4FB8 0%, #4D3690 100%); }
.testi-avatar-c4 { background: linear-gradient(135deg, #4A8C4A 0%, #2F5F2F 100%); }
.testi-slide-info { flex: 1; min-width: 0; }
.testi-slide-name {
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .15rem;
}
.testi-slide-meta {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--text-mid);
  flex-wrap: wrap;
}
.testi-slide-project { color: var(--orange); font-weight: 600; }
.testi-slide-dot { color: var(--text-light); opacity: .6; }

/* Respect du prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .testi-carousel-track { animation-duration: 200s; }
}

/* === Ancien CSS testimonial-* gardé volontairement (HTML retiré, code mort sans effet) === */

/* Grille asymétrique : 2 colonnes desktop, la 1ère card sur 2 lignes */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.testimonial-featured {
  grid-row: 1 / 3;
}

/* Cards témoignages */
.testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.3);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(20, 20, 20, .04);
  transition: all .4s var(--ease-luxury);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-pale) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-luxury);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(20, 20, 20, .12);
  border-color: rgba(232, 99, 10, .25);
}
.testimonial:hover::before { transform: scaleX(1); }

/* Card mise en avant : plus grande, avec accent */
.testimonial-featured {
  background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
  padding: 2.8rem 2.5rem;
  border: 1px solid rgba(232, 99, 10, .15);
}
.testimonial-featured blockquote {
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
}
/* Étoiles */
.testimonial-stars {
  display: flex;
  gap: .15rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #FFB400;
}

/* Quote */
.testimonial blockquote {
  font-family: var(--font-b);
  font-size: .98rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  font-style: normal;
  font-weight: 400;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Auteur */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .03em;
  color: var(--white);
  flex-shrink: 0;
}
/* Variantes couleurs avatars */
.testimonial-avatar-1 { background: linear-gradient(135deg, #E8630A 0%, #C44E00 100%); }
.testimonial-avatar-2 { background: linear-gradient(135deg, #2C8E96 0%, #1F6A70 100%); }
.testimonial-avatar-3 { background: linear-gradient(135deg, #6B4FB8 0%, #4D3690 100%); }
.testimonial-avatar-4 { background: linear-gradient(135deg, #4A8C4A 0%, #2F5F2F 100%); }

.testimonial-author-info {
  flex: 1;
  min-width: 0;
}
.testimonial-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .15rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--text-mid);
  flex-wrap: wrap;
}
.testimonial-loc {
  color: var(--text-mid);
}
.testimonial-project {
  color: var(--orange);
  font-weight: 600;
}
.testimonial-dot {
  color: var(--text-light);
  opacity: .6;
}

/* CTA bas de section */
.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.testimonials-cta p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin: 0;
  font-weight: 500;
}

/* Responsive témoignages */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .testimonial-featured {
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .testimonial { padding: 1.6rem 1.4rem; }
  .testimonial-featured { padding: 1.8rem 1.4rem; }
  .testimonial-featured blockquote { font-size: 1.02rem !important; }
}

/* ==========================================================================
   BLOC SEO LOCAL : présentation territoire + stats
   ========================================================================== */
.seo-local {
  padding: var(--sec) var(--pad);
  background: var(--white);
}
.seo-local-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.seo-local-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.seo-local-eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .4rem .9rem;
  background: var(--orange-pale);
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.seo-local-content h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
}
.seo-local-content h2 span { color: var(--orange); }
.seo-local-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 0 0 1rem;
}
.seo-local-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.seo-local-stat-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border: 1px solid var(--border);
  transition: all .3s var(--ease-luxury);
}
.seo-local-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 99, 10, .25);
  box-shadow: 0 14px 30px rgba(20, 20, 20, .08);
}
.seo-local-stat-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .4rem;
}
.seo-local-stat-icon svg { width: 20px; height: 20px; }
.seo-local-stat-card strong {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.seo-local-stat-card span {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .seo-local-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ==========================================================================
   SOCIAL PROOF : version compacte sans fioritures
   ========================================================================== */
.social-proof {
  padding: 2rem var(--pad) 2.5rem;
  background: var(--white);
  text-align: center;
}
.social-proof-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.social-proof h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 .8rem;
}
.social-proof h2 span { color: var(--orange); }
.social-proof p {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 auto 1.8rem;
  max-width: 540px;
}
.social-proof-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-top: 1.2rem;
}
.social-proof-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--text-dark);
  transition: all .3s var(--ease-luxury);
  text-align: left;
}
.social-proof-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(20, 20, 20, .08);
  border-color: rgba(232, 99, 10, .3);
}
.social-proof-link > svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.social-proof-link.facebook > svg { color: #1877F2; }
.social-proof-link.instagram > svg { color: #E4405F; }
.social-proof-link.linkedin > svg { color: #0A66C2; }
.social-proof-link-info {
  display: flex;
  flex-direction: column;
}
.social-proof-link-info strong {
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: .03em;
}
.social-proof-link-info span {
  font-size: .76rem;
  color: var(--text-mid);
}
@media (max-width: 700px) {
  .social-proof-links { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE CONTACT : refonte v2.2 - style Webflow / Framer
   ========================================================================== */

/* Hero contact : image de fond + overlay */
.contact-hero {
  padding: 6rem var(--pad) 4.5rem;
  background: linear-gradient(135deg, rgba(20,20,20,.75) 0%, rgba(20,20,20,.5) 60%, rgba(232,99,10,.35) 100%), url('assets/img/about/devanture-vdf.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--white);
}
.contact-hero h1 {
  color: var(--white) !important;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}
.contact-hero h1 span { color: #FFC58A !important; }
.contact-hero-sub { color: rgba(255, 255, 255, .92) !important; }
.contact-hero .breadcrumb { color: rgba(255, 255, 255, .78) !important; }
.contact-hero .breadcrumb a { color: rgba(255, 255, 255, .92) !important; }
.contact-hero .breadcrumb a:hover { color: #FFC58A !important; }
.contact-hero .breadcrumb .sep { color: rgba(255, 255, 255, .5) !important; }
.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.contact-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .5rem 1.1rem;
  background: rgba(232, 99, 10, .12);
  border: 1px solid rgba(232, 99, 10, .25);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.contact-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 1.2rem;
  letter-spacing: -.01em;
}
.contact-hero h1 span { color: var(--orange); }
.contact-hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
}
.contact-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.contact-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-hero-stat strong {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.contact-hero-stat span {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-mid);
  margin-top: .4rem;
}

/* Cartes de contact rapides */
.contact-quick-cards {
  padding: 0 var(--pad) 0;
  margin-top: -3rem;
  position: relative;
  z-index: 5;
}
.contact-quick-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .8rem;
  box-shadow: 0 8px 30px rgba(20, 20, 20, .06);
  transition: all .35s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.contact-quick-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-luxury);
}
.contact-quick-card:hover::before { transform: scaleX(1); }
.contact-quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(20, 20, 20, .12);
  border-color: rgba(232, 99, 10, .3);
}
.contact-quick-card-static:hover {
  transform: none;
  cursor: default;
}
.contact-quick-card-static:hover::before { transform: scaleX(0); }
.contact-quick-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.contact-quick-card:hover .contact-quick-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-6deg);
}
.contact-quick-card-static:hover .contact-quick-icon {
  background: var(--orange-pale);
  color: var(--orange);
  transform: none;
}
.contact-quick-card h3 {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-light);
  margin: 0;
}
.contact-quick-card p {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}
.contact-quick-email { font-size: .82rem !important; word-break: break-all; }
.contact-quick-card p small {
  display: block;
  font-size: .75rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: .3rem;
}
/* .contact-quick-cta retiré (flèches enlevées) */

/* Section formulaire */
.contact-form-section {
  padding: var(--sec) var(--pad);
  background: var(--white);
}
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.contact-form-eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .4rem .9rem;
  background: var(--orange-pale);
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.contact-form-info h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 1.2rem;
}
.contact-form-info h2 span { color: var(--orange); }
.contact-form-info > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 1.2rem;
}
.contact-form-phone-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.2rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text-mid);
  margin-bottom: 2rem !important;
}
.contact-form-phone-line svg {
  color: var(--orange);
  flex-shrink: 0;
}
.contact-form-phone-line a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.contact-form-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.contact-form-checklist svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-form-checklist li > div {
  display: flex;
  flex-direction: column;
}
.contact-form-checklist strong {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.contact-form-checklist span {
  font-size: .85rem;
  color: var(--text-mid);
  margin-top: .15rem;
}
/* .contact-form-trust (note Google) retiré */

/* Card formulaire */
.contact-form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: calc(var(--radius) * 1.3);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(20, 20, 20, .08);
}
.contact-form-card h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 .4rem;
}
.contact-form-card > p {
  font-size: .85rem;
  color: var(--text-light);
  margin: 0 0 1.5rem;
}
.contact-form-fallback {
  text-align: center;
  padding: 2rem 1rem;
}
.contact-form-fallback svg { margin-bottom: 1rem; }
.contact-form-fallback h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 .8rem;
}
.contact-form-fallback p {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.contact-form-fallback code {
  background: var(--cream);
  padding: .2rem .5rem;
  border-radius: 4px;
  font-size: .78rem;
}
.contact-form-fallback-actions {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FORMULAIRE NATIF v2.6 : champs propres, focus orange, validation === */
.vdf-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.vdf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.vdf-form-field { display: flex; flex-direction: column; gap: .45rem; }
.vdf-form-field label {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.vdf-form-field label .req { color: var(--orange); margin-left: 2px; }
.vdf-form-field input,
.vdf-form-field select,
.vdf-form-field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-b);
  font-size: .95rem;
  color: var(--text-dark);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.vdf-form-field input::placeholder,
.vdf-form-field textarea::placeholder {
  color: var(--text-light);
  font-style: normal;
}
.vdf-form-field input:focus,
.vdf-form-field select:focus,
.vdf-form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 99, 10, .12);
  background: #fff;
}
.vdf-form-field textarea { resize: vertical; min-height: 140px; }
.vdf-form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23676868' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}

/* Honeypot caché */
.vdf-form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Mention RGPD */
.vdf-form-rgpd small {
  font-size: .72rem;
  line-height: 1.5;
  color: var(--text-light);
}
.vdf-form-rgpd a {
  color: var(--orange);
  text-decoration: underline;
}

/* Bouton submit */
.vdf-form-submit {
  margin-top: .4rem;
  width: 100%;
  justify-content: center;
  font-size: .95rem !important;
  padding: 1rem 2rem !important;
}
.vdf-form-submit svg { width: 18px; height: 18px; }

/* Alertes (succès / erreur) */
.contact-form-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}
.contact-form-alert.success {
  background: rgba(74, 140, 74, .08);
  border: 1px solid rgba(74, 140, 74, .25);
  color: #2F5F2F;
}
.contact-form-alert.error {
  background: rgba(220, 38, 38, .06);
  border: 1px solid rgba(220, 38, 38, .25);
  color: #991B1B;
}
.contact-form-alert svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.contact-form-alert.success svg { color: #2F5F2F; }
.contact-form-alert.error svg { color: #991B1B; }
.contact-form-alert strong {
  display: block;
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .15rem;
}
.contact-form-alert span {
  display: block;
  font-size: .88rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .vdf-form-row { grid-template-columns: 1fr; }
}

/* FAQ contact */
.contact-faq {
  padding: var(--sec) var(--pad);
  background: var(--cream);
}

/* Responsive contact */
@media (max-width: 1024px) {
  .contact-quick-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-form-card-ribbon { right: 1.5rem; }
}
@media (max-width: 600px) {
  .contact-quick-wrap { grid-template-columns: 1fr; }
  .contact-hero-stats { gap: 1.5rem; }
  .contact-hero-stat strong { font-size: 2rem; }
  .contact-form-card { padding: 1.8rem 1.4rem; }
}

/* ==========================================================================
   RESCUE : grilles manquantes (suite à la conversion en theme autonome)
   Ces blocs n'étaient pas définis en base, ce qui cassait le rendu.
   ========================================================================== */

/* Témoignages : grille 3 colonnes */
.testi {
  padding: var(--sec) var(--pad);
  background: var(--light);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Zone d'intervention : 2 colonnes (texte + carte) */
.zone {
  padding: var(--sec) var(--pad);
  background: var(--white);
}
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: stretch;
}
.zone-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  text-transform: uppercase;
  margin: 0 0 1.2rem;
}
.zone-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.zone-tag:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* À propos : 2 colonnes (image stack + texte) */
.about-home {
  padding: var(--sec) var(--pad);
  background: var(--light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.about-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-h);
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(232,99,10,.35);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.about-badge span:first-child {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge span:last-child {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .92;
}
.about-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.about-text p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* Bloc Réalisations : très compact */
.rooms {
  padding: 1rem 0 2.5rem;
  background: var(--white);
  overflow: hidden;
}
.rooms .sec-header {
  padding: 0 var(--pad);
  margin-bottom: 1.2rem;
}
.rooms .sec-header .sec-desc { margin-top: .5rem; }

/* Bloc Labels : compact aussi */
.labels-home { padding: 2.2rem var(--pad) 2.5rem; }
.labels-home .sec-header { margin-bottom: 2rem; }

/* CTA modern : padding réduit */
.cta-modern { padding: 2.5rem var(--pad) 3rem; }

/* Services home : padding réduit */
.services-home { padding: 2.5rem var(--pad) 3rem; }
.rooms .carousel-wrap {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.rooms .carousel-nav {
  top: 45%;
}
.rooms .carousel-prev { left: -.5rem; }
.rooms .carousel-next { right: -.5rem; }

/* Carrousel réalisations : scroll horizontal */
.real-carousel {
  padding: var(--sec) 0 var(--sec);
  background: var(--white);
  overflow: hidden;
}
.rooms-scroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem var(--pad);
  scrollbar-width: thin;
}
.rooms-scroll::-webkit-scrollbar { height: 6px; }
.rooms-scroll::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
.room-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: all .3s var(--ease-luxury);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.room-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-luxury);
}
.room-card-info {
  padding: 1.2rem 1.4rem 1.4rem;
}
.room-card-info h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 .3rem;
}
.room-card-info span {
  font-size: .8rem;
  color: var(--text-light);
}

/* FAQ : items dépliables */
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .3s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-a p { padding: 0 0 1.4rem; margin: 0; }
.faq-home {
  padding: var(--sec) var(--pad);
  background: var(--light);
}

/* ==========================================================================
   CTA COMPACT (v3.5) : bandeau plus petit avec photo de fond + overlay
   ========================================================================== */
.cta-compact {
  padding: 3rem var(--pad);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
}
.cta-compact-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.cta-compact h2 {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 .8rem;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}
.cta-compact h2 span { color: #FFC58A; }
.cta-compact p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .92);
  margin: 0 auto 1.5rem;
  max-width: 540px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}
.cta-compact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cta-compact-phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .25s;
}
.cta-compact-phone:hover { color: #FFC58A; }
.cta-compact-phone svg { color: #FFC58A; }
@media (max-width: 600px) {
  .cta-compact { padding: 2.5rem var(--pad); }
  .cta-compact-actions { flex-direction: column; gap: 1rem; width: 100%; }
  .cta-compact-actions .btn-primary { width: 100%; justify-content: center; }
}

/* ==========================================================================
   CTA MODERNE STYLE FRAMER : split visuel + contenu, gradient, badge flottant
   ========================================================================== */
.cta-modern {
  padding: var(--sec) var(--pad);
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.cta-modern-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
.cta-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(20, 20, 20, .12);
  border: 1px solid var(--border);
}

/* Visuel gauche */
.cta-modern-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}
.cta-modern-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-luxury);
}
.cta-modern-visual:hover img { transform: scale(1.04); }
.cta-modern-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.1rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

/* Contenu droite */
.cta-modern-content {
  padding: 1rem 1.5rem 1rem 0;
}
.cta-modern-eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  padding: .4rem .9rem;
  background: var(--orange-pale);
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.cta-modern-content h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0 0 1.2rem;
  letter-spacing: -.01em;
}
.cta-modern-content h2 span { color: var(--orange); }
.cta-modern-content > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 1.8rem;
}
.cta-modern-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.cta-modern-checklist li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .95rem;
  color: var(--text-dark);
}
.cta-modern-checklist li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 4px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
}
.cta-modern-checklist li span { font-weight: 500; }
.cta-modern-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
.cta-modern-phone {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .3s;
}
.cta-modern-phone:hover { color: var(--orange); }
.cta-modern-phone svg {
  padding: 8px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: all .3s;
}
.cta-modern-phone:hover svg {
  background: var(--orange);
  color: var(--white);
  transform: rotate(8deg);
}

/* Responsive CTA moderne */
@media (max-width: 900px) {
  .cta-modern-grid {
    grid-template-columns: 1fr;
    padding: 1.8rem;
    gap: 2rem;
  }
  .cta-modern-visual {
    aspect-ratio: 16 / 10;
    max-height: 380px;
  }
  .cta-modern-content { padding: 0; }
}

/* Contact cards : 3 colonnes (téléphone, mail, adresse) */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto;
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

/* Certifications : grille à 3 ou 4 */
.certif-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE : surcharge des grilles ajoutées
   ========================================================================== */
@media (max-width: 1024px) {
  .testi-grid,
  .zone-grid,
  .about-grid,
  .contact-cards,
  .contact-main-grid,
  .certif-cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-badge { top: -1rem; left: 1rem; }
  .hero-fullscreen {
    min-height: 70vh;
    padding: 5rem var(--pad) 4rem;
  }
}
@media (max-width: 768px) {
  .hero-fullscreen {
    min-height: 60vh;
    padding: 4rem var(--pad) 3rem;
  }
  .testi-grid,
  .zone-grid,
  .about-grid,
  .contact-cards,
  .contact-main-grid,
  .certif-cards {
    gap: 2rem;
  }
}

/* ==========================================================================
   RESPONSIVE MOBILE — correctifs VDF (footer, carte Google Maps, compteur)
   Ajouté le 2026-06-22. TOUT est dans des media queries mobiles :
   AUCUN impact sur la version ordinateur (> 768px). Bloc placé en fin de
   fichier pour gagner dans la cascade sans modifier les règles existantes.
   ========================================================================== */
@media (max-width: 768px) {

  /* 1) COMPTEUR : grille 2x2 alignee (au lieu d'une colonne trop longue) */
  .stats-band {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.6rem 1rem !important;
    padding: 2.4rem var(--pad) !important;
    align-items: start;
    justify-items: center;
  }
  .sband-item { padding: 0 !important; }
  .sband-num  { font-size: 2rem !important; }
  .sband-lbl  { font-size: .72rem !important; }

  /* 2) CARTE GOOGLE MAPS : hauteur explicite (l'aspect-ratio s'effondrait a 0) */
  .zone-map {
    aspect-ratio: auto !important;
    height: 300px !important;
    min-height: 300px !important;
    display: block !important;
    position: relative !important;
  }
  .zone-map iframe {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
  }

  /* 3) FOOTER : 2 colonnes compactes (au lieu d'une longue colonne unique) */
  .vdf-footer .ft-grid {
    grid-template-columns: 1fr 1fr !important;
    text-align: left !important;
    gap: 1.6rem 1.2rem !important;
  }
  .vdf-footer .ft-grid > div:first-child {
    grid-column: 1 / -1 !important;       /* bloc marque sur toute la largeur */
    text-align: center !important;
  }
  .vdf-footer .ft-socials { justify-content: center !important; }
  .vdf-footer .ft-col h5  { margin-bottom: .6rem !important; }
  .vdf-footer .ft-col a,
  .vdf-footer .ft-col span {
    display: block !important;
    justify-content: flex-start !important;
    margin-bottom: .35rem !important;
    font-size: .8rem !important;
  }
}

/* Tres petits ecrans : on garde 2 colonnes mais on reduit un peu */
@media (max-width: 380px) {
  .sband-num { font-size: 1.7rem !important; }
  .vdf-footer .ft-col a,
  .vdf-footer .ft-col span { font-size: .76rem !important; }
}
