/* ===== Poppins auto-hébergé (perf : supprime la requête Google Fonts bloquante) ===== */
@font-face{font-family:'Poppins';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/poppins-300.woff2') format('woff2')}
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/poppins-400.woff2') format('woff2')}
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/poppins-500.woff2') format('woff2')}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/poppins-600.woff2') format('woff2')}
@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/poppins-700.woff2') format('woff2')}
/* ============================================================
   RMS RÉNOVATION — main.css
   ============================================================ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --dark:#1B1B1B;--dark2:#2A2A2A;--dark3:#3A3A3A;
  --gray:#6B6B6B;--gray2:#999;--gray3:#C5C5C5;
  --light:#F6F5F3;--light2:#EDEBE8;--white:#FFFFFF;
  --accent:#C45A2D;--accent2:#D96E3F;--accent-bg:rgba(196,90,45,.06);
  --border:rgba(0,0,0,.08);--border2:rgba(0,0,0,.12);
  --radius:6px;--radius-lg:10px;
  --shadow:0 1px 3px rgba(0,0,0,.06),0 4px 12px rgba(0,0,0,.04);
  --shadow-lg:0 4px 16px rgba(0,0,0,.08),0 12px 40px rgba(0,0,0,.06);
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Poppins',-apple-system,BlinkMacSystemFont,sans-serif;color:var(--dark);background:var(--white);font-weight:400;line-height:1.6;overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
.container{max-width:1440px;margin:0 auto;padding:0 5%}

/* ---------- TOPBAR ---------- */
.topbar{background:var(--dark);color:var(--white);padding:.55rem 5%;display:flex;justify-content:space-between;align-items:center;font-size:.72rem}
.topbar a{color:var(--gray3);transition:color .2s}
.topbar a:hover{color:var(--accent2)}
.topbar-left{display:flex;gap:2rem;align-items:center}
.topbar-left span{display:flex;align-items:center;gap:.4rem}
.topbar-right{display:flex;gap:1.5rem;align-items:center}

/* ---------- HEADER / NAV ---------- */
.site-header{position:sticky;top:0;z-index:1100;background:var(--white);border-bottom:1px solid var(--border);transition:box-shadow .3s}
.site-header.scrolled{box-shadow:var(--shadow)}
.nav{max-width:1440px;margin:0 auto;padding:0 5%;display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{display:flex;align-items:center;gap:.5rem}
.logo-text{display:block;font-size:1.1rem;font-weight:600;color:var(--dark);line-height:1.1}
.logo-text span{color:var(--accent)}
.logo-sub{display:block;font-size:.58rem;color:var(--gray);text-transform:uppercase;letter-spacing:.08em;margin-top:1px}
.nav-links{display:flex;gap:1.8rem;align-items:center;list-style:none}
.nav-links a{font-size:.8rem;font-weight:500;color:var(--dark2);transition:color .2s}
.nav-links a:hover,.nav-links .current-menu-item>a{color:var(--accent)}
.nav-right{display:flex;gap:1.2rem;align-items:center}
.nav-cta{display:inline-flex;align-items:center;gap:.5rem;padding:.65rem 1.5rem;background:var(--accent);color:var(--white);font-size:.78rem;font-weight:600;border:none;border-radius:var(--radius);cursor:pointer;transition:background .2s,transform .15s}
.nav-cta:hover{background:var(--accent2);transform:translateY(-1px);color:var(--white)}
.nav-phone{font-size:.82rem;font-weight:600;color:var(--dark);display:flex;align-items:center;gap:.4rem;white-space:nowrap}

/* Hamburger */
.hamburger{display:none;background:none;border:none;cursor:pointer;flex-direction:column;gap:5px;padding:8px;z-index:1100}
.hamburger span{width:24px;height:2px;background:var(--dark);border-radius:2px;transition:all .35s cubic-bezier(.16,1,.3,1)}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- MOBILE FULLSCREEN MENU ---------- */
.mobile-menu{position:fixed;inset:0;z-index:1050;background:var(--dark);display:flex;flex-direction:column;justify-content:flex-start;padding:96px 8% 2rem;overflow-y:auto;opacity:0;visibility:hidden;transform:translateY(-100%);transition:transform .5s cubic-bezier(.77,0,.175,1),opacity .4s,visibility .4s}
.mobile-menu.open{opacity:1;visibility:visible;transform:translateY(0)}
.mobile-menu ul{list-style:none;display:flex;flex-direction:column;gap:.2rem}
.mobile-menu li{overflow:hidden}
.mobile-menu a{display:block;font-size:1.8rem;font-weight:600;color:var(--white);padding:.5rem 0;transition:color .2s,padding-left .25s;opacity:0;transform:translateY(20px)}
.mobile-menu.open a{opacity:1;transform:translateY(0);transition:opacity .5s,transform .5s,color .2s,padding-left .25s}
.mobile-menu.open li:nth-child(1) a{transition-delay:.1s}
.mobile-menu.open li:nth-child(2) a{transition-delay:.16s}
.mobile-menu.open li:nth-child(3) a{transition-delay:.22s}
.mobile-menu.open li:nth-child(4) a{transition-delay:.28s}
.mobile-menu.open li:nth-child(5) a{transition-delay:.34s}
.mobile-menu.open li:nth-child(6) a{transition-delay:.4s}
.mobile-menu.open li:nth-child(7) a{transition-delay:.46s}
.mobile-menu.open li:nth-child(8) a{transition-delay:.52s}
.mobile-menu a:hover{color:var(--accent2);padding-left:.6rem}
.mobile-menu .mm-contact{margin-top:2.5rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.1);display:flex;flex-direction:column;gap:.8rem}
.mobile-menu .mm-contact a{font-size:1rem;font-weight:500;color:var(--gray2)}
.mobile-menu .mm-cta{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;margin-top:1.5rem;padding:1rem 2rem;background:var(--accent);color:var(--white);font-size:.85rem;font-weight:600;border-radius:var(--radius);width:fit-content;opacity:0;transform:translateY(20px)}
.mobile-menu.open .mm-cta{opacity:1;transform:translateY(0);transition:opacity .5s .58s,transform .5s .58s}
body.menu-open{overflow:hidden}

/* ---------- HERO ---------- */
.hero{position:relative;min-height:600px;display:flex;align-items:center;overflow:hidden;background:var(--dark)}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.38);z-index:0}
.hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(.4);z-index:0}
.hero-inner{position:relative;z-index:1;max-width:1440px;margin:0 auto;padding:6rem 5%;display:grid;grid-template-columns:1fr auto;gap:4rem;align-items:center;width:100%}
.hero-content{max-width:640px}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(255,255,255,.12);backdrop-filter:blur(6px);padding:.4rem 1rem;border-radius:20px;margin-bottom:1.5rem}
.hero-badge-dot{width:6px;height:6px;background:#4ADE80;border-radius:50%}
.hero-badge span{font-size:.7rem;color:rgba(255,255,255,.85);font-weight:400}
.hero h1{font-size:clamp(1.6rem,3.2vw,2.5rem);font-weight:700;line-height:1.15;color:var(--white);margin-bottom:1.2rem}
.hero h1 span{color:var(--accent2)}
.hero-desc{font-size:1rem;line-height:1.7;color:rgba(255,255,255,.7);margin-bottom:2rem;font-weight:300;max-width:520px}
.hero-btns{display:flex;gap:1rem;align-items:center;flex-wrap:wrap}
.btn-primary{display:inline-flex;align-items:center;gap:.5rem;padding:.9rem 2rem;background:var(--accent);color:var(--white);font-size:.82rem;font-weight:600;border:none;border-radius:var(--radius);cursor:pointer;transition:background .2s,transform .15s}
.btn-primary:hover{background:var(--accent2);transform:translateY(-2px);color:var(--white)}
.btn-secondary{display:inline-flex;align-items:center;gap:.5rem;padding:.9rem 2rem;background:transparent;color:var(--white);font-size:.82rem;font-weight:500;border:1px solid rgba(255,255,255,.3);border-radius:var(--radius);cursor:pointer;transition:all .2s}
.btn-secondary:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.5);color:var(--white)}
.hero-inner-single{grid-template-columns:1fr}
.hero-inner-single .hero-content{max-width:780px}
.hero-rating{display:inline-flex;align-items:center;gap:.5rem;font-size:.92rem;color:rgba(255,255,255,.85);margin-bottom:1.4rem;font-weight:400}
.hero-rating strong{color:#fff;font-weight:700}
.hero-stars{color:#E8A93B;letter-spacing:1px}
.hero-rating-sep{opacity:.5}
.hero-chips{display:flex;gap:.6rem;flex-wrap:wrap;margin-bottom:1.8rem}
.hero-chip{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.16);padding:.4rem .85rem;border-radius:20px;font-size:.76rem;color:rgba(255,255,255,.9);font-weight:400}

/* page hero (interior pages) */
.page-hero{background:var(--dark);color:var(--white);padding:5.5rem 5% 3.25rem;position:relative;overflow:hidden}
.page-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.32);z-index:0}
.page-hero-inner{position:relative;z-index:1;max-width:1440px;margin:0 auto}
.page-hero .crumbs{font-size:.72rem;color:var(--gray2);margin-bottom:1.2rem;letter-spacing:.04em}
.page-hero .crumbs a{color:var(--accent2)}
.page-hero h1{font-size:clamp(2rem,4vw,3rem);font-weight:700;line-height:1.15;max-width:760px}
.page-hero h1 span{color:var(--accent2)}
.page-hero p{margin-top:1rem;font-size:1rem;color:rgba(255,255,255,.7);max-width:620px;font-weight:300}

/* ---------- TRUST BAR (compteurs) ---------- */
.trust-bar{background:var(--light);border-bottom:1px solid var(--border);padding:2rem 5%}
.trust-stats{max-width:1000px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;text-align:center}
.ts-item{position:relative}
.ts-item:not(:last-child)::after{content:'';position:absolute;right:0;top:15%;height:70%;width:1px;background:var(--border)}
.ts-num{font-size:2rem;font-weight:700;color:var(--accent);line-height:1}
.ts-label{font-size:.78rem;color:var(--gray);margin-top:.35rem}
@media(max-width:600px){.trust-stats{grid-template-columns:1fr 1fr;gap:1.6rem}.ts-item:nth-child(2)::after{display:none}}

/* ---------- SECTIONS ---------- */
.sec{max-width:1440px;margin:0 auto;padding:3.5rem 5%}
.sec-wide{padding:0}
.sec-label{font-size:.68rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);margin-bottom:.5rem}
.sec-title{font-size:clamp(1.8rem,3vw,2.4rem);font-weight:700;line-height:1.2;color:var(--dark);margin-bottom:1rem}
.sec-title span{color:var(--accent)}
.sec-desc{font-size:.95rem;line-height:1.7;color:var(--gray);max-width:580px;font-weight:300}
.sec-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:2.25rem;flex-wrap:wrap;gap:1.5rem}

/* ---------- STATS ---------- */
.stats-section{background:var(--dark);padding:3.25rem 5%}
.stats-inner{max-width:1440px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}
.stat-box{text-align:center;position:relative}
.stat-box:not(:last-child)::after{content:'';position:absolute;right:-1rem;top:50%;transform:translateY(-50%);width:1px;height:50px;background:rgba(255,255,255,.1)}
.stat-num{font-size:2.8rem;font-weight:700;color:var(--accent2);line-height:1}
.stat-suffix{font-size:1.6rem}
.stat-lbl{font-size:.8rem;color:var(--gray2);margin-top:.5rem;font-weight:400}

/* ---------- SERVICES ---------- */
.svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.svc-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:2rem;position:relative;overflow:hidden;transition:border-color .3s,box-shadow .3s;display:flex;flex-direction:column}
.svc-card:hover{border-color:var(--accent);box-shadow:var(--shadow-lg)}
.svc-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--accent);transform:scaleX(0);transform-origin:left;transition:transform .4s}
.svc-card:hover::before{transform:scaleX(1)}
.svc-icon{width:48px;height:48px;background:var(--accent-bg);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:1.4rem;margin-bottom:1.2rem}
.svc-name{font-size:1.05rem;font-weight:600;color:var(--dark);margin-bottom:.5rem}
.svc-desc{font-size:.85rem;color:var(--gray);line-height:1.65;margin-bottom:1rem}
.svc-list{list-style:none;display:flex;flex-direction:column;gap:.35rem;margin-bottom:1rem}
.svc-list li{font-size:.78rem;color:var(--gray);display:flex;align-items:center;gap:.5rem}
.svc-list li::before{content:'✓';color:var(--accent);font-size:.7rem;font-weight:700}
.svc-more{display:inline-flex;align-items:center;gap:.3rem;font-size:.78rem;font-weight:600;color:var(--accent);margin-top:auto;transition:gap .2s}
.svc-more:hover{gap:.6rem;color:var(--accent)}

/* ---------- AVANTAGES ---------- */
.av-section{background:var(--light)}
.av-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.av-img-wrap{position:relative;border-radius:var(--radius-lg);overflow:hidden}
.av-img{width:100%;height:480px;object-fit:cover}
.av-badge{position:absolute;bottom:1.5rem;left:1.5rem;background:var(--accent);color:var(--white);padding:1rem 1.3rem;border-radius:var(--radius);text-align:center}
.av-badge-n{font-size:1.4rem;font-weight:700;line-height:1}
.av-badge-t{font-size:.6rem;font-weight:500;letter-spacing:.04em;opacity:.85;margin-top:.15rem}
.av-points{display:flex;flex-direction:column;gap:2rem}
.av-pt{display:flex;gap:1rem}
.av-pt-icon{width:44px;height:44px;background:var(--accent-bg);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.2rem}
.av-pt-title{font-size:.95rem;font-weight:600;color:var(--dark);margin-bottom:.25rem}
.av-pt-desc{font-size:.85rem;color:var(--gray);line-height:1.6}

/* ---------- PORTFOLIO ---------- */
.pf-cat{font-size:.62rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--accent2);margin-bottom:.3rem}

/* ---------- PROCESS ---------- */
.proc-section{background:var(--dark);color:var(--white)}
.proc-section .sec-label{color:var(--accent2)}
.proc-section .sec-title{color:var(--white)}
.proc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:3.5rem}
.proc-card{text-align:center;padding:2rem 1.5rem}
.proc-num{width:50px;height:50px;border-radius:50%;border:2px solid var(--accent);display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem;font-weight:700;font-size:.95rem;color:var(--accent2);transition:all .3s}
.proc-card:hover .proc-num{background:var(--accent);color:var(--white)}
.proc-t{font-size:.95rem;font-weight:600;color:var(--white);margin-bottom:.6rem}
.proc-d{font-size:.82rem;color:var(--gray2);line-height:1.6}

/* ---------- ENGAGEMENTS ---------- */
.eng-section{background:var(--dark2);color:var(--white)}
.eng-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3.5rem}
.eng-card{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-lg);padding:2.2rem;transition:all .3s}
.eng-card:hover{background:rgba(196,90,45,.08);border-color:var(--accent)}
.eng-icon{width:52px;height:52px;background:var(--accent);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1.3rem}
.eng-title{font-size:1.05rem;font-weight:600;color:var(--white);margin-bottom:.6rem}
.eng-desc{font-size:.85rem;color:var(--gray2);line-height:1.65}

/* ---------- AVIS CLIENTS (synthèse + cartes) ---------- */
.rv-summary{display:flex;align-items:center;gap:2rem;flex-wrap:wrap;justify-content:center;background:#FBEEE6;border:1px solid #F2DFD3;border-radius:var(--radius-lg);padding:1.4rem 2rem;margin-bottom:2rem}
.rv-score{font-size:2.6rem;font-weight:700;color:var(--accent);line-height:1}
.rv-summary-meta{display:flex;flex-direction:column;gap:.2rem}
.rv-summary-meta small{color:var(--gray);font-size:.8rem}
.rv-stars{color:#E8A93B;letter-spacing:1px;font-size:1rem}
.rv-100{color:var(--accent);font-size:1.3rem;font-weight:700}
.rv-summary-div{width:1px;height:46px;background:#E7CDBE}
.rv-gbadge{display:inline-flex;align-items:center;gap:.5rem;font-size:.85rem;color:var(--gray);font-weight:500}
.rv-gmark{font-weight:700;font-size:1.05rem;background:linear-gradient(90deg,#4285F4 25%,#EA4335 25% 50%,#FBBC05 50% 75%,#34A853 75%);-webkit-background-clip:text;background-clip:text;color:transparent}
.rv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.rvc{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.6rem;display:flex;flex-direction:column;gap:.8rem;transition:transform .25s,box-shadow .25s}
.rvc:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.rvc-quote{font-size:.9rem;color:var(--dark2);line-height:1.65}
.rvc-who{display:flex;align-items:center;gap:.7rem;margin-top:auto;padding-top:.9rem;border-top:1px solid var(--border)}
.rvc-who b{display:block;font-size:.86rem;color:var(--dark);font-weight:600}
.rvc-who>span>span{font-size:.74rem;color:var(--gray)}
.rv-av{width:44px;height:44px;border-radius:50%;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:.85rem;flex-shrink:0}
@media(max-width:600px){.rv-summary{gap:1.2rem;padding:1.2rem}.rv-summary-div{display:none}}

/* ---------- ZONES ---------- */
.zones-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.8rem;margin-top:3rem}
.zone-chip{display:flex;align-items:center;gap:.6rem;padding:.9rem 1.2rem;background:var(--white);border:1px solid var(--border);border-radius:var(--radius);font-size:.85rem;color:var(--dark2);font-weight:500;transition:all .2s}
.zone-chip:hover{border-color:var(--accent);background:var(--accent-bg);transform:translateY(-2px)}
.zone-chip span{color:var(--accent);font-size:.9rem}
.zones-note{text-align:center;margin-top:2rem;font-size:.85rem;color:var(--gray)}
.zones-note a{color:var(--accent);font-weight:600}

/* ---------- BLOG ---------- */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3.5rem}
.blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:all .3s;display:flex;flex-direction:column}
.blog-card:hover{box-shadow:var(--shadow-lg);transform:translateY(-3px)}
.blog-img{height:200px;width:100%;object-fit:cover;background:var(--light2)}
.blog-body{padding:1.6rem;display:flex;flex-direction:column;flex:1}
.blog-meta{font-size:.7rem;color:var(--gray2);margin-bottom:.8rem;display:flex;gap:.8rem;align-items:center}
.blog-tag{display:inline-block;font-size:.62rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--accent);background:var(--accent-bg);padding:.3rem .7rem;border-radius:3px;margin-bottom:.9rem;align-self:flex-start}
.blog-title{font-size:1.05rem;font-weight:600;color:var(--dark);line-height:1.4;margin-bottom:.6rem}
.blog-card:hover .blog-title{color:var(--accent)}
.blog-excerpt{font-size:.83rem;color:var(--gray);line-height:1.6;margin-bottom:1rem}
.blog-more{font-size:.78rem;font-weight:600;color:var(--accent);display:inline-flex;align-items:center;gap:.3rem;transition:gap .2s;margin-top:auto}
.blog-card:hover .blog-more{gap:.6rem}
.pagination{display:flex;justify-content:center;gap:.5rem;margin-top:4rem;flex-wrap:wrap}
.pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;padding:0 .6rem;border:1px solid var(--border);border-radius:var(--radius);font-size:.85rem;color:var(--dark2);transition:all .2s}
.pagination .page-numbers:hover,.pagination .page-numbers.current{background:var(--accent);border-color:var(--accent);color:var(--white)}

/* ---------- SINGLE POST / PAGE CONTENT ---------- */
.entry{max-width:760px;margin:0 auto;padding:4rem 5% 5rem}
.entry-meta{font-size:.75rem;color:var(--gray2);margin-bottom:1.5rem;display:flex;gap:1rem;flex-wrap:wrap}
.entry-meta .cat{color:var(--accent);font-weight:600;text-transform:uppercase;letter-spacing:.06em}
.entry-content{font-size:1rem;line-height:1.8;color:var(--dark2)}
.entry-content h2{font-size:1.5rem;font-weight:700;color:var(--dark);margin:2.5rem 0 1rem}
.entry-content h3{font-size:1.2rem;font-weight:600;color:var(--dark);margin:2rem 0 .8rem}
.entry-content p{margin-bottom:1.3rem}
.entry-content ul,.entry-content ol{margin:0 0 1.3rem 1.3rem}
.entry-content li{margin-bottom:.5rem}
.entry-content a{color:var(--accent);font-weight:500;text-decoration:underline}
.entry-content img{border-radius:var(--radius-lg);margin:2rem 0;max-height:380px;width:100%;object-fit:cover}
.entry-content blockquote{border-left:3px solid var(--accent);padding:.5rem 0 .5rem 1.5rem;margin:2rem 0;font-style:italic;color:var(--gray)}
.entry-content strong{color:var(--dark);font-weight:600}
.featured-img{width:100%;max-height:440px;object-fit:cover;border-radius:var(--radius-lg);margin-bottom:2.5rem}
.post-cta{margin-top:3rem;padding:2.5rem;background:var(--light);border-radius:var(--radius-lg);text-align:center}
.post-cta h3{font-size:1.3rem;font-weight:700;color:var(--dark);margin-bottom:.6rem}
.post-cta p{font-size:.9rem;color:var(--gray);margin-bottom:1.5rem}

/* Generic page content (when rendered via page.php) */
.page-content-wrap{max-width:920px;margin:0 auto;padding:3.5rem 5% 4rem}
.page-content-wrap .entry-content h2{font-size:1.6rem;margin-top:2.8rem}

/* ---------- CTA BANNER ---------- */
.cta-banner{background:var(--accent);padding:3.25rem 5%;text-align:center}
.cta-banner h2{font-size:clamp(1.6rem,3vw,2.2rem);font-weight:700;color:var(--white);margin-bottom:.8rem;max-width:760px;margin-left:auto;margin-right:auto}
.cta-banner p{font-size:.95rem;color:rgba(255,255,255,.85);margin-bottom:2rem;font-weight:300}
.btn-white{display:inline-flex;align-items:center;gap:.5rem;padding:.95rem 2.2rem;background:var(--white);color:var(--dark);font-size:.82rem;font-weight:600;border:none;border-radius:var(--radius);cursor:pointer;transition:all .2s}
.btn-white:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg);color:var(--dark)}

/* ---------- CONTACT ---------- */
.ct-section{background:var(--light)}
.ct-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:3rem;align-items:start}
.ct-info h3{font-size:1.3rem;font-weight:600;color:var(--dark);margin-bottom:1.5rem}
.ct-items{display:flex;flex-direction:column;gap:1.5rem}
.ct-item{display:flex;gap:1rem;align-items:flex-start}
.ct-icon{width:42px;height:42px;background:var(--accent-bg);border-radius:var(--radius);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.ct-label{font-size:.68rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--gray2)}
.ct-val{font-size:.9rem;color:var(--dark);font-weight:500;margin-top:.1rem}
.ct-hours{margin-top:2rem;padding:1.5rem;background:var(--white);border-radius:var(--radius-lg);border:1px solid var(--border)}
.ct-hours h4{font-size:.82rem;font-weight:600;color:var(--dark);margin-bottom:.8rem}
.ct-h-row{display:flex;justify-content:space-between;padding:.3rem 0;font-size:.82rem}
.ct-h-day{color:var(--dark);font-weight:500}
.ct-h-time{color:var(--gray)}
.ct-form-wrap{background:var(--white);border-radius:var(--radius-lg);padding:2.5rem;border:1px solid var(--border);box-shadow:var(--shadow)}
.ct-form-wrap h3{font-size:1.15rem;font-weight:600;color:var(--dark);margin-bottom:.4rem}
.ct-form-wrap .sub{font-size:.82rem;color:var(--gray);margin-bottom:2rem}
.fg{margin-bottom:1.2rem}
.fg label{display:block;font-size:.72rem;font-weight:600;color:var(--dark2);margin-bottom:.4rem}
.fg input,.fg select,.fg textarea{width:100%;padding:.8rem 1rem;border:1px solid var(--border2);border-radius:var(--radius);font-family:inherit;font-size:.85rem;color:var(--dark);background:var(--white);outline:none;transition:border-color .2s}
.fg input::placeholder,.fg textarea::placeholder{color:var(--gray3)}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--accent)}
.fg textarea{resize:vertical;min-height:90px}
.fg-row{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.fg select{appearance:none;cursor:pointer;color:var(--gray)}
.btn-sub{width:100%;padding:1rem;background:var(--accent);color:var(--white);font-size:.82rem;font-weight:600;border:none;border-radius:var(--radius);cursor:pointer;transition:all .2s;margin-top:.5rem}
.btn-sub:hover{background:var(--accent2)}
.fg-note{font-size:.7rem;color:var(--gray2);margin-top:.8rem;text-align:center}
.form-success{background:#E8F5E9;border:1px solid #A5D6A7;color:#2D7A3A;padding:1rem 1.2rem;border-radius:var(--radius);font-size:.85rem;margin-bottom:1.5rem;font-weight:500}
.form-error{background:#FDECEA;border:1px solid #F5C6CB;color:#C0392B;padding:1rem 1.2rem;border-radius:var(--radius);font-size:.85rem;margin-bottom:1.5rem;font-weight:500}

/* ---------- LOCAL SEO BLOCK ---------- */
.seo-block{background:var(--light);border-top:1px solid var(--border)}
.seo-block .inner{max-width:900px}
.seo-block p{font-size:.9rem;line-height:1.8;color:var(--gray);margin-top:1.2rem}
.seo-block strong{color:var(--dark);font-weight:500}

/* ---------- FOOTER ---------- */
.site-footer{background:var(--dark);color:var(--white);padding:4rem 5% 2rem}
.ft-inner{max-width:1440px;margin:0 auto}
.ft-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:2.5rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.08)}
.ft-brand p{font-size:.82rem;color:var(--gray);line-height:1.7;margin-top:1rem;max-width:260px}
.ft-brand .ft-phone{margin-top:1.2rem;font-size:.82rem;color:var(--accent2);font-weight:600}
.ft-col h5{font-size:.68rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--accent2);margin-bottom:1.2rem}
.ft-col ul{list-style:none;display:flex;flex-direction:column;gap:.5rem}
.ft-col a{font-size:.82rem;color:var(--gray2);transition:color .2s}
.ft-col a:hover{color:var(--accent2)}
.ft-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;flex-wrap:wrap;gap:1rem}
.ft-bottom p{font-size:.7rem;color:var(--gray)}

/* ---------- REVEAL ANIM ---------- */
.rv{opacity:0;transform:translateY(30px);transition:opacity .7s,transform .7s}
.rv.v{opacity:1;transform:translateY(0)}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px){
  .rv-grid{grid-template-columns:1fr 1fr}
  .topbar{display:none}
  .nav-links{display:none}
  .nav-phone{display:none}
  .nav-cta{display:none}
  .hamburger{display:flex}
  .hero-inner{grid-template-columns:1fr;padding:5rem 5%}
  .hero-cards{flex-direction:row;flex-wrap:wrap;gap:.8rem}
  .hero-card{flex:1;min-width:120px}
  .stats-inner{grid-template-columns:1fr 1fr;gap:2.5rem}
  .stat-box::after{display:none}
  .svc-grid{grid-template-columns:1fr 1fr}
  .av-grid{grid-template-columns:1fr}
  .av-img{height:300px}

  .proc-grid{grid-template-columns:1fr 1fr}
  .eng-grid{grid-template-columns:1fr}
  .rv-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr 1fr}
  .zones-grid{grid-template-columns:1fr 1fr}
  .ct-grid{grid-template-columns:1fr}
  .ft-top{grid-template-columns:1fr 1fr}
  .sec{padding:2.75rem 5%}
}
@media(max-width:600px){
  .svc-grid{grid-template-columns:1fr}

  .proc-grid{grid-template-columns:1fr}
  .blog-grid{grid-template-columns:1fr}
  .zones-grid{grid-template-columns:1fr 1fr}
  .ft-top{grid-template-columns:1fr}
  .fg-row{grid-template-columns:1fr}
  .mobile-menu a{font-size:1.5rem}
}

/* ---------- FAQ ---------- */
.faq-list{max-width:800px;margin:0 auto}
.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;gap:1rem}
.faq-q h3{font-size:.95rem;font-weight:600;color:var(--dark);margin:0}
.faq-toggle{width:28px;height:28px;background:var(--light);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.1rem;color:var(--gray);flex-shrink:0;transition:all .3s}
.faq-item.open .faq-toggle{background:var(--accent);color:var(--white);transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-item.open .faq-a{max-height:400px}
.faq-a p{padding:0 0 1.3rem;font-size:.88rem;color:var(--gray);line-height:1.7}

/* --- Accessibilité & ajustements WP --- */
.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip-link{position:absolute;left:-999px;top:0;z-index:2000;background:var(--accent);color:#fff;padding:.6rem 1rem;border-radius:0 0 var(--radius) 0}
.skip-link:focus{left:0}
.primary-nav{display:flex}
.admin-bar .site-header{top:32px}
.admin-bar .mobile-menu{top:32px}
@media(max-width:782px){.admin-bar .site-header{top:46px}.admin-bar .mobile-menu{top:46px}}
@media(max-width:880px){.primary-nav{display:none}}
@media(max-width:600px){.tb-hide-sm{display:none}.topbar{justify-content:center}}
.mobile-links{list-style:none;display:flex;flex-direction:column;gap:.2rem}

/* --- Article single : layout 2 colonnes --- */
.post-hero-meta{display:flex;gap:1rem;align-items:center;flex-wrap:wrap;margin-top:1.2rem;font-size:.78rem;color:rgba(255,255,255,.7)}
.phm-cat{background:var(--accent);color:#fff;font-weight:600;text-transform:uppercase;letter-spacing:.05em;font-size:.66rem;padding:.3rem .7rem;border-radius:4px}
.single-layout{max-width:1440px;margin:0 auto;padding:3.5rem 5% 4rem;display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:3.5rem;align-items:start}
.single-main{min-width:0}
.single-main .featured-img{margin-bottom:2.2rem}
.post-tags{margin-top:2.5rem;display:flex;flex-wrap:wrap;gap:.6rem}
.post-tag{font-size:.72rem;color:var(--gray);background:var(--light);padding:.35rem .8rem;border-radius:20px;transition:all .2s}
.post-tag:hover{background:var(--accent-bg);color:var(--accent)}
.blog-title a{color:inherit}
.blog-title a:hover{color:var(--accent)}

/* Maillage interne : services liés (dans l'article) */
.inline-services{margin-top:2.8rem;padding:1.8rem;background:var(--light);border-radius:var(--radius-lg)}
.is-title{font-size:1.05rem!important;font-weight:700;color:var(--dark);margin:0 0 1.1rem!important}
.is-grid{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.is-card{display:flex;align-items:center;gap:.8rem;background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:.9rem 1.1rem;transition:all .2s}
.is-card:hover{border-color:var(--accent);transform:translateY(-2px);box-shadow:var(--shadow)}
.is-ic{font-size:1.3rem;flex-shrink:0}
.is-txt{display:flex;align-items:center;justify-content:space-between;gap:.5rem;width:100%}
.is-name{font-size:.82rem;font-weight:600;color:var(--dark);line-height:1.3}
.is-arrow{color:var(--accent);font-weight:700;flex-shrink:0}

/* Sidebar */
.single-aside{position:sticky;top:96px;display:flex;flex-direction:column;gap:1.2rem}
.aside-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.5rem}
.aside-h{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--accent);margin-bottom:1rem}
.aside-toc ol{list-style:none;counter-reset:toc;display:flex;flex-direction:column;gap:.1rem}
.aside-toc li{counter-increment:toc}
.aside-toc a{display:flex;gap:.6rem;padding:.5rem .2rem;font-size:.83rem;color:var(--dark2);line-height:1.4;border-bottom:1px solid var(--border);transition:color .2s}
.aside-toc li:last-child a{border-bottom:none}
.aside-toc a::before{content:counter(toc,decimal-leading-zero);color:var(--accent);font-weight:700;font-size:.72rem;flex-shrink:0}
.aside-toc a:hover{color:var(--accent)}
.aside-cta{background:var(--dark);border-color:var(--dark)}
.aside-cta .aside-h{color:var(--accent2)}
.aside-cta p{font-size:.83rem;color:var(--gray2);line-height:1.6;margin-bottom:1.2rem}
.aside-btn{width:100%;justify-content:center}
.aside-phone{display:block;text-align:center;margin-top:.9rem;font-size:.92rem;font-weight:700;color:var(--accent2)}
.aside-services ul{list-style:none;display:flex;flex-direction:column;gap:.15rem}
.aside-services a{display:flex;align-items:center;gap:.6rem;padding:.6rem .7rem;border-radius:var(--radius);font-size:.85rem;font-weight:500;color:var(--dark2);transition:all .2s}
.aside-services a:hover{background:var(--accent-bg);color:var(--accent)}
.aside-zones p{font-size:.83rem;color:var(--gray);line-height:1.6;margin-bottom:.8rem}
.aside-link{font-size:.8rem;font-weight:600;color:var(--accent)}

/* Découvrez aussi */
.discover{background:var(--light);border-top:1px solid var(--border)}

@media(max-width:980px){
  .single-layout{grid-template-columns:1fr;gap:2.5rem}
  .single-aside{position:static;flex-direction:column}
  .aside-toc{order:-1}
}
@media(max-width:600px){
  .is-grid{grid-template-columns:1fr}
}

/* --- Blog index --- */
.blog-filters{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;margin-bottom:3rem}
.blog-filter{font-size:.78rem;font-weight:500;color:var(--dark2);padding:.5rem 1.1rem;border:1px solid var(--border);border-radius:20px;transition:all .2s}
.blog-filter:hover,.blog-filter.active{background:var(--accent);border-color:var(--accent);color:var(--white)}
.blog-meta{display:flex;gap:.8rem;align-items:center;margin-bottom:.8rem}
.no-posts{text-align:center;color:var(--gray);padding:3rem 0}
.blog-excerpt a{color:inherit}

/* --- Page service --- */
.svc-page-wrap{max-width:1440px;margin:0 auto;padding:3.5rem 5%}
.svc-page-grid{display:grid;grid-template-columns:1fr 340px;gap:3.5rem;align-items:start}
.svc-page-content{font-size:1rem;line-height:1.8;color:var(--dark2)}
.svc-page-aside{position:sticky;top:96px;display:flex;flex-direction:column;gap:1.2rem}
.svc-aside-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.8rem}
.svc-aside-card h3{font-size:1.1rem;font-weight:700;color:var(--dark);margin-bottom:.5rem}
.svc-aside-card>p{font-size:.85rem;color:var(--gray);margin-bottom:1.2rem;line-height:1.6}
.svc-aside-phone{margin-top:1rem;text-align:center}
.svc-aside-phone span{display:block;font-size:.72rem;color:var(--gray2);margin-bottom:.3rem}
.svc-aside-phone a{font-size:1rem;font-weight:700;color:var(--accent)}
.svc-aside-other ul{list-style:none;display:flex;flex-direction:column;gap:.2rem}
.svc-aside-other li a{display:block;padding:.7rem .8rem;border-radius:var(--radius);font-size:.88rem;color:var(--dark2);font-weight:500;transition:all .2s}
.svc-aside-other li a:hover{background:var(--accent-bg);color:var(--accent)}
@media(max-width:920px){.svc-page-grid{grid-template-columns:1fr}.svc-page-aside{position:static}}

/* --- Contact : formulaire à droite (infos à gauche) --- */
.ct-grid-reverse{grid-template-columns:1fr 1.25fr}
@media(max-width:1024px){
  .rv-grid{grid-template-columns:1fr 1fr}.ct-grid-reverse{grid-template-columns:1fr}.ct-grid-reverse .ct-form-wrap{order:-1}}

/* Décalage d'ancrage sous le header collant (sommaire) */
.entry-content h2{scroll-margin-top:90px}

/* --- Nos derniers chantiers (réalisations) --- */
.last-projects{display:flex;flex-direction:column;gap:2.5rem;max-width:1080px;margin:0 auto}
.lp-item{display:grid;grid-template-columns:1fr 1fr;align-items:stretch;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow)}
.lp-item:nth-child(even) .lp-gallery{order:2}
.lp-gallery{display:grid;grid-template-columns:2fr 1fr;grid-template-rows:1fr 1fr;gap:6px;padding:6px;min-height:320px}
.lp-main{grid-row:1 / span 2;width:100%;height:100%;object-fit:cover;border-radius:10px;min-height:0}
.lp-thumb{width:100%;height:100%;object-fit:cover;border-radius:10px;min-height:0}
.lp-text{padding:2.2rem;display:flex;flex-direction:column;justify-content:center}
.lp-text .pf-cat{position:static;display:inline-block;background:var(--accent-bg);color:var(--accent);font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;padding:.35rem .8rem;border-radius:20px;margin-bottom:1rem;align-self:flex-start}
.lp-title{font-size:1.4rem;font-weight:700;color:var(--dark);line-height:1.2;margin-bottom:.5rem}
.lp-loc{font-size:.9rem;color:var(--gray);margin-bottom:1rem}
.lp-desc{font-size:.93rem;line-height:1.7;color:var(--dark2);margin-bottom:1.3rem}
.lp-tags{display:flex;flex-wrap:wrap;gap:.5rem}
.lp-tag{font-size:.72rem;color:var(--gray);background:var(--light);border:1px solid var(--border);padding:.3rem .75rem;border-radius:20px}
@media(max-width:860px){
  .lp-item{grid-template-columns:1fr}
  .lp-item:nth-child(even) .lp-gallery{order:0}
  .lp-gallery{min-height:260px}
  .lp-text{padding:1.6rem}
}
@media(max-width:480px){
  .lp-gallery{grid-template-columns:1fr 1fr;grid-template-rows:auto auto;min-height:0}
  .lp-main{grid-row:auto;grid-column:1 / 3;height:200px}
  .lp-thumb{height:120px}
}

/* --- Bannière de marque pleine largeur (réalisations) --- */
.rea-banner{width:100%;margin:3.5rem 0 0;overflow:hidden}
.rea-banner img{display:block;width:100%;height:auto;max-height:360px;object-fit:cover}
@media(max-width:600px){.rea-banner img{max-height:240px}}

/* --- Mobile : réduire les marges intérieures du formulaire / sections --- */
@media(max-width:600px){
  .ct-form-wrap{padding:1.3rem}
  .ct-section .sec{padding:2.25rem 4%}
  .ct-grid{gap:1.5rem}
}
