/* =========================================================
   MONTEIL & CIE — Feuille de style principale
   Typo  : Cormorant Garamond (titres) · Outfit (corps)
   Palette: #0E0E0E · #FAFAF8 · #00AEEF · #C8A96E
   ========================================================= */

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Outfit',sans-serif;background:#FAFAF8;color:#0E0E0E;line-height:1.75;font-size:16px;overflow-x:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
sup{font-size:.6em;vertical-align:super}
button{font-family:inherit;cursor:pointer}

:root{
  --ink:#0E0E0E; --ink2:#5a5855;
  --paper:#FAFAF8; --paper2:#F0EDE8;
  --blue:#00AEEF; --blue2:#009ad4;
  --gold:#C8A96E; --rule:#D8D4CE;
  --max:1100px;
  --ease:cubic-bezier(.16,1,.3,1);
}

/* ── SCROLL REVEAL ── */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal.visible{opacity:1;transform:none}
.reveal-d1{transition-delay:.1s}
.reveal-d2{transition-delay:.2s}
.reveal-d3{transition-delay:.3s}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:300;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 2.5rem;height:64px;
  background:rgba(250,250,248,.95);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--rule);
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.07)}
.nav-logo img{height:58px;width:auto}
.nav-links{display:flex;gap:2rem;list-style:none;align-items:center}
.nav-links a{font-size:11.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink2);transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--blue)}
.nav-cta{
  background:var(--ink);color:#fff!important;
  padding:8px 20px;font-size:12px!important;letter-spacing:.08em;
  font-weight:500!important;transition:background .2s;
}
.nav-cta:hover{background:var(--blue)!important}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;padding:4px}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--ink);transition:.3s}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
.mob-menu{
  display:none;position:fixed;top:64px;left:0;right:0;z-index:299;
  background:var(--paper);border-bottom:1px solid var(--rule);
  padding:2rem;flex-direction:column;gap:1.25rem;
}
.mob-menu.open{display:flex}
.mob-menu a{font-size:13px;color:var(--ink2);text-transform:uppercase;letter-spacing:.08em}
.mob-menu .mob-tel{
  font-family:'Cormorant Garamond',serif;font-size:1.5rem;font-weight:600;
  color:var(--ink);border-top:1px solid var(--rule);padding-top:1.25rem;margin-top:.25rem;
}

/* ── HERO ── */
#hero{
  padding-top:64px;min-height:100vh;
  display:grid;grid-template-columns:55% 45%;
  position:relative;overflow:hidden;
}
.hero-left{
  background:url('../assets/img/paris-hero.png') center/cover no-repeat;
  display:flex;flex-direction:column;justify-content:center;
  padding:6rem 4rem 10rem;position:relative;overflow:hidden;
}
.hero-left::before{
  content:'';position:absolute;inset:0;z-index:0;
  background:linear-gradient(105deg,rgba(8,12,22,.82) 0%,rgba(8,12,22,.6) 55%,rgba(8,12,22,.3) 100%);
  pointer-events:none;
}
.hero-left::after{
  content:'';position:absolute;inset:0;z-index:0;
  background:linear-gradient(to top,rgba(8,12,22,.68) 0%,transparent 55%);
  pointer-events:none;
}
.hero-tag{
  position:relative;z-index:1;
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:10px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--blue);margin-bottom:2.5rem;
}
.hero-tag::before{content:'';width:24px;height:1px;background:var(--blue)}
.hero-h1{
  position:relative;z-index:1;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,5vw,5.2rem);font-weight:300;
  line-height:1.04;color:#fff;margin-bottom:2rem;letter-spacing:-.02em;
}
.hero-h1 strong{font-weight:600;display:block}
.hero-h1 em{font-style:italic;color:var(--blue)}
.hero-sep{position:relative;z-index:1;width:40px;height:1px;background:var(--gold);margin-bottom:2rem}
.hero-p{
  position:relative;z-index:1;
  font-size:16px;color:rgba(255,255,255,.48);
  line-height:1.9;max-width:360px;margin-bottom:2.5rem;
}
.hero-actions{position:relative;z-index:1;display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3.5rem}
.btn-main{
  background:var(--blue);color:#fff;font-size:12px;
  letter-spacing:.1em;text-transform:uppercase;
  padding:13px 28px;font-weight:500;
  transition:background .2s,transform .15s;display:inline-flex;align-items:center;gap:.5rem;
}
.btn-main:hover{background:var(--blue2);transform:translateY(-1px)}
.btn-out{
  border:1px solid rgba(255,255,255,.22);color:rgba(255,255,255,.65);
  font-size:12px;letter-spacing:.1em;text-transform:uppercase;
  padding:13px 28px;transition:border-color .2s,color .2s;
}
.btn-out:hover{border-color:rgba(255,255,255,.55);color:#fff}
.hero-counters{
  position:relative;z-index:1;
  display:flex;gap:2.5rem;
  border-top:1px solid rgba(255,255,255,.09);padding-top:2rem;
}
.hc-num{
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem;font-weight:600;color:#fff;line-height:1;
}
.hc-num span{color:var(--blue)}
.hc-lbl{font-size:10px;color:rgba(255,255,255,.35);letter-spacing:.12em;text-transform:uppercase;margin-top:5px}
.hero-right{
  background:var(--paper2);display:flex;flex-direction:column;
  align-items:center;justify-content:center;padding:4rem 3.5rem;
  border-left:1px solid var(--rule);gap:2.5rem;
}
.hero-logo img{width:240px;height:auto;filter:drop-shadow(0 4px 24px rgba(0,174,239,.1))}
.hero-card{width:100%;background:var(--paper);border:1px solid var(--rule);padding:1.75rem}
.hc-badge{
  font-size:9.5px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--blue);display:flex;align-items:center;gap:.6rem;margin-bottom:.9rem;
}
.hc-badge::before{
  content:'';width:6px;height:6px;border-radius:50%;
  background:var(--blue);animation:blink 2s infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.hc-tel{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;font-weight:700;color:var(--ink);
  display:block;margin-bottom:.35rem;letter-spacing:-.01em;
}
.hc-sub{font-size:14px;color:var(--ink2);letter-spacing:.03em}
.hero-meta{
  font-size:12.5px;color:var(--ink2);line-height:1.9;
  border-top:1px solid var(--rule);padding-top:1.25rem;width:100%;
}
.hero-meta strong{color:var(--ink);font-weight:500;display:block}

/* ── SECTIONS ── */
.sec{padding:6.5rem 2.5rem}
.sec-in{max-width:var(--max);margin:0 auto}
.sec-alt{background:var(--paper2)}
.sec-dark{background:#1e2535}
.eyebrow{
  font-size:10px;letter-spacing:.22em;text-transform:uppercase;
  color:var(--blue);margin-bottom:1rem;
  display:flex;align-items:center;gap:.65rem;
}
.eyebrow::before{content:'';width:24px;height:1px;background:var(--blue)}
.sec-h{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.2rem,4vw,3.5rem);font-weight:300;
  line-height:1.1;color:var(--ink);margin-bottom:1.5rem;letter-spacing:-.02em;
}
.sec-h strong{font-weight:600}
.sec-h.wh{color:#fff}
.sec-lead{font-size:16px;color:var(--ink2);max-width:520px;line-height:1.9;margin-bottom:4rem}
.sec-lead.wh{color:rgba(255,255,255,.42)}
.gold-rule{width:36px;height:1px;background:var(--gold);margin-bottom:2rem}

/* ── ABOUT ── */
.about-wrap{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start}
.about-text p{font-size:16px;color:var(--ink2);margin-bottom:1.25rem;line-height:1.9}
.vals{margin-top:2.5rem;display:flex;flex-direction:column;gap:1.75rem}
.val{display:flex;gap:1.25rem;align-items:flex-start}
.val-l{
  font-family:'Cormorant Garamond',serif;font-size:2.8rem;font-weight:700;
  color:var(--blue);opacity:.15;line-height:1;flex-shrink:0;width:32px;
}
.val-b h4{font-size:11px;font-weight:500;color:var(--ink);letter-spacing:.12em;text-transform:uppercase;margin-bottom:.3rem}
.val-b p{font-size:13.5px;color:var(--ink2);line-height:1.75;margin:0}
.kpis{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--rule);border:1px solid var(--rule)}
.kpi{background:var(--paper);padding:2.25rem 1.75rem;text-align:center;transition:background .25s}
.kpi:hover{background:var(--paper2)}
.kpi-n{font-family:'Cormorant Garamond',serif;font-size:2.8rem;font-weight:600;color:var(--ink);line-height:1}
.kpi-n sup{color:var(--blue);font-size:1.2rem}
.kpi-l{font-size:10px;color:var(--ink2);letter-spacing:.12em;text-transform:uppercase;margin-top:.6rem}

/* ── SITUATIONS ── */
.situations-intro{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:3rem;gap:2rem;flex-wrap:wrap}
.sit-tabs{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:2.5rem}
.sit-tab{
  padding:9px 20px;font-size:12px;letter-spacing:.06em;
  border:1px solid var(--rule);background:var(--paper);
  color:var(--ink2);transition:all .2s;font-family:'Outfit',sans-serif;
}
.sit-tab:hover{border-color:var(--blue);color:var(--blue)}
.sit-tab.active{background:var(--blue);border-color:var(--blue);color:#fff}
.sit-panel{display:none;animation:fadeUp .4s var(--ease)}
.sit-panel.active{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
.sit-detail{background:var(--paper);border:1px solid var(--rule);padding:2rem}
.sit-detail h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.5rem;font-weight:600;color:var(--ink);margin-bottom:.75rem;line-height:1.2;
}
.sit-detail p{font-size:14px;color:var(--ink2);line-height:1.8;margin-bottom:1.25rem}
.sit-detail ul{list-style:none;margin-bottom:1.5rem}
.sit-detail ul li{font-size:13px;color:var(--ink2);padding:5px 0 5px 16px;position:relative}
.sit-detail ul li::before{content:'—';position:absolute;left:0;color:var(--rule);font-size:10px;top:7px}
.sit-cta{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:12px;letter-spacing:.1em;text-transform:uppercase;
  color:var(--blue);font-weight:500;
  border-bottom:1px solid var(--blue);padding-bottom:2px;transition:gap .2s;
}
.sit-cta:hover{gap:.9rem}
.sit-contact{
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--blue);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
}
.sit-contact-head{
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.sit-contact-head::before{
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s infinite;
}
.sit-contact-tel{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  transition: color .2s;
}
.sit-contact-tel:hover { color: var(--blue); }
.sit-contact-info{
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.75;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.sit-contact-badge{
  display: inline-block;
  background: var(--paper2);
  border: 1px solid var(--rule);
  color: var(--ink2);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  align-self: flex-start;
}

/* ── MARQUEE CLIENTS ── */
.mq-wrap{position:relative;overflow:hidden;margin:0 -2.5rem}
.mq-wrap::before,.mq-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:140px;z-index:2;pointer-events:none;
}
.mq-wrap::before{left:0;background:linear-gradient(to right,var(--paper),transparent)}
.mq-wrap::after{right:0;background:linear-gradient(to left,var(--paper),transparent)}
.mq-track{display:flex;width:max-content}
.mq-fwd{animation:mql 45s linear infinite}
.mq-rev{animation:mqr 45s linear infinite}
.mq-wrap:hover .mq-fwd,.mq-wrap:hover .mq-rev{animation-play-state:paused}
@keyframes mql{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes mqr{from{transform:translateX(-50%)}to{transform:translateX(0)}}
.mq-item{
  flex-shrink:0;width:190px;height:105px;
  display:flex;align-items:center;justify-content:center;padding:1.25rem;
  border-right:1px solid var(--rule);border-bottom:1px solid var(--rule);
}
.mq-rev .mq-item{border-bottom:none;border-top:1px solid var(--rule)}
.mq-item img{max-height:46px;width:auto;max-width:135px;object-fit:contain;opacity:.65;transition:opacity .3s}
.mq-item:hover img{opacity:1}

/* refs */
.refs-strip{
  margin-top:2.5rem;display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--rule);border:1px solid var(--rule);
}
.ref-c{background:var(--paper);padding:1.1rem 1.4rem;transition:background .2s}
.ref-c:hover{background:var(--paper2)}
.ref-c strong{display:block;font-size:9.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);margin-bottom:.25rem;font-weight:500}
.ref-c span{font-size:13px;color:var(--ink2)}

/* ── TÉMOIGNAGES ── */
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--rule);border:1px solid var(--rule)}
.testi{background:var(--paper);padding:2rem 1.75rem;transition:background .2s}
.testi:hover{background:var(--paper2)}
.testi-stars{color:#F5A623;font-size:14px;margin-bottom:1rem;letter-spacing:2px}
.testi-quote{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;font-style:italic;font-weight:300;
  color:var(--ink);line-height:1.65;margin-bottom:1.25rem;
}
.testi-quote::before{
  content:'\201C';font-size:2.8rem;color:var(--blue);opacity:.2;
  display:block;line-height:.6;margin-bottom:.5rem;
  font-family:'Cormorant Garamond',serif;
}
.testi-who strong{display:block;color:var(--ink);font-size:12px;font-weight:500;margin-bottom:2px}
.testi-who span{font-size:11px;color:var(--ink2);letter-spacing:.04em}
.testi-source{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:10px;color:var(--ink2);letter-spacing:.08em;text-transform:uppercase;
  margin-top:.75rem;opacity:.55;
}
.testi-google-dot{
  width:10px;height:10px;border-radius:50%;
  background:linear-gradient(135deg,#4285F4 0%,#EA4335 50%,#FBBC05 75%,#34A853 100%);
  flex-shrink:0;
}

/* ── CERTIFICATIONS — refonte ── */
#certifications { padding: 0; }

.certif-header {
  padding: 6.5rem 2.5rem 4rem;
  background: #1e2535;
}
.certif-header .sec-in { max-width: var(--max); margin: 0 auto; }

.certif-main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #1e2535;
  border-top: 1px solid rgba(255,255,255,.06);
}
.certif-item {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.certif-item:last-child { border-right: none; }
.certif-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--blue);
  transition: height .4s var(--ease);
}
.certif-item:hover { background: rgba(255,255,255,.04); }
.certif-item:hover::after { height: 2px; }
.certif-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.certif-logo img {
  max-height: 72px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 0 transparent);
  mix-blend-mode: lighten;
}
.certif-logo-pg {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(0,174,239,.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(0,174,239,.08);
}
.certif-logo-pg .pg-letters {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--blue); line-height: 1;
}
.certif-logo-pg .pg-sub {
  font-size: 7px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 2px;
}
.certif-info { text-align: center; }
.certif-info strong {
  display: block;
  font-size: 13px; font-weight: 500;
  color: #fff; letter-spacing: .04em;
  margin-bottom: .3rem;
}
.certif-info span {
  font-size: 10px; color: rgba(255,255,255,.32);
  letter-spacing: .1em; text-transform: uppercase;
}
.certif-footer {
  background: rgba(0,174,239,.07);
  border-top: 1px solid rgba(0,174,239,.15);
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.certif-footer-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
}
.certif-footer-item::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .certif-main { grid-template-columns: repeat(3, 1fr); }
  .certif-item:nth-child(3n) { border-right: none; }
}
@media (max-width: 640px) {
  .certif-main { grid-template-columns: repeat(2, 1fr); }
  .certif-header { padding: 4rem 1.25rem 2.5rem; }
  .certif-footer { gap: 1.5rem; padding: 1.5rem; }
}

/* ── FAQ ── */
.faq-list{display:flex;flex-direction:column;border:1px solid var(--rule);max-width:720px}
.faq-item{border-bottom:1px solid var(--rule)}
.faq-item:last-child{border-bottom:none}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;
  padding:1.4rem 1.75rem;background:var(--paper);
  font-size:14.5px;color:var(--ink);text-align:left;border:none;gap:1rem;
  transition:color .2s,background .2s;
}
.faq-q:hover{color:var(--blue);background:var(--paper2)}
.faq-q.open{color:var(--blue)}
.faq-icon{
  width:22px;height:22px;border:1px solid var(--rule);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;color:var(--blue);line-height:1;
  transition:transform .3s var(--ease);
}
.faq-q.open .faq-icon{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease),padding .3s;padding:0 1.75rem}
.faq-a.open{max-height:300px;padding:0 1.75rem 1.4rem}
.faq-a p{font-size:14px;color:var(--ink2);line-height:1.8}

/* ── CONTACT ── */
.contact-wrap{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.contact-col{display:flex;flex-direction:column;gap:1.75rem}
.urg-block{background:#2563a8;padding:2.5rem}
.urg-block .lbl{
  font-size:9.5px;letter-spacing:.22em;text-transform:uppercase;color:var(--blue);
  display:flex;align-items:center;gap:.5rem;margin-bottom:.75rem;
}
.urg-block .lbl::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--blue);animation:blink 2s infinite}
.urg-block .tel{
  font-family:'Cormorant Garamond',serif;font-size:2.6rem;font-weight:700;
  color:#fff;line-height:1;display:block;margin-bottom:.35rem;
}
.urg-block .sub{font-size:12.5px;color:rgba(255,255,255,.75)}
.c-block{border:1px solid var(--rule);padding:1.75rem}
.c-block-lbl{font-size:9.5px;letter-spacing:.2em;text-transform:uppercase;color:var(--blue);display:block;margin-bottom:1.1rem}
.crow{display:flex;gap:.85rem;align-items:baseline;padding:6px 0;border-bottom:1px solid var(--paper2)}
.crow:last-child{border-bottom:none}
.c-lbl{font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink2);width:55px;flex-shrink:0}
.c-val{font-size:13.5px;color:var(--ink)}
.c-val a{transition:color .2s}
.c-val a:hover{color:var(--blue)}
.map-wrap{border:1px solid var(--rule);overflow:hidden;height:460px}
.map-wrap iframe{width:100%;height:100%;border:none;display:block}

/* ── BANDEAU MOBILE URGENCE ── */
.mob-urgence{
  display:none;position:fixed;bottom:0;left:0;right:0;z-index:400;
  background:var(--blue);align-items:center;justify-content:center;
  padding:1rem 1.5rem;gap:1rem;
  box-shadow:0 -4px 20px rgba(0,174,239,.3);
}
.mob-urgence a{color:#fff;font-size:1rem;font-weight:600;display:flex;align-items:center;gap:.6rem}
.mob-urgence .pulse-dot{width:8px;height:8px;border-radius:50%;background:#fff;animation:blink 1.5s infinite;flex-shrink:0}
.mob-urgence .avail{font-size:11px;color:rgba(255,255,255,.75);letter-spacing:.06em}

/* ── FOOTER ── */
footer{background:var(--ink);color:rgba(255,255,255,.28);padding:2.5rem 2.5rem;border-top:1px solid rgba(255,255,255,.05)}
.foot-in{max-width:var(--max);margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.foot-in p{font-size:11.5px;line-height:1.7}
.foot-in strong{color:rgba(255,255,255,.6);font-weight:400}
.foot-links{display:flex;gap:1.75rem}
.foot-links a{font-size:11.5px;color:rgba(255,255,255,.28);transition:color .2s;letter-spacing:.06em}
.foot-links a:hover{color:var(--blue)}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  #hero{grid-template-columns:1fr;min-height:auto}
  .hero-left{padding:4.5rem 2.5rem 9rem;min-height:65vh}
  .hero-right{padding:2.5rem;border-left:none;border-top:1px solid var(--rule)}
  .hero-logo img{width:190px}
  .about-wrap{grid-template-columns:1fr;gap:3rem}
  .sit-panel.active{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .certif-grid{grid-template-columns:repeat(2,1fr)}
  .contact-wrap{grid-template-columns:1fr;gap:2.5rem}
  .refs-strip{grid-template-columns:1fr 1fr}
  nav{padding:0 1.5rem}
  .nav-links{display:none}
  .hamburger{display:flex}
  .mq-wrap{margin:0 -2.5rem}
  .mob-urgence{display:flex}
  body{padding-bottom:66px}
}
@media(max-width:640px){
  .sec{padding:4rem 1.25rem}
  .hero-left{padding:3.5rem 1.25rem 8rem}
  .hero-right{padding:2rem 1.25rem}
  .hero-counters{flex-wrap:wrap;gap:1.5rem}
  .hero-actions{flex-direction:column}
  .kpis{grid-template-columns:1fr 1fr}
  .certif-grid{grid-template-columns:1fr 1fr}
  .refs-strip{grid-template-columns:1fr 1fr}
  .foot-in{flex-direction:column;text-align:center}
  nav{padding:0 1.25rem}
  .mq-wrap{margin:0 -1.25rem}
  .mq-item{width:150px;height:90px}
}

/* =========================================================
   AJOUTS V2 : transitions, stat réactivité, carte IDF
   ========================================================= */

/* ── TRANSITION SECTIONS — géré par JS (effet carte) ── */
/* Les transitions opacity/transform sont appliquées inline par main.js */
#hero { opacity: 1 !important; transform: none !important; }

/* ── STAT RÉACTIVITÉ ── */
.react-stat-wrap {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.react-stat {
  background: var(--paper);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: background .2s;
}
.react-stat:hover { background: var(--paper2); }
.react-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600;
  color: var(--blue); line-height: 1;
  display: block; margin-bottom: .5rem;
}
.react-stat-lbl {
  font-size: 10px; color: var(--ink2);
  letter-spacing: .14em; text-transform: uppercase;
}

/* ── CARTE IDF ── */
.idf-section { padding: 6.5rem 2.5rem; }
.idf-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.idf-text .eyebrow { margin-bottom: 1rem; }
.idf-text p { font-size: 15px; color: var(--ink2); line-height: 1.85; margin-bottom: 1.25rem; }
.idf-depts {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1.5rem;
}
.idf-dept-tag {
  font-size: 11px; letter-spacing: .08em;
  border: 1px solid var(--rule);
  padding: 5px 12px; color: var(--ink2);
  transition: border-color .2s, color .2s, background .2s;
}
.idf-dept-tag:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,174,239,.05);
}
.idf-map-wrap { position: relative; }
#idf-map { width: 100%; max-width: 480px; margin: 0 auto; display: block; }
.idf-zone { cursor: pointer; transition: fill .2s, opacity .2s; }
.idf-zone:hover { opacity: .85; }
.idf-zone.paris { fill: var(--blue); }
.idf-zone.proche { fill: #3BBFEF; }
.idf-zone.grande { fill: #8DD8F5; }
#idf-tooltip {
  position: absolute;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: .06em;
  padding: 6px 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  white-space: nowrap;
  z-index: 10;
}
#idf-tooltip.visible { opacity: 1; }

@media (max-width: 1024px) {
  .idf-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .react-stat-wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .react-stat-wrap { grid-template-columns: 1fr; }
}

/* ── LÉGAL & ENGAGEMENTS ── */
.legal-wrap { display: flex; flex-direction: column; gap: 3rem; }
.legal-header { max-width: 520px; }
.legal-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.legal-card {
  background: var(--paper);
  padding: 2.5rem 2rem;
  transition: background .2s;
  position: relative;
}
.legal-card:hover { background: var(--paper2); }
.legal-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--blue);
  transition: height .3s var(--ease);
}
.legal-card:hover::after { height: 2px; }
.legal-card-icon {
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 1rem;
  opacity: .7;
}
.legal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.legal-card p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.85;
}
.legal-card p strong {
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 900px) {
  .legal-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .legal-cards { grid-template-columns: 1fr; }
}


/* ── RÉALISATIONS & SLIDER AVANT/APRÈS ── */
.chantiers {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.chantier {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.chantier:nth-child(even) {
  direction: rtl;
}
.chantier:nth-child(even) > * {
  direction: ltr;
}
.chantier-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.chantier-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  letter-spacing: -.02em;
}
.chantier-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.chantier-info p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.chantier-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.chantier-tags span {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  padding: 4px 12px;
  color: var(--ink2);
}

/* Slider avant/après */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 4/3;
  background: var(--paper2);
}
/* Les deux divs couvrent tout le wrap */
.slider-after,
.slider-before {
  position: absolute;
  inset: 0;
}
/* "après" en dessous */
.slider-after { z-index: 1; }
/* "avant" au-dessus, clipé via clip-path — pas de overflow:hidden */
.slider-before {
  z-index: 2;
  clip-path: inset(0 30% 0 0);
}
/* Les deux images couvrent exactement leur conteneur (inset:0) */
.slider-after img,
.slider-before img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  pointer-events: all;
  cursor: ew-resize;
}
.slider-line {
  flex: 1;
  width: 2px;
  background: #fff;
  opacity: .9;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  font-size: 16px;
  color: var(--ink);
  flex-shrink: 0;
}
.slider-label-before,
.slider-label-after {
  position: absolute;
  bottom: 1rem;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.35);
  padding: 3px 10px;
  z-index: 4;
}
.slider-label-before { left: 1rem; }
.slider-label-after  { right: 1rem; }

@media (max-width: 900px) {
  .chantier {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .chantier:nth-child(even) { direction: ltr; }
  .chantier-num { font-size: 3.5rem; }
}


/* ══════════════════════════════════════════════════════
   CLIENTS CAROUSEL
══════════════════════════════════════════════════════ */
.clients-carousel-sec {
  background: #fff;
  padding-bottom: 5rem;
  overflow: hidden;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* masques de fondu sur les bords */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-inner {
  display: flex;
  gap: 2.5rem;
  padding: 0.5rem 0;
  align-items: center;
}

/* Animation gauche → droite */
.marquee-fwd .marquee-inner {
  animation: marquee-fwd 38s linear infinite;
}

/* Animation droite → gauche */
.marquee-rev .marquee-inner {
  animation: marquee-rev 42s linear infinite;
}

/* Pause au survol */
.marquee-wrap:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes marquee-fwd {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-rev {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 1rem 1.8rem;
  min-width: 160px;
  height: 80px;
  transition: box-shadow .2s, transform .2s;
}

.logo-slide:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,.1);
  transform: translateY(-2px);
}

.logo-slide img {
  max-width: 130px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .2s;
}

.logo-slide:hover img {
  filter: grayscale(0%);
}

/* Références chantiers */
.chantiers-refs {
  background: linear-gradient(135deg, var(--blue) 0%, #007bb5 100%);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  color: #fff;
}

.chantiers-refs-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
  opacity: .8;
}

.chantiers-refs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .7rem 2rem;
}

.chantiers-refs-list li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  font-size: .95rem;
  line-height: 1.4;
}

.chantiers-refs-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F47920;
  flex-shrink: 0;
  margin-top: .3em;
}

@media (max-width: 600px) {
  .logo-slide {
    min-width: 120px;
    height: 65px;
    padding: .8rem 1.2rem;
  }
  .logo-slide img {
    max-width: 95px;
    max-height: 40px;
  }
  .chantiers-refs {
    padding: 1.8rem 1.5rem;
  }
  .chantiers-refs-list {
    grid-template-columns: 1fr;
  }
}


/* ── Lien mentions légales footer ── */
.foot-legal {
  margin-top: .8rem;
  font-size: .78rem;
  opacity: .5;
  transition: opacity .2s;
}
.foot-legal:hover {
  opacity: .85;
}
.foot-legal a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}


/* ══════════════════════════════════════════════════════
   BANDEAU COOKIES
══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 680px;
  background: #1a3c5e;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  z-index: 9999;
  transition: opacity .35s;
  padding: 1rem 1rem 1rem 1.4rem;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text strong {
  display: none;
}

.cookie-text p {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
  margin: 0;
}

.cookie-text a {
  color: #00AEEF;
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: .5rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.cookie-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}
.cookie-btn:active {
  transform: translateY(0);
}

.cookie-btn-accept {
  background: #00AEEF;
  color: #fff;
}

.cookie-btn-refuse {
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.25);
}
.cookie-btn-refuse:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

/* Placeholder carte Maps */
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: #eef4f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-inner {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.map-placeholder-inner p {
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: #5a6a7a;
  margin: 0;
  max-width: 240px;
}

.map-accept-btn {
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  background: #00AEEF;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .65rem 1.4rem;
  cursor: pointer;
  transition: opacity .2s;
}
.map-accept-btn:hover { opacity: .85; }

.map-link-ext {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  color: #00AEEF;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,174,239,.3);
}

/* Mobile */
@media (max-width: 600px) {
  .cookie-banner {
    bottom: .8rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: none;
  }
  .cookie-banner-inner { flex-wrap: wrap; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}


/* ══════════════════════════════════════════════════════
   RÉALISATIONS — SECTION ACCUEIL
══════════════════════════════════════════════════════ */

/* Carte featured */
.real-home-featured {
  display: block;
  text-decoration: none;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 2.5rem 3rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s, background .2s;
}
.real-home-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #F47920);
}
.real-home-featured:hover {
  background: var(--paper2);
  box-shadow: 0 8px 32px rgba(0,174,239,.08);
}

.real-home-featured-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); font-weight: 500;
  margin-bottom: 1.2rem;
}
.real-home-featured-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 2s ease infinite;
}

.real-home-featured-body {
  display: flex; align-items: baseline; gap: 2rem;
  margin-bottom: 1rem;
}
.real-home-featured-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700;
  color: var(--rule); line-height: 1; flex-shrink: 0;
}
.real-home-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--ink); margin-bottom: .4rem;
}
.real-home-featured-desc {
  font-size: 13.5px; color: var(--ink2); line-height: 1.75;
}
.real-home-featured-tags {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin: 1.2rem 0 1.5rem;
}
.real-home-featured-tags span {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(0,174,239,.35); color: var(--blue);
  padding: 3px 10px; border-radius: 3px;
}
.real-home-featured-arrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); font-weight: 500;
  transition: letter-spacing .2s;
}
.real-home-featured:hover .real-home-featured-arrow {
  letter-spacing: .18em;
}

/* 2 cartes secondaires */
.real-home-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.real-home-card {
  display: flex; flex-direction: column; gap: .8rem;
  text-decoration: none;
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: 2rem 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background .2s, box-shadow .3s;
}
.real-home-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--blue);
  transition: height .35s;
}
.real-home-card:hover::after { height: 100%; }
.real-home-card:hover {
  background: var(--paper2);
  box-shadow: 0 6px 24px rgba(0,0,0,.05);
}
.real-home-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--rule); line-height: 1;
}
.real-home-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--ink); line-height: 1.2;
}
.real-home-card-desc {
  font-size: 13px; color: var(--ink2); line-height: 1.7;
}
.real-home-card-tags {
  display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .3rem;
}
.real-home-card-tags span {
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--rule); color: var(--ink2);
  padding: 2px 8px; border-radius: 3px;
}
.real-home-card-arrow {
  color: var(--blue); font-size: 18px;
  margin-top: auto; padding-top: .8rem;
  transition: transform .2s;
}
.real-home-card:hover .real-home-card-arrow { transform: translateX(4px); }

@media (max-width: 700px) {
  .real-home-secondary { grid-template-columns: 1fr; }
  .real-home-featured { padding: 2rem 1.5rem; }
  .real-home-featured-body { flex-direction: column; gap: .5rem; }
  .real-home-card { padding: 1.5rem; }
}


/* ══════════════════════════════════════════════════════
   TOUCHE ORANGE — ACCENTS DISCRETS
   Règle : orange uniquement sur marqueurs, 
   jamais en fond plein, jamais sur du texte courant
══════════════════════════════════════════════════════ */

/* 1. Variable orange doux (moins saturé que F47920) */
:root {
  --orange: #E8722A;
}

/* 2. Séparateur hero — on remplace le gold par l'orange */
.hero-sep {
  background: var(--orange) !important;
  opacity: .75;
}

/* 3. eyebrow — le petit trait devient orange sur fonds clairs */
.sec:not(.sec-dark) .eyebrow::before,
.sec-alt .eyebrow::before {
  background: var(--orange);
}

/* 4. Numéros de stats (about) — chiffre clé en orange */
.react-stat-num {
  color: var(--orange) !important;
}

/* 5. Puces de valeurs (technicité / réactivité / proximité) */
.about-val-icon {
  color: var(--orange) !important;
  border-color: rgba(232,114,42,.25) !important;
  background: rgba(232,114,42,.06) !important;
}

/* 6. Bordure top des cartes de compétences au survol */
.sit-panel-card::before,
.react-card::before {
  background: var(--orange) !important;
}

/* 7. Marqueurs de liste dans les chantiers-refs */
.chantiers-refs-list li::before {
  background: var(--orange) !important;
}

/* 8. Bordure active sur les cartes réalisations home */
.real-home-featured::before {
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%) !important;
}
.real-home-card::after {
  background: var(--orange) !important;
}

/* 9. Bouton CTA principal — léger accent orange sur hover */
.btn-main:hover {
  background: #0098d4 !important;
  box-shadow: 0 4px 16px rgba(232,114,42,.18) !important;
}

/* 10. Lien "Voir toutes les réalisations" */
.sit-cta {
  color: var(--orange) !important;
  border-bottom-color: rgba(232,114,42,.35) !important;
}
.sit-cta:hover {
  border-bottom-color: var(--orange) !important;
}

/* 11. Badge "Spécialité phare" — point animé */
.real-home-featured-badge::before,
.real-featured-badge::before {
  background: var(--orange) !important;
}
.real-home-featured-badge {
  color: var(--orange) !important;
}

/* 12. Puces dans la carte featured réalisations */
.real-featured-sub-item::before {
  background: var(--orange) !important;
}

/* 13. Tags orange sur réseaux-canalisations (badge salle de bain) */
.chantier-cat.orange {
  background: var(--orange) !important;
}

/* 14. Puce urgence mobile */
.mob-urgence-dot {
  background: var(--orange) !important;
}

/* 15. Petits bullets des listes de compétences */
.chantiers-refs-list li::before,
.real-featured-sub-item::before,
.chantier-cat.orange {
  background: var(--orange);
}

/* 16. Le <strong> dans les titres sec-h — touche orange subtile */
.sec:not(.sec-dark) .sec-h strong,
.sec-alt .sec-h strong {
  color: var(--orange);
  font-weight: 600;
}

/* 17. Ligne de séparation eyebrow sur fonds sombres reste bleue */
.sec-dark .eyebrow::before {
  background: var(--blue);
}


/* ══════════════════════════════════════════════════════
   RÉALISATIONS INLINE — INDEX
══════════════════════════════════════════════════════ */

/* Onglets */
.real-tabs {
  display: flex; gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 2rem;
  overflow-x: auto;
}
.real-tab {
  flex: 1; min-width: 0;
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; letter-spacing: .08em;
  color: var(--ink2); background: var(--paper);
  border: none; border-right: 1px solid var(--rule);
  padding: 1.1rem 1.4rem;
  cursor: pointer; text-align: left;
  transition: background .2s, color .2s;
  position: relative;
}
.real-tab:last-child { border-right: none; }
.real-tab::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 0; background: var(--orange);
  transition: height .25s;
}
.real-tab:hover { background: var(--paper2); color: var(--ink); }
.real-tab.active { background: var(--paper); color: var(--ink); }
.real-tab.active::before { height: 3px; }
.real-tab-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--rule); flex-shrink: 0;
  transition: color .2s;
}
.real-tab.active .real-tab-num { color: var(--orange); }
.real-tab-badge {
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--orange); color: #fff;
  padding: 2px 7px; border-radius: 3px;
  flex-shrink: 0;
}

/* Panneaux */
.real-panel { display: none; }
.real-panel.active { display: block; }

/* Panneau featured cordiste */
.real-panel-featured {
  display: grid; grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--rule);
  margin-bottom: 2rem;
  overflow: hidden;
}
.real-panel-photo {
  position: relative; min-height: 400px;
  background: #1a2a3a; overflow: hidden;
}
.real-panel-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,50,.1) 0%, rgba(10,20,50,.5) 100%);
  z-index: 1;
}
.real-panel-pills {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; gap: .5rem; flex-wrap: wrap;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  z-index: 2;
}
.real-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 3px 9px; border-radius: 20px;
}
.real-pill.blue {
  background: rgba(0,174,239,.2);
  border-color: rgba(0,174,239,.4);
  color: #00AEEF;
}
.real-panel-info {
  padding: 2.5rem 3rem;
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.2rem;
  border-left: 1px solid var(--rule);
}
.real-panel-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: 'Outfit', sans-serif;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); font-weight: 500;
}
.real-panel-badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange);
  animation: pulse-dot 2s ease infinite;
}
.real-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 600; color: var(--ink); line-height: 1.15;
}
.real-panel-title em { font-style: italic; color: var(--blue); }
.real-panel-desc { font-size: 14px; color: var(--ink2); line-height: 1.8; }
.real-panel-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
  border-top: 1px solid var(--rule); padding-top: 1.2rem;
}
.real-panel-list li {
  display: flex; align-items: baseline; gap: .7rem;
  font-size: 13.5px; color: var(--ink2);
}
.real-panel-list li::before {
  content: '';
  flex-shrink: 0; width: 5px; height: 5px;
  border-radius: 50%; background: var(--orange);
  margin-top: .3em;
}

/* Grille techniques */
.real-techniques {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
}
.real-technique {
  background: var(--paper);
  padding: 1.8rem 1.8rem 2rem;
  position: relative; overflow: hidden;
}
.real-technique::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--blue);
  transition: height .35s;
}
.real-technique:hover::before { height: 100%; }
.real-technique-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--rule); line-height: 1; margin-bottom: .8rem;
}
.real-technique h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--ink); margin-bottom: .5rem;
}
.real-technique p { font-size: 13px; color: var(--ink2); line-height: 1.7; }

/* Filtres réseaux */
.real-filters {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.real-filter {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 1.1rem;
  border: 1px solid var(--rule); background: none;
  color: var(--ink2); cursor: pointer; border-radius: 3px;
  transition: all .2s;
}
.real-filter:hover { border-color: var(--blue); color: var(--blue); }
.real-filter.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Chantiers inline */
.real-chantiers { display: flex; flex-direction: column; gap: 3.5rem; }
.real-chantier {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3rem; align-items: center;
}
.real-chantier:nth-child(even) { direction: rtl; }
.real-chantier:nth-child(even) > * { direction: ltr; }
.real-chantier-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 700;
  color: var(--rule); line-height: 1; margin-bottom: .8rem;
}
.real-chantier-cat {
  display: inline-block;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--blue); color: #fff;
  padding: 3px 9px; border-radius: 3px; margin-bottom: .8rem;
}
.real-chantier-meta h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--ink); line-height: 1.2; margin-bottom: .6rem;
}
.real-chantier-meta p { font-size: 13.5px; color: var(--ink2); line-height: 1.8; margin-bottom: 1rem; }
.real-chantier-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.real-chantier-tags span {
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--rule); padding: 3px 9px; color: var(--ink2);
}

/* Slider (copie des styles existants avec nouveaux IDs) */
#real-reseaux .slider-wrap,
#real-couverture .slider-wrap {
  border: 1px solid var(--rule);
}

/* Prestations couverture */
.real-prestations {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}
.real-prestation {
  background: var(--paper); padding: 1.8rem 2rem;
  position: relative;
}
.real-prestation::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 0; background: var(--orange);
  transition: height .3s;
}
.real-prestation:hover::before { height: 3px; }
.real-prestation h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--ink); margin-bottom: .5rem;
}
.real-prestation p { font-size: 13px; color: var(--ink2); line-height: 1.7; }

/* Responsive */
@media (max-width: 960px) {
  .real-panel-featured { grid-template-columns: 1fr; }
  .real-panel-photo { min-height: 260px; }
  .real-panel-info { border-left: none; border-top: 1px solid var(--rule); padding: 2rem; }
  .real-techniques { grid-template-columns: repeat(2, 1fr); }
  .real-prestations { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .real-tabs { flex-direction: column; }
  .real-tab { border-right: none; border-bottom: 1px solid var(--rule); }
  .real-chantier { grid-template-columns: 1fr; gap: 1.5rem; }
  .real-chantier:nth-child(even) { direction: ltr; }
  .real-techniques { grid-template-columns: 1fr 1fr; }
}


/* ── Icône email nav ── */
.nav-mail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--ink2);
  transition: color .2s, border-color .2s, background .2s;
}
.nav-mail-icon:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: rgba(0,174,239,.05);
}

/* ── Email cliquable dans hero contact ── */
.hc-sub-mail {
  text-decoration: none;
  color: var(--orange);
  transition: color .2s;
  display: block;
  font-size: 14px;
}
.hc-sub-mail:hover {
  color: var(--blue);
}


/* ── Actions mobiles dans la nav ── */
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: .6rem;
  margin-left: auto;
  margin-right: .75rem;
}
.nav-mobile-tel {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: .02em;
}

@media (max-width: 860px) {
  .nav-mobile-actions { display: flex; }
}


/* ══════════════════════════════════════════════════════
   GALERIE ÉQUIPE
══════════════════════════════════════════════════════ */
.equipe-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}
.equipe-featured {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.equipe-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s;
  max-height: 520px;
}
.equipe-featured:hover img { transform: scale(1.03); }
.equipe-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 100%);
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.equipe-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
}
.equipe-cell {
  overflow: hidden;
  border: 1px solid var(--rule);
  aspect-ratio: 1;
}
.equipe-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s;
}
.equipe-cell:nth-child(3) img {
  object-position: center 60%;
}
.equipe-cell:hover img { transform: scale(1.05); }

@media (max-width: 760px) {
  .equipe-grid { grid-template-columns: 1fr; }
  .equipe-featured img { max-height: 320px; }
  .equipe-secondary { grid-template-columns: 1fr 1fr; gap: .8rem; }
}


/* ── Email dans les blocs situation ── */
.sit-contact-mail {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,114,42,.25);
  padding-bottom: 2px;
  margin: .4rem 0 .6rem;
  transition: color .2s, border-color .2s;
  word-break: break-all;
}
.sit-contact-mail:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}


/* ── Deux emails dans un crow ── */
.c-val a + a {
  display: block;
  margin-top: .3rem;
}


@media (max-width: 760px) {
  #situations + section .sec-in > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
