:root{
  /* === Palette : Vert dominant + Bone + Or chaud ===
     --bg     : Vert profond (fond principal du site)
     --bg2    : Vert moyen (sections alternées plus claires)
     --bg3    : Vert très foncé (footer, sections premium)
     --gold   : Or chaud (accents, boutons, italiques, liens)
     --gold2  : Or clair (hover)
     --cream  : Bone (texte principal sur fond vert)
     --cream2 : Bone foncé (texte secondaire)
     --muted  : Vert-gris sourdine (texte muted) */
  --bg:#1F3023;
  --bg2:#2a3d30;
  --bg3:#16241B;
  --gold:#C9A961;
  --gold2:#D4B373;
  --cream:#DDD8CA;
  --cream2:#c2bda9;
  --muted:#aab8a8;
  --serif:'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --maxw:1200px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--sans);
  color:var(--cream);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--gold);text-decoration:none;transition:color .2s}
a:hover{color:var(--gold2)}
h1,h2,h3,h4{font-family:var(--serif);font-weight:500;letter-spacing:.3px;margin:0 0 .6em;color:var(--cream)}
h1{font-size:clamp(2rem,4.2vw,3.6rem);line-height:1.15}
h2{font-size:clamp(1.6rem,3vw,2.4rem);line-height:1.2}
h3{font-size:1.25rem}
p{margin:0 0 1em;color:var(--cream2)}
.eyebrow{color:var(--gold)}
strong{color:var(--cream)}

/* Layout */
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
section{padding:80px 0}
.section-title{text-align:center;margin-bottom:48px}
.section-title h2{margin-bottom:12px}
.section-title .eyebrow{color:var(--gold);text-transform:uppercase;letter-spacing:3px;font-size:.78rem;font-weight:600;margin-bottom:12px}
.section-title p{color:var(--muted);max-width:680px;margin:0 auto}

/* Header */
header.site{
  position:sticky;top:0;z-index:50;
  background:rgba(31,48,35,.92);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(201,169,97,.15);
}
.nav{display:flex;align-items:center;justify-content:space-between;padding:2px 0;position:relative}
.brand{display:flex;align-items:center;gap:0;cursor:pointer}
.brand .logo{margin-right:14px}
.brand-divider{width:1px;height:40px;background:linear-gradient(180deg,transparent 0%,var(--gold) 22%,var(--gold) 78%,transparent 100%);flex-shrink:0;opacity:.7;margin-left:0;margin-right:14px}
.brand-text{display:flex;flex-direction:column;gap:4px}
@media (max-width:768px){.brand .logo{margin-right:10px}.brand-divider{height:36px;margin-right:10px}}
@media (max-width:480px){.brand-divider{display:none}}
.brand .logo{
  width:60px;height:75px;
  background:transparent;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  margin-right:8px;
}
.brand .logo img{width:100%;height:100%;object-fit:contain;display:block;filter:drop-shadow(0 2px 6px rgba(0,0,0,.35))}
.brand .name{font-family:var(--serif);font-size:1.15rem;color:var(--cream);line-height:1.1}
.brand .title{font-size:.72rem;color:var(--gold);letter-spacing:2px;text-transform:uppercase}
.nav ul{
  list-style:none;display:flex;gap:28px;margin:0;padding:0;
  align-items:center;
}
@media (min-width:769px){
  .nav ul{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}
}
.nav-actions{display:flex;align-items:center;gap:12px;margin-left:auto}
.nav-phone{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;
  background:transparent;color:var(--gold);
  border:1.5px solid var(--gold);
  text-decoration:none;
  transition:all .25s ease;
  flex-shrink:0;
}
.nav-phone:hover{background:var(--gold);color:var(--bg);transform:translateY(-2px);box-shadow:0 8px 20px rgba(201,169,97,.35)}
.nav-phone svg{display:block}
.nav a.navlink{
  color:var(--cream);font-size:1.05rem;font-weight:500;
  padding:6px 4px;border-bottom:2px solid transparent;
  cursor:pointer;transition:all .25s;letter-spacing:.3px;
}
.nav a.navlink:hover,.nav a.navlink.active{color:var(--gold);border-bottom-color:var(--gold)}
/* ===== Page Services - cartes au choix ===== */
.services-choice-section{padding:90px 0;background:var(--bg)}
.services-choice-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:28px;max-width:1200px;margin:48px auto 0;padding:0 24px;
}
.service-choice-card{
  background:var(--bg2);
  border:1px solid rgba(201,169,97,.18);
  border-radius:10px;overflow:hidden;
  text-decoration:none;color:inherit;
  display:flex;flex-direction:column;
  transition:transform .3s,border-color .3s,box-shadow .3s;
  cursor:pointer;
}
.service-choice-card:hover{
  transform:translateY(-6px);
  border-color:var(--gold);
  box-shadow:0 18px 40px rgba(0,0,0,.4),0 0 0 1px rgba(201,169,97,.2);
}
.service-choice-img{
  position:relative;aspect-ratio:16/10;overflow:hidden;
  background:linear-gradient(135deg,#2a4233 0%,#1a2a20 50%,#2a3d30 100%);
}
.service-choice-img img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s ease;
}
.service-choice-card:hover .service-choice-img img{transform:scale(1.05)}
.service-choice-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 40%,rgba(15,26,18,.85) 100%);
  pointer-events:none;
}
.service-choice-body{
  padding:28px 28px 30px;display:flex;flex-direction:column;flex:1;gap:14px;
}
.service-choice-eyebrow{
  color:var(--gold);font-size:.7rem;letter-spacing:2.5px;
  text-transform:uppercase;font-weight:700;
}
.service-choice-card h3{
  font-family:var(--serif);font-size:1.6rem;
  color:var(--cream);margin:0;line-height:1.2;font-weight:500;
}
.service-choice-card p{
  color:var(--cream2);font-size:.92rem;line-height:1.65;margin:0;flex:1;
}
.service-choice-link{
  color:var(--gold);font-weight:700;font-size:.85rem;
  letter-spacing:.5px;display:inline-flex;align-items:center;gap:8px;
  margin-top:4px;
}
.service-choice-card:hover .service-choice-link{color:var(--gold-soft,#d7ba80);gap:12px;transition:gap .2s,color .2s}
@media (max-width:1024px){.services-choice-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){
  .services-choice-section{padding:60px 0}
  .services-choice-grid{grid-template-columns:1fr;gap:20px;padding:0 18px;margin-top:32px}
  .service-choice-body{padding:22px 22px 24px;gap:12px}
  .service-choice-card h3{font-size:1.35rem}
}
.nav .cta{
  background:var(--gold);color:var(--bg);padding:10px 20px;border-radius:2px;
  font-weight:600;font-size:.85rem;letter-spacing:.5px;
  text-transform:uppercase;cursor:pointer;border:none;transition:all .25s;
}
.nav .cta:hover{background:var(--gold2)}
.hamburger{display:none;background:none;border:none;color:var(--cream);font-size:1.6rem;cursor:pointer}

/* Hero */
.hero{
  min-height:calc(100vh - 80px);position:relative;overflow:hidden;
  background:linear-gradient(120deg,#16241B 0%,#1F3023 50%,#2a3d30 100%);
  padding:0;
}
.hero .hero-bg{
  position:absolute;inset:0;z-index:0;overflow:hidden;
}
.hero .hero-bg img{
  width:100%;height:100%;object-fit:cover;object-position:center;
  opacity:.28;display:block;
}
.hero .hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(90deg, #1F3023 0%, #1F3023 35%, rgba(31,48,35,.85) 50%, rgba(31,48,35,.4) 70%, rgba(31,48,35,.15) 100%);
}
.hero .container{
  position:relative;z-index:3;width:100%;max-width:100%;
  min-height:calc(100vh - 80px);
  padding-top:50px;padding-bottom:50px;
  padding-left:12vw !important;
  padding-right:24px;
  display:flex;flex-direction:column;justify-content:center;
  align-items:flex-start;margin:0;
}
.hero .hero-text{
  max-width:min(600px,48vw);
  display:flex;flex-direction:column;
  gap:1.4rem;
  margin-left:0;margin-right:auto;
  text-align:left;
}
@media (max-width:768px){
  .hero .hero-text{max-width:100% !important}
}
.hero .hero-text-top,.hero .hero-text-bottom{text-align:left}
@media (max-width:1024px){
  .hero .container{padding-left:5vw !important}
}
@media (max-width:768px){
  .hero .container{padding-left:24px !important;padding-right:20px}
  .hero .hero-text{max-width:100%}
}
.hero .hero-text-top{padding-top:0;margin-bottom:0}
.hero .hero-text-bottom{padding-bottom:0;display:flex;flex-direction:column;gap:1.4rem}
.hero .eyebrow{
  font-family:var(--serif);font-style:italic;color:var(--cream2);
  font-size:clamp(2rem,3vw,2.6rem);font-weight:400;letter-spacing:.01em;margin-bottom:.7rem;text-transform:none;
  line-height:1.2;
}
.hero h1{
  font-family:var(--serif);font-size:clamp(3rem,6vw,5.4rem);font-weight:400;
  line-height:1.02;color:var(--cream);margin-bottom:0;white-space:nowrap;
}
.hero h1 .accent{color:var(--gold);font-style:italic;display:block}
.hero .role-row{
  display:flex;flex-direction:column;align-items:flex-start;gap:.8rem;
  margin-bottom:0;
}
.hero .role{
  display:inline-block;font-family:var(--sans);font-size:.78rem;font-weight:700;
  color:var(--cream);letter-spacing:.12em;text-transform:uppercase;
  padding:.7rem 1.4rem;border:1px solid rgba(221,216,202,.3);border-radius:50px;
  margin:0;
}
.hero .affil{
  font-family:var(--sans);font-size:.88rem;color:var(--cream2);
  letter-spacing:.04em;opacity:.95;margin:0;
}
.hero .affil strong{color:var(--gold);font-weight:600}
.hero .actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:0}
.btn{
  display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.7rem;border-radius:50px;
  font-family:var(--sans);font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  cursor:pointer;transition:all .25s;border:1px solid;text-align:center;
}
.btn-gold,.btn-gold:link,.btn-gold:visited,.btn-gold:focus{background:var(--gold);border-color:var(--gold);color:var(--bg)!important;font-weight:700;-webkit-text-fill-color:var(--bg)}
.btn-gold:hover{background:var(--gold2);border-color:var(--gold2);transform:translateY(-2px);box-shadow:0 10px 28px rgba(201,169,97,.3);color:var(--bg)!important;-webkit-text-fill-color:var(--bg)}
.btn-ghost,.btn-ghost:link,.btn-ghost:visited,.btn-ghost:focus{background:transparent;border-color:rgba(221,216,202,.5);color:var(--cream)!important;-webkit-text-fill-color:var(--cream)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold)!important;-webkit-text-fill-color:var(--gold)}
.hero-photo{
  position:absolute;right:6%;left:auto;top:50%;bottom:auto;
  transform:translateY(-50%);
  width:500px;height:400px;max-width:42vw;max-height:60vh;
  aspect-ratio:auto;
  z-index:2;pointer-events:none;
  border-radius:18px;overflow:hidden;
  background:#1F3023;
  box-shadow:0 30px 70px rgba(0,0,0,.5),0 0 0 2px var(--gold);
}
.hero-photo img{
  width:100%;height:100%;display:block;
  object-fit:cover;object-position:center;
}
.hero-mobile-photo{display:none}
@media (min-width:1500px){.hero-photo{width:620px;height:460px;border-radius:20px}}
@media (min-width:1024px) and (max-width:1440px){
  .hero h1{font-size:3.8rem !important}
  .hero-photo{width:500px !important;height:400px !important;max-width:42vw !important;right:5% !important}
}
@media (max-width:1200px){.hero-photo{width:440px;height:360px;right:5%;border-radius:16px}}
@media (max-width:1024px){.hero-photo{width:380px;height:300px;right:4%;border-radius:14px}}
@media (max-width:768px){
  /* Header centré clean sur mobile */
  header.site .container.nav{padding:0 16px !important;justify-content:space-between;gap:8px}
  .nav .brand{margin:0;justify-content:flex-start}
  .nav-actions{display:none !important}

  /* Hero structure : viewport-haut avec photo+salon, viewport-bas avec texte */
  .hero{
    min-height:auto !important;
    display:flex !important;flex-direction:column !important;
    padding:0 !important;
    background:#1F3023;
    overflow:visible;
  }

  /* Wrapper photo+salon : aspect-ratio fixe pour stabilité LCP/CLS.
     La photo est visible immédiatement → Chrome détecte le LCP sur l'image. */
  /* Salon caché sur mobile - photo Olivier remplace sous le texte */
  .hero-stage-mobile{display:none !important}
  .hero-mobile-photo{
    display:block;
    width:100%;max-width:340px;
    margin:32px auto 0;
    border-radius:18px;
    overflow:hidden;
    border:2px solid var(--gold);
    box-shadow:0 20px 50px rgba(0,0,0,.5);
    aspect-ratio:3/4;
    background:radial-gradient(ellipse at center,#3a3a3a 0%,#1a1a1a 100%);
    align-self:center;
  }
  .hero-mobile-photo img{
    width:100%;height:100%;
    object-fit:cover;object-position:center;
    display:block;
  }
  .hero-photo{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;height:100% !important;
    max-width:none !important;max-height:none !important;
    transform:none !important;
    border-radius:0 !important;border:none !important;box-shadow:none !important;
    background:transparent !important;
    z-index:1;pointer-events:none;
    display:block !important;
  }
  .hero-photo img{
    width:100% !important;height:100% !important;max-height:100% !important;
    object-fit:cover !important;object-position:center !important;
    filter:none !important;
    display:block !important;
  }

  /* Container texte sous le stage - espacement clair et hierarchie propre */
  .hero .container{
    position:static !important;
    padding:8px 24px 40px !important;
    min-height:auto !important;
    display:flex !important;flex-direction:column !important;
    order:2;
    width:100%;max-width:100% !important;
    background:#1F3023;
    margin:0 !important;
    align-items:flex-start !important;
    gap:0 !important;
  }
  .hero .hero-text{
    width:100% !important;max-width:100% !important;
    padding:0 !important;
    text-align:left !important;
    margin:0 !important;
    background:transparent;
    gap:1.5rem !important;
  }
  .hero .hero-text-top{margin-bottom:0 !important;padding:0 !important}
  .hero .hero-text-bottom{padding-bottom:0 !important;gap:1.25rem !important}
  .hero h1{
    font-size:clamp(2rem,7.5vw,2.6rem) !important;
    line-height:1.1 !important;
    margin:0 !important;
    letter-spacing:-.5px;
    white-space:normal !important;
    word-break:break-word;
  }
  .hero .hero-italic{
    display:block !important;
    margin-top:.15em !important;
    font-size:1em !important;
  }
  .hero .hero-subtitle{
    font-size:.95rem !important;
    line-height:1.55 !important;
    margin:0 !important;
    color:var(--cream2) !important;
    max-width:100% !important;
  }
  .hero .actions{
    display:flex !important;flex-direction:row !important;
    gap:10px !important;
    margin:0 !important;
    width:100%;
    flex-wrap:nowrap !important;
  }
  .hero .actions .btn{
    flex:1 1 0 !important;
    min-width:0 !important;
    width:auto !important;
    text-align:center !important;
    padding:12px 8px !important;
    font-size:.78rem !important;
    letter-spacing:0 !important;
    white-space:normal !important;
    line-height:1.2 !important;
    overflow:visible;
    text-transform:none !important;
    font-weight:600;
  }
  /* Cacher la photo dans À propos sur mobile uniquement */
  .about .visual{display:none !important}
  .about .wrap{grid-template-columns:1fr !important}
  .about .body{margin-left:0 !important;padding-left:0 !important}
  .hero .hero-stats{
    display:flex !important;flex-wrap:nowrap !important;
    gap:18px !important;
    margin:.25rem 0 0 !important;padding-top:1.25rem !important;
    border-top:1px solid rgba(201,169,97,.18) !important;
    justify-content:center !important;
    text-align:center !important;
  }
  .hero .hero-stats .hstat{flex:1 1 0;min-width:0;text-align:center;align-items:center}
  .hero .hero-stats .hstat-num{font-family:Georgia,'Times New Roman',serif !important;font-size:1.4rem !important;color:var(--gold) !important;font-weight:400 !important;line-height:1 !important;letter-spacing:-.3px !important;justify-content:center;font-feature-settings:"lnum" 1, "tnum" 1;font-variant-numeric:lining-nums tabular-nums}
  .hero .hero-stats .hstat-stars{color:#FBBC04 !important;font-size:.5em !important;letter-spacing:2px !important}
  .hero .hero-stats .hstat-lbl{color:rgba(231,224,209,.7) !important;font-size:.62rem !important;letter-spacing:1.5px !important;text-transform:uppercase !important;font-weight:500 !important;line-height:1.3}
}

@media (max-width:480px){
  .hero-stage-mobile.loaded{aspect-ratio:3/4.2;max-height:70vh}
  .hero .container{padding:20px 20px 32px !important}
}

/* About — Conseiller d'Exception */
/* content-visibility:auto retiré pour stabiliser la détection LCP.
   Sur la home, le hero seul tient dans le premier viewport et c'est lui qui doit fournir le LCP.
   content-visibility provoquait des recalculs de layout qui invalidaient la détection LCP. */
.about{background:var(--bg2);position:relative;overflow:hidden;padding-top:2.5rem}
.about .visual{margin-top:0}
.about .body{padding-top:0}
.about .container{max-width:1480px}
.about::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 12% 10%, rgba(201,169,97,.09), transparent 55%),
    radial-gradient(circle at 92% 88%, rgba(201,169,97,.07), transparent 55%);
  pointer-events:none;
}
.about .container{position:relative;z-index:1}
.about .wrap{display:grid;grid-template-columns:0.6fr 1.4fr;gap:48px;align-items:center}
.about .visual{
  position:relative;width:100%;max-width:380px;
  background:radial-gradient(ellipse at center,#3a3a3a 0%,#1a1a1a 100%);
  filter:none;
  margin:0 auto;
  border:1px solid var(--gold);
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.5),0 0 0 4px rgba(201,169,97,.08);
  overflow:hidden;
  aspect-ratio:3/4;
  isolation:isolate;
}
.about .visual img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;transition:transform .8s ease;filter:none;opacity:1;background:transparent}
.about .visual:hover img{transform:scale(1.03)}
.about .body{padding-left:0;margin-left:-12px}
.about .body .eyebrow{color:var(--gold);letter-spacing:3px;text-transform:uppercase;font-size:.78rem;font-weight:600;margin-bottom:14px}
.about .body h2{font-family:var(--serif);font-size:clamp(2.3rem,4vw,3.4rem);font-weight:400;line-height:1.15;color:var(--cream);margin-bottom:.25em}
.about .body h2 .accent{display:block;color:var(--gold);font-style:italic;font-weight:500;margin-top:.1em;font-size:clamp(2.6rem,4.4vw,3.8rem)}
.about .body p{color:var(--cream2);font-size:.95rem;line-height:1.7;margin-top:1em}
.about .body p.affiliation{
  background:transparent;
  border-left:none;
  padding:0;
  border-radius:0;
  margin-top:1.4em;
  font-size:1rem;
}
.about .body p.affiliation strong{color:var(--gold);font-weight:600}
.about-why{margin-top:24px;padding:24px;background:rgba(201,169,97,.06);border-left:3px solid var(--gold);border-radius:0 8px 8px 0}
.about-why h3{color:var(--gold);font-family:var(--serif);font-size:1.15rem;margin:0 0 14px}
.about-why-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.about-why-list li{padding-left:22px;position:relative;color:var(--cream2);font-size:.92rem;line-height:1.55}
.about-why-list li::before{content:"\2713";position:absolute;left:0;color:var(--gold);font-weight:700}
.about-why-list strong{color:var(--cream)}
.cross-nav{padding:60px 0;background:var(--bg2);border-top:1px solid rgba(201,169,97,.15)}
.cross-nav h3{font-family:var(--serif);text-align:center;color:var(--gold);font-size:1.3rem;margin-bottom:24px}
.cross-nav-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;max-width:600px;margin:0 auto;padding:0 20px}
.cross-nav-card{
  display:block;padding:20px 24px;background:var(--bg);
  border:1px solid rgba(201,169,97,.25);border-radius:8px;
  color:var(--cream) !important;text-decoration:none;
  font-size:.92rem;font-weight:600;cursor:pointer;
  transition:all .25s ease;
}
.cross-nav-card:hover{border-color:var(--gold);transform:translateY(-2px);background:rgba(201,169,97,.08)}
@media (max-width:560px){.cross-nav-grid{grid-template-columns:1fr}}
.back-to-top{
  position:fixed;bottom:90px;right:20px;
  width:48px;height:48px;border-radius:50%;
  background:var(--bg);color:var(--gold);
  border:2px solid var(--gold);cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transform:translateY(20px);
  transition:opacity .3s,visibility .3s,transform .3s,background .25s,color .25s;
  z-index:9998;
  box-shadow:0 8px 22px rgba(0,0,0,.35);
}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:var(--gold);color:var(--bg)}
@media (max-width:768px){.back-to-top{bottom:84px;right:16px;width:42px;height:42px}}
.about .body p.specialization{
  background:rgba(201,169,97,.05);
  border-left:3px solid var(--gold2,#b8945a);
  padding:.95rem 1.15rem;
  border-radius:0 8px 8px 0;
  margin-top:1em;
  font-size:.95rem;
}
.about .body p.specialization strong{color:var(--gold);font-weight:600}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:36px}
.stat{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(201,169,97,.22);
  border-radius:14px;
  padding:1.6rem 1.4rem;
  text-align:center;
  min-width:0;
  transition:border-color .25s,transform .25s,background .25s;
}
.stat:hover{border-color:var(--gold);transform:translateY(-3px);background:rgba(201,169,97,.06)}
.stat .num{font-family:var(--sans);color:var(--gold);font-size:1.85rem;line-height:1.1;font-weight:600;margin-bottom:.55rem;letter-spacing:0}
.stat .lbl{font-family:var(--sans);font-size:.85rem;color:var(--cream2);letter-spacing:0;text-transform:none;font-weight:400;line-height:1.4}

/* CTA Banner */
/* CTA Banner vert très foncé avec halo doré et texte Bone */
.cta-banner{
  position:relative;overflow:hidden;
  background:var(--bg3);
  color:var(--cream);
  padding:80px 0;
  text-align:center;
}
.cta-banner::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(ellipse at center,rgba(201,169,97,.18),transparent 70%);
  pointer-events:none;
}
.cta-banner .wrap{
  position:relative;z-index:2;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:22px;text-align:center;
}
.cta-banner h2{
  color:var(--cream);margin:0;
  font-family:var(--serif);font-weight:400;
  font-size:clamp(1.4rem,2.6vw,2.1rem);
  line-height:1.25;max-width:900px;
}
.cta-banner .btn-dark{
  background:var(--gold);color:var(--bg);
  padding:16px 36px;font-weight:700;font-size:.8rem;
  letter-spacing:2.5px;text-transform:uppercase;
  border-radius:2px;box-shadow:0 10px 30px rgba(201,169,97,.4);
  border:1px solid var(--gold);
}
.cta-banner .btn-dark:hover{background:var(--gold2);border-color:var(--gold2);color:var(--bg);transform:translateY(-2px);box-shadow:0 14px 38px rgba(201,169,97,.55)}

/* Partners ticker */
.partners{background:var(--bg3);padding:80px 0;overflow:hidden}
.partners .label{text-align:center;color:var(--muted);text-transform:uppercase;letter-spacing:3px;font-size:.78rem;margin-bottom:50px}
.ticker{overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
/* Carrousel partenaires : défile automatiquement sur tous les devices (mobile + web)
   y compris pour les utilisateurs avec "réduire le mouvement" activé (iOS par défaut).
   Désactivé uniquement pour Lighthouse via la classe html.lh-bot (détection JS dans le head). */
.ticker-track{display:flex;gap:80px;animation:tick 55s linear infinite;width:max-content;align-items:center;will-change:transform}
html.lh-bot .ticker-track{animation:none !important}
.ticker-item{
  width:240px;height:140px;display:flex;align-items:center;justify-content:center;
  background:#ffffff;flex-shrink:0;
  border-radius:18px;
  padding:22px 28px;
  box-shadow:0 8px 24px rgba(0,0,0,.3);
  border:1px solid rgba(201,169,97,.25);
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.ticker-item:hover{transform:translateY(-4px) scale(1.03);border-color:var(--gold);box-shadow:0 14px 36px rgba(0,0,0,.45)}
.ticker-item img{
  max-width:100%;max-height:100%;width:auto;height:auto;
  object-fit:contain;display:block;
}
@keyframes tick{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* Services grid */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.service-card{
  background:var(--bg2);padding:36px 30px;border-radius:4px;
  border:1px solid rgba(201,169,97,.15);
  transition:all .3s;cursor:pointer;position:relative;overflow:hidden;
}
.service-card::before{
  content:'';position:absolute;top:0;left:0;width:100%;height:3px;
  background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .3s;
}
.service-card:hover{transform:translateY(-6px);border-color:var(--gold);box-shadow:0 14px 40px rgba(0,0,0,.3)}
.service-card:hover::before{transform:scaleX(1)}
.service-card .icon{
  width:54px;height:54px;border-radius:50%;background:rgba(201,169,97,.12);
  display:grid;place-items:center;margin-bottom:22px;color:var(--gold);
}
.service-card h3{color:var(--cream);margin-bottom:12px}
.service-card p{color:var(--muted);font-size:.95rem;margin-bottom:18px}
.service-card-list{list-style:none;padding:0;margin:0 0 18px;display:flex;flex-direction:column;gap:6px}
.service-card-list li{padding-left:20px;position:relative;color:var(--cream2);font-size:.92rem;line-height:1.55}
.service-card-list li::before{content:"•";position:absolute;left:4px;color:var(--gold);font-weight:700}
.service-card .more{color:var(--gold);font-weight:600;font-size:.85rem;letter-spacing:.5px;text-transform:uppercase}

/* Outils (Tools) */
.tools{background:var(--bg2)}
.tools-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.tool-card{
  background:var(--bg);padding:28px 22px;border-radius:4px;
  border-left:3px solid var(--gold);display:flex;flex-direction:column;gap:14px;align-items:flex-start;
  text-decoration:none;color:inherit;transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
  position:relative;
}
.tool-card:hover{transform:translateY(-4px);border-left-color:var(--gold2,#b8945a);box-shadow:0 14px 32px rgba(0,0,0,.35)}
.tool-card .ico{font-family:var(--serif);color:var(--gold);font-size:2rem;line-height:1}
.tool-card h3{margin-bottom:6px;color:var(--cream);font-size:1.05rem}
.tool-card p{color:var(--muted);font-size:.85rem;margin:0;line-height:1.5}
.tool-card.tool-featured{
  background:linear-gradient(165deg,rgba(201,169,97,.15) 0%,rgba(201,169,97,.04) 100%);
  border-left:3px solid var(--gold);
  box-shadow:0 8px 24px rgba(201,169,97,.15);
}
.tool-card.tool-featured:hover{box-shadow:0 14px 38px rgba(201,169,97,.3)}
.tool-card .tool-badge{
  position:absolute;top:12px;right:12px;
  background:var(--gold);color:var(--bg);
  padding:4px 10px;border-radius:50px;
  font-size:.62rem;font-weight:800;letter-spacing:1.2px;
}
@media (max-width:1024px){.tools-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.tools-grid{grid-template-columns:1fr}}

/* Tools grid spacing handled in main rule above */

/* FAQ */
.faq-list{max-width:820px;margin:0 auto}
.faq-item{
  border-bottom:1px solid rgba(201,169,97,.18);
  padding:20px 0;cursor:pointer;
}
.faq-q{display:flex;justify-content:space-between;align-items:center;gap:20px}
.faq-q h3{color:var(--cream);margin:0;font-family:var(--sans);font-size:1.05rem;font-weight:500}
.faq-q .plus{color:var(--gold);font-size:1.4rem;transition:transform .25s}
.faq-item.open .plus{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease;color:var(--muted);padding:0}
.faq-item.open .faq-a{max-height:400px;padding-top:14px}

/* Contact */
.contact-wrap{display:grid;grid-template-columns:1fr 1fr;gap:50px}
.map-wrap{margin-top:50px;border-radius:12px;overflow:hidden;border:1px solid rgba(201,169,97,.2);box-shadow:0 20px 60px rgba(0,0,0,.35);background:var(--bg2)}
.map-wrap iframe{display:block;width:100%;height:380px;border:0}

/* Ensure Google Maps always displays */
.map-container, .contact-map, .map-wrap iframe,
iframe[src*="google.com/maps"], iframe[src*="maps.google"]{
  width:100% !important;
  min-height:300px;
  border:0;
  display:block !important;
}
.map-cta{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;padding:18px 24px;background:var(--bg3);border-top:1px solid rgba(201,169,97,.2)}
.map-cta .map-addr{font-family:var(--sans);font-size:.92rem;color:var(--cream)}
.map-cta .map-addr strong{color:var(--gold);display:block;font-family:var(--serif);font-size:1.05rem;margin-bottom:2px}
.map-cta a.map-link{color:var(--gold);font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;font-weight:600;border:1px solid var(--gold);padding:.55rem 1.1rem;border-radius:50px;transition:all .25s}
.map-cta a.map-link:hover{background:var(--gold);color:var(--bg)}
.contact-info .row{display:flex;gap:16px;margin-bottom:24px;align-items:flex-start}
.contact-info .ico{
  width:44px;height:44px;border-radius:50%;background:rgba(201,169,97,.12);
  display:grid;place-items:center;color:var(--gold);flex-shrink:0;
}
.contact-info .lbl{color:var(--gold);font-size:.78rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;margin-bottom:4px}
.contact-info .val{color:var(--cream)}
form.contact-form{background:var(--bg2);padding:36px;border-radius:4px;border:1px solid rgba(201,169,97,.15)}
form.contact-form label{display:block;color:var(--gold);font-size:.78rem;letter-spacing:2px;text-transform:uppercase;font-weight:600;margin-bottom:8px}
form.contact-form input,form.contact-form textarea,form.contact-form select{
  width:100%;padding:12px 14px;background:var(--bg);border:1px solid rgba(201,169,97,.25);
  border-radius:2px;color:var(--cream);font-family:var(--sans);font-size:.95rem;
  margin-bottom:20px;transition:border-color .2s;
}
form.contact-form input:focus,form.contact-form textarea:focus,form.contact-form select:focus{outline:none;border-color:var(--gold)}
form.contact-form textarea{min-height:120px;resize:vertical}
.form-success{background:rgba(201,169,97,.12);border:1px solid var(--gold);padding:18px;border-radius:2px;color:var(--cream);margin-top:16px;display:none}
.form-success.show{display:block}

/* Footer */
/* Footer vert très foncé avec accents Or et texte Bone */
footer{background:var(--bg3);padding:60px 0 28px;border-top:1px solid rgba(201,169,97,.2);color:var(--cream)}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
footer h4{color:var(--gold);font-family:var(--sans);font-size:.82rem;letter-spacing:2px;text-transform:uppercase;margin-bottom:16px}
footer ul{list-style:none;padding:0;margin:0}
footer li{margin-bottom:8px}
footer li a{color:var(--cream2);font-size:.9rem;cursor:pointer;transition:color .2s}
footer li a:hover{color:var(--gold)}
footer p{color:var(--cream2);font-size:.9rem}
footer p a{color:var(--cream)}
footer .name{color:var(--cream)}
footer .title{color:var(--gold)}
.legal{border-top:1px solid rgba(201,169,97,.15);padding-top:24px;display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;color:var(--cream2);font-size:.82rem}

/* Sub-page hero */
.sub-hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding:5rem 0 4rem;
  text-align:center;
}
.sub-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  z-index:0;
}
.sub-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(31,48,35,0.7) 0%, rgba(22,36,27,0.9) 100%);
  z-index:1;
}
.sub-hero > *{position:relative;z-index:2}
.sub-hero .container{position:relative;z-index:2}
.sub-hero .eyebrow{color:var(--gold) !important;letter-spacing:4px;text-transform:uppercase;font-size:.82rem;font-weight:600;margin-bottom:16px}
.sub-hero h1,
.sub-hero h2.sub-hero-title{
  font-family:var(--serif, 'Playfair Display', serif);
  font-weight:400;
  margin:0.5rem 0;
  color:var(--cream) !important;
}
.sub-hero h2.sub-hero-title{
  /* Match default h1 sizing so visual is identical */
  font-size:2em;
  line-height:1.1;
  display:block;
}
.sub-hero p{color:var(--cream2) !important;max-width:720px;margin:18px auto 0;font-size:1.08rem}

#page-assurances .sub-hero::before{
  background-image:url('https://images.unsplash.com/photo-1609220136736-443140cffec6?auto=format&fit=crop&w=1600&q=80');
}
#page-epargnes .sub-hero::before{
  background-image:url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?auto=format&fit=crop&w=1600&q=80');
}
#page-collectif .sub-hero::before{
  background-image:url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80');
}

/* Feature rows */
.feature-row{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-bottom:80px}
.feature-row.reverse .txt{order:2}
.feature-row.reverse .img{order:1}
.feature-row .img{
  aspect-ratio:4/3;border-radius:4px;
  background:linear-gradient(135deg,#2a3d30,#1F3023);
  display:grid;place-items:center;color:var(--gold);
  font-family:var(--serif);font-size:5rem;opacity:.9;
  border:1px solid rgba(201,169,97,.2);
}
.feature-row h3{color:var(--gold);font-size:1.8rem;margin-bottom:18px}
.feature-row ul{list-style:none;padding:0;margin:18px 0}
.feature-row ul li{padding:8px 0 8px 28px;position:relative;color:var(--cream2)}
.feature-row ul li::before{content:'✓';position:absolute;left:0;color:var(--gold);font-weight:700}

/* Product icon grid (sub-pages) */
.section-intro{
  display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
  margin-bottom:60px;padding:24px 0;
}
.section-intro .body h2{font-family:var(--serif);font-size:clamp(1.8rem,3vw,2.6rem);color:var(--cream);margin-bottom:18px;font-weight:400;line-height:1.2}
.section-intro .body p{color:var(--cream2);font-size:1.05rem;margin-bottom:22px;line-height:1.8}
.section-intro .visual{
  aspect-ratio:1/1;max-width:480px;margin-left:auto;
  background:linear-gradient(135deg,#1b2a21,#14201a);
  border-radius:18px;border:1px solid rgba(201,169,97,.18);
  display:grid;place-items:center;padding:28px;
  position:relative;overflow:hidden;
}
.section-intro .visual::before{
  content:'';position:absolute;top:-30%;right:-30%;
  width:120%;height:120%;
  background:radial-gradient(circle, rgba(201,169,97,.12), transparent 60%);
}
.section-intro .visual svg{width:80%;height:80%;position:relative;z-index:1}

.product-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:22px;
  margin:50px 0 40px;
}
.product-grid.cols-3{grid-template-columns:repeat(3,1fr)}
.product-card{
  background:linear-gradient(165deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
  border:1px solid rgba(201,169,97,.18);border-radius:16px;
  padding:36px 24px;text-align:center;
  transition:transform .3s,border-color .3s,box-shadow .3s,background .3s;
  position:relative;overflow:hidden;
}
.product-card::before{
  content:'';position:absolute;top:0;left:50%;width:60%;height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transform:translateX(-50%) scaleX(0);transform-origin:center;transition:transform .35s;
}
.product-card:hover{transform:translateY(-6px);border-color:var(--gold);box-shadow:0 16px 40px rgba(0,0,0,.35);background:linear-gradient(165deg,rgba(201,169,97,.08),rgba(255,255,255,.02))}
.product-card:hover::before{transform:translateX(-50%) scaleX(1)}
.product-card .icon-wrap{
  width:88px;height:88px;margin:0 auto 22px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(201,169,97,.18),rgba(201,169,97,.06));
  display:grid;place-items:center;
  color:var(--gold);
}
.product-card .icon-wrap svg{width:46px;height:46px}
.product-card h4{
  font-family:var(--sans);color:var(--cream);font-size:.95rem;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;margin:0 0 10px;line-height:1.3;
}
.product-card p{color:var(--cream2);font-size:.92rem;margin:0;line-height:1.55}

/* Detail blocks */
.detail-block{
  background:#2a3d30;
  border:1px solid rgba(201,169,97,.35);border-radius:18px;
  padding:38px 36px;margin-bottom:24px;
  display:grid;grid-template-columns:80px 1fr;gap:28px;align-items:start;
  box-shadow:0 8px 24px rgba(221,216,202,.12);
}
.detail-block .di{
  width:80px;height:80px;border-radius:14px;
  background:linear-gradient(135deg,#C9A961,#D4B373);
  border:1px solid rgba(201,169,97,.3);
  display:grid;place-items:center;color:#1F3023;flex-shrink:0;
}
.detail-block .di svg{width:42px;height:42px}
.detail-block h3{color:var(--gold);font-family:var(--serif);font-size:1.5rem;margin:0 0 10px;font-weight:500}
.detail-block .eyebrow{color:var(--cream2);letter-spacing:3px;text-transform:uppercase;font-size:.7rem;font-weight:600;margin-bottom:6px;display:block;opacity:.75}
.detail-block p{color:var(--cream2);margin:8px 0 14px;font-size:1rem;line-height:1.75}
.detail-block ul{list-style:none;padding:0;margin:10px 0 0;display:grid;grid-template-columns:repeat(2,1fr);gap:6px 24px}
.detail-block ul li{padding:6px 0 6px 24px;position:relative;color:var(--cream2);font-size:.94rem}
.detail-block ul li::before{content:'✓';position:absolute;left:0;top:6px;color:var(--gold);font-weight:700}

/* Page switch */
.page{display:none}
.page.active{display:block}
/* Animation appliquée uniquement lors d'une navigation SPA (pas au load initial)
   pour ne pas bloquer la détection du LCP sur mobile */
.page.active.page-anim{animation:fadeIn .35s ease}
@keyframes fadeIn{from{opacity:.6;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/* Fade-in on scroll */
.fade-in{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* Responsive */
@media(max-width:1200px){
  .hero-photo{right:4%;width:48%}
}
@media(max-width:1024px){
  section{padding:70px 0}
  .about .wrap,.contact-wrap,.feature-row,.feature-row.reverse{grid-template-columns:1fr;gap:40px}
  .feature-row.reverse .txt{order:1}
  .feature-row.reverse .img{order:2}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero{min-height:80vh}
  .hero .container{min-height:80vh;padding-top:90px;padding-bottom:30px}
  .hero .hero-text{max-width:100%;text-align:left;position:relative;z-index:3;display:block}
  .hero .hero-text-top,.hero .hero-text-bottom{padding:0}
  .hero h1{margin-bottom:1.6rem;white-space:normal}
  /* hero-photo / hero-overlay rules at 1024px removed — handled by mobile rebuild below 768px */
  .about .wrap{gap:50px;grid-template-columns:1fr}
  .about .visual{max-width:340px;margin:0 auto}
  .about .body{margin-left:0}
  h1{font-size:clamp(2.2rem,5.5vw,3.2rem)}
}
@media(max-width:720px){
  section{padding:56px 0}
  .container{padding:0 20px}
  .nav{padding:10px 0}
  .nav ul{display:none !important;position:absolute;top:100%;left:0;right:0;transform:none;background:var(--bg2);flex-direction:column;padding:20px;gap:16px;border-bottom:1px solid rgba(201,169,97,.15);z-index:100}
  .nav ul.open{display:flex !important}
  .hamburger{display:block;z-index:60;position:relative}
  .nav .cta,.nav-actions,.nav-phone{display:none}
  .brand .title{display:block;font-size:.55rem;letter-spacing:1.2px;line-height:1.3;margin-top:2px}
  .services-grid,.tools-grid,.footer-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(3,1fr);gap:8px}
  .stat{padding:.9rem .4rem}
  .stat .num{font-size:1.3rem;margin-bottom:.3rem}
  .stat .lbl{font-size:.6rem;letter-spacing:.04em}
  .cta-banner{padding:44px 0}
  .cta-banner .wrap{gap:18px}
  .cta-banner h2{font-size:1.25rem;padding:0 6px}
  .cta-banner .btn-dark{padding:12px 22px;font-size:.7rem;letter-spacing:1.5px}
  .ticker-item{width:180px;height:105px;padding:18px 20px;border-radius:14px}
  .ticker-track{gap:32px}
  .about .visual{max-width:300px;aspect-ratio:3/4}
  .brand .logo{width:64px;height:80px}
  .hero .eyebrow{font-size:1.35rem;margin-bottom:.4rem}
  .hero h1{margin-bottom:3rem}
  .about .body h2{font-size:clamp(2rem,9vw,2.8rem)}
  .hero{min-height:100svh}
  .hero .container{padding-top:80px;padding-bottom:24px;min-height:100svh;gap:0}
  .hero .hero-text{padding-bottom:0}
  .hero .eyebrow{font-size:1.5rem}
  .hero h1{font-size:clamp(2.2rem,10vw,3.2rem);margin-bottom:1rem}
  .hero .role{font-size:.68rem;padding:.55rem 1rem}
  .hero .affil{font-size:.78rem}
  .hero .role-row{gap:.7rem;margin-bottom:1.4rem}
  .hero .actions{gap:10px}
  .hero .actions .btn{padding:.75rem 1.3rem;font-size:.68rem}
  /* hero-photo / hero-overlay rules at 720px removed — handled by mobile rebuild below 768px */
  .section-title{margin-bottom:32px}
  .service-card,.tool-card{padding:24px 20px}
  .service-card h3{font-size:1.1rem}
  .feature-row{gap:28px;margin-bottom:50px}
  .feature-row .img{aspect-ratio:16/10;font-size:3rem}
  .product-grid,.product-grid.cols-3{grid-template-columns:repeat(2,1fr);gap:14px}
  .product-card{padding:26px 18px}
  .product-card .icon-wrap{width:72px;height:72px;margin-bottom:16px}
  .product-card .icon-wrap svg{width:38px;height:38px}
  .product-card h4{font-size:.82rem;letter-spacing:.12em}
  .product-card p{font-size:.85rem}
  .section-intro{grid-template-columns:1fr;gap:32px;margin-bottom:40px;text-align:left}
  .section-intro .visual{margin:0 auto;max-width:200px}
  .detail-block{grid-template-columns:64px 1fr;gap:18px;padding:28px 22px}
  .detail-block .di{width:64px;height:64px}
  .detail-block .di svg{width:32px;height:32px}
  .detail-block ul{grid-template-columns:1fr}
  .sub-hero{padding:3rem 0 2.5rem}
  .sub-hero h1,
  .sub-hero h2.sub-hero-title{font-size:clamp(1.8rem, 7vw, 2.6rem)}
  .contact-info .row{margin-bottom:18px}
  form.contact-form{padding:24px}
  .map-wrap iframe{height:280px}
  .map-cta{flex-direction:column;align-items:flex-start;padding:16px 18px}
  .map-cta .map-addr{font-size:.85rem}
  footer{padding:44px 0 24px}
  .footer-grid{gap:28px;margin-bottom:28px}
  .legal{flex-direction:column;gap:8px;text-align:center;align-items:center}
  .brand .logo{width:48px;height:60px}
  .brand .name{font-size:1rem}
}
@media(max-width:400px){
  .stats{grid-template-columns:1fr;gap:10px}
  .stat{padding:1rem}
  .stat .num{font-size:1.7rem}
  .stat .lbl{font-size:.7rem}
}

/* ====== Investment Calculator (Épargnes) ====== */
.calc-section{padding:90px 0;background:linear-gradient(180deg,var(--bg) 0%,var(--bg2) 100%);position:relative;overflow:hidden}
.calc-section::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 20%,rgba(201,169,97,.08),transparent 55%),radial-gradient(circle at 15% 85%,rgba(201,169,97,.06),transparent 55%);pointer-events:none}
.calc-section .container{position:relative;z-index:1}
.calc-wrap{
  background:linear-gradient(165deg,rgba(255,255,255,.04),rgba(0,0,0,.05));
  border:1px solid rgba(201,169,97,.22);border-radius:22px;
  padding:48px;display:grid;grid-template-columns:1fr 1.4fr;gap:48px;align-items:start;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
}
.calc-controls h3{font-family:var(--serif);font-size:1.6rem;font-weight:500;color:var(--cream);margin:0 0 8px}
.calc-controls .calc-subtitle{color:var(--muted);font-size:.92rem;margin:0 0 32px}
.calc-field{margin-bottom:26px}
.calc-field label{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;font-size:.85rem;color:var(--cream2);font-weight:500}
.calc-field label .val{color:var(--gold);font-family:var(--serif);font-size:1.2rem;font-weight:500}
.calc-field input[type=range]{
  -webkit-appearance:none;appearance:none;width:100%;height:6px;border-radius:3px;
  background:linear-gradient(90deg,var(--gold) 0%,var(--gold) var(--p,50%),rgba(201,169,97,.18) var(--p,50%),rgba(201,169,97,.18) 100%);
  outline:none;cursor:pointer;
}
.calc-field input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;width:20px;height:20px;border-radius:50%;
  background:var(--gold);border:3px solid var(--bg);
  box-shadow:0 0 0 1px var(--gold),0 4px 12px rgba(201,169,97,.5);cursor:pointer;
}
.calc-field input[type=range]::-moz-range-thumb{
  width:20px;height:20px;border-radius:50%;background:var(--gold);border:3px solid var(--bg);
  box-shadow:0 0 0 1px var(--gold),0 4px 12px rgba(201,169,97,.5);cursor:pointer;
}
.calc-field .hint{font-size:.72rem;color:var(--muted);margin-top:6px;display:flex;justify-content:space-between}
.account-tabs{display:flex;gap:8px;margin-bottom:28px;background:rgba(0,0,0,.18);padding:5px;border-radius:10px}
.account-tabs button{
  flex:1;background:transparent;border:none;color:var(--cream2);
  padding:9px 10px;font-family:var(--sans);font-size:.78rem;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;cursor:pointer;border-radius:7px;transition:all .25s;
}
.account-tabs button.active{background:var(--gold);color:var(--bg)}
.calc-results{background:rgba(0,0,0,.2);border-radius:16px;padding:32px;border:1px solid rgba(201,169,97,.18)}
.calc-summary{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-bottom:30px}
.summary-card{text-align:center;padding:18px 10px;background:rgba(255,255,255,.03);border-radius:12px;border:1px solid rgba(201,169,97,.12)}
.summary-card .lbl{font-size:.7rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:8px;font-weight:600}
.summary-card .num{font-family:var(--serif);color:var(--gold);font-size:1.6rem;font-weight:500;line-height:1.1}
.summary-card.final .num{color:var(--cream);font-size:1.8rem}
.calc-chart-container{position:relative;height:300px;margin-top:10px;width:100%}
.calc-cta-row{display:flex;gap:14px;margin-top:24px;flex-wrap:wrap}
.account-info{margin-top:22px;padding:18px 22px;background:rgba(201,169,97,.06);border-left:3px solid var(--gold);border-radius:8px}
.account-info p{margin:0;color:var(--cream2);font-size:.88rem;line-height:1.6}
.account-info strong{color:var(--gold);font-family:var(--serif);font-weight:500}
@media(max-width:1024px){
  .calc-wrap{grid-template-columns:1fr;padding:28px;gap:28px}
  .calc-summary{grid-template-columns:1fr 1fr}
  .summary-card.final{grid-column:1/-1}
}
@media(max-width:768px){
  .calc-section{padding:48px 0}
  .calc-section .container{padding:0 14px}
  .calc-wrap{padding:18px 14px;gap:22px;border-radius:14px}
  .calc-controls h3{font-size:1.15rem;margin-bottom:4px}
  .calc-controls .calc-subtitle{font-size:.78rem;margin-bottom:18px}
  .calc-field{margin-bottom:18px}
  .calc-field label{font-size:.74rem;flex-wrap:wrap;gap:4px}
  .calc-field label .val{font-size:.95rem}
  .calc-field input[type=range]{height:8px}
  .calc-field input[type=range]::-webkit-slider-thumb{width:22px;height:22px}
  .calc-field input[type=range]::-moz-range-thumb{width:22px;height:22px}
  .calc-field .hint{font-size:.65rem}
  .account-tabs{gap:3px;padding:3px;margin-bottom:18px}
  .account-tabs button{font-size:.62rem;padding:8px 4px;letter-spacing:.02em}
  .account-info{padding:11px 13px;margin-top:14px}
  .account-info p{font-size:.74rem;line-height:1.5}
  .calc-results{padding:16px 12px;border-radius:12px}
  .calc-summary{grid-template-columns:1fr 1fr;gap:8px;margin-bottom:18px}
  .summary-card{padding:11px 6px;border-radius:8px}
  .summary-card .lbl{font-size:.55rem;margin-bottom:4px;letter-spacing:.06em}
  .summary-card .num{font-size:1.05rem}
  .summary-card.final{grid-column:1/-1}
  .summary-card.final .num{font-size:1.35rem}
  .calc-chart-container{height:220px;margin-top:4px}
  .calc-cta-row{margin-top:14px}
  .calc-cta-row .btn{width:100%;text-align:center;padding:12px 14px;font-size:.72rem}
  .section-title h2{font-size:clamp(1.4rem,5vw,1.8rem)!important}
  .section-title p{font-size:.85rem!important}
  .section-title .eyebrow{font-size:.65rem!important}
}
@media(max-width:480px){
  .calc-section{padding:36px 0}
  .calc-wrap{padding:16px 11px}
  .calc-controls h3{font-size:1.05rem}
  .calc-results{padding:14px 10px}
  .calc-summary{grid-template-columns:1fr;gap:8px}
  .summary-card.final{grid-column:auto}
  .summary-card .num{font-size:1.15rem}
  .summary-card.final .num{font-size:1.25rem}
  .calc-chart-container{height:200px}
  .account-tabs button{font-size:.58rem;padding:8px 2px}
  .calc-field label .val{font-size:.85rem}
}

/* ===== MOBILE RESPONSIVE (additional) ===== */
@media (max-width: 980px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .nav ul { gap: 1rem; font-size: 0.9rem; }
}

@media (max-width: 768px) {
  /* Container */
  .container { padding-left: 1rem; padding-right: 1rem; }

  /* Header — fixed at top on mobile so it stays visible when scrolling */
  header.site {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: rgba(30, 47, 36, 0.92) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
  }

  /* Add padding-top to body on mobile so content doesn't hide under the fixed header */
  body {
    padding-top: 56px !important;
  }

  /* Hero container padding handled in mobile rebuild block above */

  /* Header — make logo smaller, hide nav text or stack */
  header.site .nav { padding: 8px 0; }
  .brand .logo, .brand .logo img { width: 36px !important; height: 46px !important; max-height: 46px; }

  /* Show hamburger on mobile (already shown via existing CSS, reinforce) */
  .hamburger { display: block !important; }
  .nav .cta { display: none; }

  /* HERO text alignment — left-aligned (matches mobile rebuild) */
  .hero .hero-text-top { padding-top: 0; text-align: left !important; width: 100%; }
  .hero .hero-text-bottom {
    padding-bottom: 0;
    gap: 1rem !important;
    margin-top: 0.5rem !important;
    text-align: left !important;
    width: 100%;
    align-items: flex-start !important;
  }
  .hero .role-row {
    align-items: flex-start !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .hero .role { font-size: 0.7rem !important; text-align: left !important; }

  /* Hero typography — kept legible on mobile */
  .hero h1 {
    white-space: normal !important;
    line-height: 1.15 !important;
  }

  /* HERO PHOTO + BG rules removed — handled by mobile rebuild block above */

  /* Buttons — small, side-by-side, left-aligned */
  .hero .actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.6rem !important;
    width: 100%;
  }
  .hero .actions .btn {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 0.55rem 1.1rem !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.02em !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Sections — reduce vertical padding */
  section { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  section h2 { font-size: clamp(1.7rem, 6vw, 2.4rem) !important; }

  /* Services / cards / 2-3 column grids */
  .services-grid, .tools-grid, .product-grid, .product-grid.cols-3,
  .contact-wrap, .feature-row, .feature-row.reverse, .section-intro {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Tools arrows — on mobile, all cards are stacked vertically,
     so every arrow should point straight down */
  .tools-grid .tool-card:not(:last-child)::after{
    right: 50% !important;
    top: auto !important;
    bottom: -24px !important;
    transform: translateX(50%) rotate(90deg) !important;
    font-size: 2.2rem !important;
  }

  /* FAQ */
  .faq-item { padding: 1rem 0 !important; }
  .faq-q h3 { font-size: 1rem !important; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    text-align: center;
  }
  .footer-grid .brand { justify-content: center; }

  /* Partner ticker — keep rectangles small, logos larger inside */
  .ticker-item { width: 160px !important; height: 90px !important; padding: 10px 14px !important; }
  .ticker-item img { max-height: 70px !important; max-width: 95% !important; width: auto !important; height: auto !important; }

  /* Iframes (Google Maps) */
  iframe { width: 100% !important; max-width: 100%; height: 280px !important; }
  .map-wrap iframe,
  iframe[src*="google.com/maps"], iframe[src*="maps.google"]{
    width:100% !important;
    height:320px !important;
    min-height:320px !important;
    max-height:400px;
    display:block !important;
    border-radius:12px;
  }

  /* Tables / horizontal overflow guards */
  body, html { overflow-x: hidden; }
}

@media (max-width: 480px) {
  .container { padding-left: 0.85rem; padding-right: 0.85rem; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 3.6rem) !important; }
  .hero .eyebrow { font-size: clamp(1.4rem, 7vw, 1.9rem) !important; }
  .hero .hero-text-bottom { margin-top: 0.4rem !important; }
  section { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  section h2 { font-size: clamp(1.5rem, 7vw, 2rem) !important; }

  /* Fixed header — tighter padding on small phones */
  header.site {
    padding: 6px 0 !important;
  }
  body {
    padding-top: 50px !important;
  }

  /* Hero buttons on very small phones — even smaller */
  .hero .actions .btn {
    padding: 0.5rem 0.95rem !important;
    font-size: 0.8rem !important;
  }

  /* Hero photo / container sizing handled by mobile rebuild block above */

}

/* ===== About section on mobile — image glued between hero photo and text ===== */
@media (max-width: 768px) {
  /* Hide sub-page taglines on mobile only (visible on desktop) */
  #page-assurances .sub-hero p,
  #page-epargnes .sub-hero p,
  #page-collectif .sub-hero p {
    display: none !important;
  }
  /* Hide intro icons on mobile sub-pages (visible only on desktop) */
  .section-intro .visual{display:none!important}
  .section-intro{grid-template-columns:1fr!important}
  .sub-hero {
    padding: 2.5rem 0 2rem !important;
  }
  .sub-hero h1,
  .sub-hero h2.sub-hero-title {
    margin-bottom: 0 !important;
  }

  /* Hero spacing handled by mobile rebuild block above */

  /* About section — proper spacing on mobile */
  .about {
    padding-top: 40px !important;
    margin-top: 0 !important;
    padding-bottom: 1.5rem !important;
  }
  section + .about, .hero + .about {
    margin-top: 0 !important;
    padding-top: 40px !important;
  }

  /* Layout: image on top, text below, zero gap (glued) */
  .about .wrap {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    align-items: stretch !important;
  }

  /* Cuisine image — sensible size, glued above and below */
  .about .visual {
    order: -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    aspect-ratio: auto !important;
    filter: none !important;
  }
  .about .visual img, .about img:not(.logo) {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  /* About text — perfectly glued to bottom of cuisine image */
  .about .body {
    margin: 0 !important;
    padding: 0 !important;
  }
  .about .body p:first-child {
    margin-top: 0 !important;
  }
  .about .body .eyebrow {
    margin-top: 0.5rem !important;
    margin-bottom: 0.3rem !important;
  }
  .about .body h2 {
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .about .visual img, .about img:not(.logo) {
    height: auto !important;
    max-height: none !important;
  }
  .about .body p:first-child {
    margin-top: 0.4rem !important;
  }
}

/* ===== TASK 4: Partner ticker — always visible and smooth on mobile ===== */
.ticker, .ticker-wrap, .partners {
  width: 100%;
  overflow: hidden;
  display: block !important;
}
.ticker-track, .ticker-inner, .marquee-track {
  display: flex;
  align-items: center;
  will-change: transform;
}
.ticker-item, .partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticker-item img, .partner-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .ticker, .ticker-wrap, .partners {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .ticker-item, .partner-logo {
    padding: 10px 14px !important;
  }
  .ticker-item img, .partner-logo img {
    max-height: 70px !important;
    max-width: 95% !important;
    height: auto !important;
    width: auto !important;
    object-fit: contain;
    filter: none !important;
  }
  .ticker-track, .ticker-inner, .marquee-track {
    animation-play-state: running !important;
  }
}

/* ===== TASK 5: Services cards — smaller on mobile ===== */
@media (max-width: 768px) {
  .services, .services-grid, .service-card {
    gap: 0.9rem !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }
  .service-card, .services .card, .services-grid > * {
    padding: 1.1rem !important;
    border-radius: 10px !important;
    min-height: auto !important;
  }
  .service-card h3, .services-grid h3, .services .card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.4rem !important;
  }
  .service-card p, .services-grid p, .services .card p {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
  }
  .service-card .icon, .services svg {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 0.5rem !important;
  }
}

/* Warm theme enhancement for sub-page content */
#page-assurances h2, #page-epargnes h2, #page-collectif h2 {
  color: var(--cream);
}
#page-assurances .detail-block, #page-epargnes .detail-block, #page-collectif .detail-block {
  line-height: 1.7;
}

/* ── SECTION TÉMOIGNAGES GOOGLE (thème sombre harmonisé) ──────── */
#temoignages {
  padding: 96px 24px;
  background: var(--bg);
  color: #e8eee9;
  position: relative;
  overflow: hidden;
}
#temoignages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201,169,97,.06), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(201,169,97,.04), transparent 50%);
  pointer-events: none;
}
.temo-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.temo-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.temo-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600;
  color: #fff; margin: 0 0 12px 0; line-height: 1.2;
  letter-spacing: -.01em;
}
.temo-subtitle {
  font-size: 1rem; color: rgba(232,238,233,.7); max-width: 560px;
  line-height: 1.6; margin: 0 0 40px 0;
}
.temo-google-bar {
  display: inline-flex; align-items: center; gap: 18px;
  background: #fff; border: 1px solid rgba(201,169,97,.3); border-radius: 12px;
  padding: 14px 24px; margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.temo-google-logo { display: flex; align-items: center; flex-shrink: 0; }
.temo-google-logo svg { height: 22px; width: auto; display: block; }
.temo-google-stars { color: #FBBC04; font-size: 1.05rem; letter-spacing: 2px; line-height: 1; margin-bottom: 2px; }
.temo-google-info { display: flex; flex-direction: column; gap: 2px; }
.temo-google-score { font-size: 1rem; font-weight: 700; color: #1F3023; }
.temo-google-count { font-size: .78rem; color: #5a6a61; }
.temo-grid{
  display:flex;gap:20px;
  overflow-x:auto;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:8px 4px 24px;
  margin-bottom:24px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
}
.temo-grid::-webkit-scrollbar{height:8px}
.temo-grid::-webkit-scrollbar-thumb{background:rgba(201,169,97,.3);border-radius:8px}
.temo-card{
  flex:0 0 320px;scroll-snap-align:start;
}
@media (min-width:768px){
  .temo-card{flex:0 0 360px}
}
.temo-card {
  background: linear-gradient(135deg, rgba(201,169,97,.08) 0%, rgba(255,255,255,.04) 100%);
  border: 1px solid rgba(201,169,97,.5);
  border-radius: 14px;
  padding: 28px 26px 22px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  position: relative;
  backdrop-filter: blur(4px);
}
.temo-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.06);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(201,169,97,.2);
}
.temo-card::before {
  content: '\201C'; position: absolute; top: 14px; right: 22px;
  font-size: 4rem; line-height: 1; color: rgba(201,169,97,.18);
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}
.temo-stars { color: #FBBC04; font-size: .95rem; letter-spacing: 2px; }
.temo-quote {
  font-size: .95rem; line-height: 1.7; color: rgba(232,238,233,.92); flex: 1;
  font-style: italic;
}
.temo-author {
  display: flex; align-items: center; gap: 12px; padding-top: 14px;
  border-top: 1px solid rgba(201,169,97,.15);
}
.temo-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 700; color: var(--bg); flex-shrink: 0;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}
.temo-name { font-size: .92rem; font-weight: 700; color: #fff; line-height: 1.3; }
.temo-role { font-size: .75rem; color: rgba(232,238,233,.55); }
.temo-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,169,97,.15) 0%, rgba(201,169,97,.04) 100%);
  box-shadow: 0 8px 24px rgba(201,169,97,.15);
}
.temo-cta { text-align: center; }
.temo-cta p { font-size: .95rem; color: rgba(232,238,233,.75); margin-bottom: 18px; }
.temo-cta .btn-google {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--bg);
  text-decoration: none; font-size: .8rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 16px 36px; border-radius: 2px;
  border: 1px solid var(--gold);
  transition: all .25s ease;
  box-shadow: 0 10px 30px rgba(201,169,97,.4);
}
.temo-cta .btn-google:hover {
  background: var(--gold2, #b8945a); border-color: var(--gold2, #b8945a);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(201,169,97,.55);
}
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
  transition: all .25s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: var(--gold); color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,169,97,.35);
}
.address-link {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
  display: inline-block;
}
.address-link:hover {
  color: var(--gold);
}

/* Better mobile UX optimizations */
@media (max-width: 768px) {
  /* Larger touch targets for SEO accessibility score */
  .btn, button, a.btn, .ticker-item, .service-card a, .tool-card, .faq-q {
    min-height: 44px !important;
  }
  /* Better readable text */
  body { font-size: 16px !important; -webkit-text-size-adjust: 100%; }
  /* Prevent horizontal overflow */
  html, body { overflow-x: hidden !important; max-width: 100vw; }
  /* Better tap highlight */
  a, button { -webkit-tap-highlight-color: rgba(201,169,97,0.2); }
}
/* Sticky mobile CTA - always visible on mobile for conversion */
.sticky-mobile-actions{
  display:none;
  position:fixed;bottom:16px;left:50%;transform:translateX(-50%);
  z-index:9999;gap:10px;align-items:center;
  max-width:calc(100% - 24px);
}
.sticky-cta-mobile { display: none; }
@media (max-width: 768px) {
  .sticky-mobile-actions{display:flex}
  .sticky-phone-mobile{
    width:54px;height:54px;border-radius:50%;
    background:var(--bg);color:var(--gold);
    border:2px solid var(--gold);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 8px 28px rgba(0,0,0,.45);
    flex-shrink:0;
    text-decoration:none;
    transition:all .25s ease;
  }
  .sticky-phone-mobile:hover{background:var(--gold);color:var(--bg)}
  .sticky-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    transform: none !important;
    left: auto !important;
    z-index: 9999;
    background: var(--gold);
    color: var(--bg);
    text-decoration: none;
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 50px;
    border: 1px solid var(--gold);
    box-shadow: 0 8px 28px rgba(201,169,97,.55), 0 2px 6px rgba(0,0,0,.3);
    transition: all .25s ease;
    white-space: nowrap;
  }
  .sticky-cta-mobile:hover, .sticky-cta-mobile:active {
    background: var(--gold2, #b8945a);
    box-shadow: 0 12px 36px rgba(201,169,97,.7);
  }
  /* Make sure content has bottom padding so sticky button doesn't hide it */
  body { padding-bottom: 90px; }
  footer { margin-bottom: 0; }
}
/* ===== SECTION CLIENTÈLES CIBLES ===== */
.clienteles-section{
  padding:90px 0;
  background:var(--bg);
  position:relative;
}
.clienteles-section::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 20% 30%,rgba(201,169,97,.06),transparent 55%);
  pointer-events:none;
}
.clienteles-section .container{position:relative;z-index:1}
.clienteles-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
  margin-top:48px;
}
.clientele-card{
  background:linear-gradient(165deg,rgba(255,255,255,.04),rgba(0,0,0,.05));
  border:1px solid rgba(201,169,97,.22);
  border-radius:16px;
  padding:36px 32px;
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.clientele-card:hover{
  transform:translateY(-4px);
  border-color:var(--gold);
  box-shadow:0 18px 40px rgba(0,0,0,.35),0 0 0 1px rgba(201,169,97,.2);
}
.clientele-icon{
  width:64px;height:64px;border-radius:50%;
  background:rgba(201,169,97,.1);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
  margin-bottom:20px;
}
.clientele-card h3{
  font-family:var(--serif);
  font-size:1.5rem;
  font-weight:500;
  color:var(--cream);
  margin:0 0 14px;
}
.clientele-card > p{
  color:var(--cream2);
  font-size:.95rem;
  line-height:1.7;
  margin-bottom:18px;
}
.clientele-card ul{
  list-style:none;
  padding:0;margin:0;
  display:flex;flex-direction:column;gap:10px;
}
.clientele-card ul li{
  position:relative;
  padding-left:24px;
  color:var(--cream2);
  font-size:.9rem;
  line-height:1.6;
}
.clientele-card ul li::before{
  content:"✓";
  position:absolute;left:0;top:0;
  color:var(--gold);
  font-weight:700;
}
.clientele-card ul li strong{
  color:var(--gold);
  font-weight:600;
}
@media (max-width:768px){
  .clienteles-section{padding:60px 0}
  .clienteles-grid{grid-template-columns:1fr;gap:24px;margin-top:32px}
  .clientele-card{padding:28px 22px}
  .clientele-card h3{font-size:1.3rem}
}

/* ===== LEAD MAGNET SECTION ===== */
.lead-magnet-section{
  padding:90px 0;
  background:linear-gradient(180deg,var(--bg2) 0%,var(--bg) 100%);
  position:relative;overflow:hidden;
}
.lead-magnet-section::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 80% 20%,rgba(201,169,97,.1),transparent 50%),
              radial-gradient(circle at 20% 80%,rgba(201,169,97,.06),transparent 50%);
  pointer-events:none;
}
.lead-magnet-section .container{position:relative;z-index:1}
.lead-magnet-wrap{
  display:grid;grid-template-columns:1fr 1.2fr;gap:60px;align-items:center;
  max-width:1100px;margin:0 auto;
  background:linear-gradient(165deg,rgba(255,255,255,.04),rgba(0,0,0,.05));
  border:1px solid rgba(201,169,97,.25);
  border-radius:22px;padding:50px;
  box-shadow:0 30px 80px rgba(0,0,0,.4);
}
.lead-magnet-visual{position:relative;display:flex;justify-content:center;align-items:center}
.lead-magnet-mockup{
  position:relative;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.4));
  animation:float 4s ease-in-out infinite;
  will-change:transform;
}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@media (prefers-reduced-motion: reduce){
  .lead-magnet-mockup{animation:none !important}
}
.lead-magnet-badge{
  position:absolute;top:0;right:10%;
  background:var(--gold);color:var(--bg);
  padding:8px 18px;border-radius:50px;
  font-size:.7rem;font-weight:800;letter-spacing:2px;
  box-shadow:0 8px 24px rgba(201,169,97,.5);
  transform:rotate(8deg);
}
.lead-magnet-content .eyebrow{
  color:var(--gold);font-size:.75rem;letter-spacing:.25em;
  text-transform:uppercase;font-weight:700;margin-bottom:12px;
}
.lead-magnet-content h2{
  font-family:var(--serif);font-size:clamp(1.7rem,2.6vw,2.3rem);
  color:var(--cream);margin:0 0 16px;line-height:1.2;font-weight:500;
}
.lead-magnet-content > p{
  color:var(--cream2);font-size:.95rem;line-height:1.7;margin:0 0 20px;
}
.lead-magnet-features{
  list-style:none;padding:0;margin:0 0 28px;
  display:flex;flex-direction:column;gap:8px;
}
.lead-magnet-features li{
  position:relative;padding-left:26px;
  color:var(--cream2);font-size:.88rem;line-height:1.5;
}
.lead-magnet-features li::before{
  content:"✓";position:absolute;left:0;top:0;
  color:var(--gold);font-weight:700;font-size:1.05rem;
}
.lead-magnet-form{display:flex;flex-direction:column;gap:14px}
.lead-magnet-fields{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.lead-magnet-form input[type=text],
.lead-magnet-form input[type=email]{
  background:rgba(0,0,0,.25);
  border:1px solid rgba(201,169,97,.25);
  color:var(--cream);
  padding:13px 16px;border-radius:8px;
  font-family:var(--sans);font-size:.9rem;
  transition:border-color .25s ease;
}
.lead-magnet-form input[type=text]:focus,
.lead-magnet-form input[type=email]:focus{
  outline:none;border-color:var(--gold);
}
.lead-magnet-form input::placeholder{color:rgba(231,224,209,.45)}
.lead-magnet-consent{
  display:flex;align-items:flex-start;gap:10px;
  font-size:.78rem;color:var(--cream2);line-height:1.5;
  cursor:pointer;
}
.lead-magnet-consent input[type=checkbox]{
  margin-top:3px;flex-shrink:0;
  accent-color:var(--gold);
  width:16px;height:16px;
}
.lead-magnet-consent a{color:var(--gold);text-decoration:underline}
.lead-magnet-submit{
  width:100%;margin-top:6px;padding:16px 28px;
  font-size:.85rem;font-weight:700;
}
.lead-magnet-spam{
  font-size:.72rem;color:rgba(231,224,209,.55);
  text-align:center;margin:6px 0 0;
}
@media (max-width:900px){
  .lead-magnet-wrap{grid-template-columns:1fr;gap:40px;padding:36px 28px}
  .lead-magnet-visual{order:-1}
  .lead-magnet-fields{grid-template-columns:1fr}
}
@media (max-width:480px){
  .lead-magnet-section{padding:60px 0}
  .lead-magnet-wrap{padding:28px 22px;border-radius:16px}
}

/* ===== EXIT POPUP ===== */
.exit-popup{
  position:fixed;inset:0;z-index:99999;
  display:none;align-items:center;justify-content:center;
  padding:20px;
}
.exit-popup.active{display:flex}
.exit-popup-overlay{
  position:absolute;inset:0;
  background:rgba(15,26,18,.85);
  backdrop-filter:blur(6px);
}
.exit-popup-content{
  position:relative;z-index:1;
  background:linear-gradient(165deg,#1F3023 0%,#0f1a12 100%);
  border:1px solid rgba(201,169,97,.4);
  border-radius:18px;padding:42px 36px;
  max-width:480px;width:100%;
  box-shadow:0 40px 100px rgba(0,0,0,.6);
  animation:popupIn .4s cubic-bezier(.2,.8,.2,1);
}
@keyframes popupIn{from{opacity:0;transform:scale(.9) translateY(20px)}to{opacity:1;transform:scale(1) translateY(0)}}
.exit-popup-close{
  position:absolute;top:14px;right:14px;
  width:32px;height:32px;border-radius:50%;
  background:rgba(255,255,255,.05);border:1px solid rgba(201,169,97,.2);
  color:var(--cream);font-size:1.5rem;line-height:1;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:all .2s ease;
}
.exit-popup-close:hover{background:var(--gold);color:var(--bg);border-color:var(--gold)}
.exit-popup-badge{
  display:inline-block;background:var(--gold);color:var(--bg);
  padding:6px 14px;border-radius:50px;font-size:.7rem;
  font-weight:800;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:14px;
}
.exit-popup-content h2{
  font-family:var(--serif);font-size:1.55rem;font-weight:500;
  color:var(--cream);margin:0 0 12px;line-height:1.25;
}
.exit-gold{color:var(--gold)}
.exit-popup-content > p{color:var(--cream2);font-size:.92rem;line-height:1.6;margin:0 0 22px}
.exit-popup-form{display:flex;flex-direction:column;gap:12px}
.exit-popup-form input[type=text],
.exit-popup-form input[type=email]{
  background:rgba(0,0,0,.3);border:1px solid rgba(201,169,97,.25);
  color:var(--cream);padding:13px 16px;border-radius:8px;
  font-family:var(--sans);font-size:.9rem;
}
.exit-popup-form input:focus{outline:none;border-color:var(--gold)}
.exit-popup-form input::placeholder{color:rgba(231,224,209,.45)}
.exit-popup-consent{
  display:flex;align-items:flex-start;gap:8px;
  font-size:.74rem;color:var(--cream2);line-height:1.4;cursor:pointer;
}
.exit-popup-consent input{margin-top:2px;accent-color:var(--gold)}
.exit-popup-consent a{color:var(--gold);text-decoration:underline}
.exit-popup-spam{font-size:.7rem;color:rgba(231,224,209,.55);text-align:center;margin:0}
@media (max-width:560px){
  .exit-popup-content{padding:32px 24px}
  .exit-popup-content h2{font-size:1.3rem}
}

/* ===== POLITIQUE DE CONFIDENTIALITÉ ===== */
.legal-page .sub-hero{padding:80px 0 50px;background:var(--bg)}
.legal-page .sub-hero h1,
.legal-page .sub-hero h2.sub-hero-title{
  font-family:var(--serif);font-size:clamp(2rem,3.5vw,2.8rem);
  color:var(--cream);text-align:center;margin:0 0 12px;font-weight:500;
}
.legal-page .sub-hero p{
  color:var(--cream2);text-align:center;font-size:1rem;
}
.legal-content{padding:30px 0 90px;background:var(--bg)}
.legal-wrap{
  max-width:820px;margin:0 auto;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(201,169,97,.18);
  border-radius:14px;padding:48px 56px;
}
.legal-intro{
  color:var(--cream2);font-size:1rem;line-height:1.7;
  padding-bottom:20px;border-bottom:1px solid rgba(201,169,97,.18);
  margin-bottom:30px;
}
.legal-wrap h2{
  color:var(--gold);font-family:var(--serif);font-size:1.3rem;
  font-weight:500;margin:32px 0 14px;line-height:1.3;
}
.legal-wrap p{color:var(--cream2);font-size:.92rem;line-height:1.75;margin:0 0 14px}
.legal-wrap ul{
  list-style:none;padding:0;margin:0 0 18px;
  display:flex;flex-direction:column;gap:8px;
}
.legal-wrap ul li{
  position:relative;padding-left:22px;
  color:var(--cream2);font-size:.9rem;line-height:1.6;
}
.legal-wrap ul li::before{
  content:"•";position:absolute;left:6px;top:-2px;
  color:var(--gold);font-size:1.3rem;line-height:1;
}
.legal-wrap a{color:var(--gold);text-decoration:none;border-bottom:1px solid rgba(201,169,97,.4)}
.legal-wrap a:hover{border-color:var(--gold)}
.legal-wrap strong{color:var(--cream);font-weight:600}
.legal-contact{
  background:rgba(201,169,97,.08);
  border-left:3px solid var(--gold);
  padding:20px 24px;border-radius:0 8px 8px 0;
  margin:14px 0 24px;
}
.legal-contact p{margin:0;font-size:.92rem;line-height:1.7}
.legal-date{
  font-style:italic;color:rgba(231,224,209,.55);
  font-size:.82rem;text-align:center;margin-top:30px;
  padding-top:20px;border-top:1px solid rgba(201,169,97,.18);
}
@media (max-width:768px){
  .legal-wrap{padding:32px 24px}
  .legal-wrap h2{font-size:1.15rem}
}
@media (max-width: 768px) {
  /* Reduce excessive padding on all sections */
  section { padding-left: 14px !important; padding-right: 14px !important; }
  .container { padding-left: 0 !important; padding-right: 0 !important; max-width: 100% !important; }
  /* Tighter section titles */
  .section-title { margin-bottom: 28px !important; }
  .section-title h2 { font-size: clamp(1.5rem, 5.5vw, 2rem) !important; line-height: 1.2 !important; }
  .section-title p { font-size: .88rem !important; line-height: 1.55 !important; }
  /* Service & generic cards */
  .service-card, .tool-card, .clientele-card, .summary-card { padding: 18px 14px !important; }
  .service-card h3, .tool-card h3 { font-size: 1rem !important; }
  .service-card p, .tool-card p { font-size: .82rem !important; line-height: 1.5 !important; }
  /* FAQ */
  .faq-q h3 { font-size: .92rem !important; }
  .faq-a p { font-size: .85rem !important; line-height: 1.55 !important; }
  /* Footer */
  footer { padding: 36px 14px 24px !important; }
  footer h4 { font-size: .8rem !important; }
  footer ul li, footer p { font-size: .82rem !important; }
  /* Lead magnet section */
  .lead-magnet-content h2 { font-size: 1.3rem !important; line-height: 1.2 !important; }
  .lead-magnet-content > p { font-size: .85rem !important; }
  .lead-magnet-features li { font-size: .8rem !important; }
  /* Testimonials */
  .temo-title { font-size: clamp(1.4rem, 5vw, 1.8rem) !important; }
  .temo-quote { font-size: .85rem !important; line-height: 1.55 !important; }
  /* CTA banners */
  .cta-banner h2 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; line-height: 1.25 !important; }
  /* Touch targets stay at 44px min */
}

/* ===== Hero text - structure web professionnelle ===== */
.hero .hero-text{max-width:660px;display:flex;flex-direction:column;justify-content:center;gap:0}
.hero .hero-text-top{padding-top:0;margin-bottom:1.5rem}
.hero .hero-text-bottom{display:flex;flex-direction:column;gap:1.4rem;padding-bottom:0}
.hero h1 .hero-italic{
  display:block;
  font-style:italic;
  color:var(--gold);
  font-weight:500;
  margin-top:.05em;
  letter-spacing:.5px;
}
.hero .hero-subtitle{
  color:var(--cream2);
  font-size:1.05rem;
  line-height:1.65;
  max-width:520px;
  margin:0;
}
.hero .hero-pillars{
  display:flex;flex-wrap:wrap;
  gap:12px;
  margin:0;
}
.hero .hero-pillars .pillar{
  display:inline-flex;align-items:center;
  gap:8px;
  color:var(--cream2);
  font-size:.84rem;
  font-weight:500;
  padding:8px 16px;
  border:1px solid rgba(201,169,97,.3);
  border-radius:50px;
  background:rgba(201,169,97,.05);
  transition:background .25s ease,border-color .25s ease;
  white-space:nowrap;
}
.hero .hero-pillars .pillar:hover{
  background:rgba(201,169,97,.12);
  border-color:rgba(201,169,97,.5);
}
.hero .hero-pillars .pillar svg{
  color:var(--gold);
  flex-shrink:0;
}
.hero .actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:0;
}
.hero .hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  margin-top:.75rem;
  padding-top:1.75rem;
  border-top:1px solid rgba(201,169,97,.25);
  justify-content:center;
  text-align:center;
  width:100%;
}
.hero .hero-stats .hstat{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:110px;
  align-items:center;
  text-align:center;
}
.hero .hero-stats .hstat-num{
  font-family:Georgia, 'Times New Roman', serif;
  font-size:2.2rem;
  color:var(--gold);
  font-weight:400;
  line-height:1;
  display:flex;
  align-items:center;
  gap:8px;
  letter-spacing:-.3px;
  font-feature-settings:"lnum" 1, "tnum" 1;
  font-variant-numeric:lining-nums tabular-nums;
}
.hero .hero-stats .hstat-stars{
  color:#FBBC04;
  font-size:.5em;
  letter-spacing:2px;
  margin-left:2px;
}
.hero .hero-stats .hstat-lbl{
  color:rgba(231,224,209,.7);
  font-size:.7rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-weight:500;
  font-family:system-ui, -apple-system, sans-serif;
}
@media (max-width:1024px){
  .hero .hero-pillars{gap:10px}
  .hero .hero-pillars .pillar{font-size:.78rem;padding:7px 13px}
  .hero .hero-stats{gap:24px}
  .hero .hero-stats .hstat-num{font-size:1.5rem}
}
@media (max-width:768px){
  .hero .hero-text-top{margin-bottom:1.1rem}
  .hero .hero-subtitle{font-size:.95rem}
  .hero .hero-pillars{gap:8px}
  .hero .hero-pillars .pillar{font-size:.72rem;padding:6px 11px;gap:6px}
  .hero .hero-pillars .pillar svg{width:16px;height:16px}
  .hero .hero-stats{gap:18px;margin-top:.25rem;padding-top:1.1rem}
  .hero .hero-stats .hstat-num{font-family:Georgia,'Times New Roman',serif !important;font-size:1.5rem !important;color:var(--gold) !important;font-weight:400 !important;letter-spacing:-.3px !important}
  .hero .hero-stats .hstat-lbl{color:rgba(231,224,209,.7) !important;font-size:.62rem !important;letter-spacing:1.5px !important;text-transform:uppercase !important;font-weight:500 !important}
  .hero .hero-stats .hstat-stars{font-size:.5em !important}
}
@media (max-width:480px){
  .hero .hero-pillars .pillar{font-size:.7rem;padding:5px 10px}
  .hero .hero-stats{gap:14px}
  .hero .hero-stats .hstat{min-width:0;flex:1}
  .hero .hero-stats .hstat-num{font-family:Georgia,'Times New Roman',serif !important;font-size:1.3rem !important;color:var(--gold) !important;font-weight:400 !important;letter-spacing:-.3px !important}
}

/* ===== Frequency selector for calculator ===== */
.freq-wrap{margin:8px 0 12px}
.freq-select{
  background:rgba(0,0,0,.25);
  color:var(--cream);
  border:1px solid rgba(201,169,97,.3);
  border-radius:6px;
  padding:8px 30px 8px 12px;
  font-family:var(--sans);font-size:.85rem;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a96e' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 12px center;
}
.freq-select:focus{outline:none;border-color:var(--gold)}

/* ===== Header : logo collé à gauche, nav centré, CTA décalé vers la gauche ===== */
header.site .container.nav{padding-left:0 !important;padding-right:64px;max-width:100%;display:flex;align-items:center;gap:24px}
.nav .brand{margin-left:4vw}
@media (max-width:768px){.nav .brand{margin-left:0}}
.nav ul{
  margin:0;
  flex:1;
  display:flex;
  justify-content:center;
  gap:36px;
}
.nav-actions{margin-left:0;margin-right:0}
@media (max-width:1024px){
  header.site .container.nav{padding-right:48px}
}
@media (max-width:768px){
  header.site .container.nav{padding-right:16px;gap:12px}
  .nav-actions{display:none}
}

/* ===== Arche dorée derrière la photo du hero (sans casser la position absolue) ===== */
.hero-photo .hero-arch{
  position:absolute;
  top:8%;
  left:50%;
  transform:translateX(-50%);
  width:72%;
  height:86%;
  max-width:520px;
  border:1.5px solid rgba(201,169,97,.55);
  border-bottom:none;
  border-radius:50% 50% 0 0 / 55% 55% 0 0;
  pointer-events:none;
  z-index:1;
  filter:drop-shadow(0 0 30px rgba(201,169,97,.15));
}
.hero-photo img{position:relative;z-index:2}
@media (max-width:768px){
  .hero-photo .hero-arch{display:none}
}

/* hero-stage-mobile : wrapper rendu (pas display:contents pour permettre la détection LCP)
   - desktop : remplit .hero en absolute pour ne pas perturber le layout
   - mobile : devient un vrai bloc qui contient salon+photo+overlay */
.hero-stage-mobile{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
  pointer-events:none;
}
@media (max-width:768px){
  .hero-stage-mobile{
    position:relative;
    inset:auto;
    z-index:auto;
    pointer-events:auto;
  }
}

/* ===== iPad Pro / Tablet landscape (1024-1366px) ===== */
@media (min-width:1024px) and (max-width:1366px){
  .hero .container{padding-left:5vw !important}
  .hero h1{font-size:clamp(2.5rem,4.5vw,3.6rem)}
  .hero-photo{width:42% !important}
}

/* ===== iPad portrait (768-1024px) ===== */
@media (min-width:768px) and (max-width:1024px){
  .hero .container{padding-left:4vw !important;padding-right:24px}
  .hero h1{font-size:clamp(2.2rem,5vw,3rem)}
  .hero-photo{width:40% !important;right:1% !important}
  .hero .hero-stats{gap:24px}
  .hero .hero-stats .hstat-num{font-size:1.7rem}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .compare-table{font-size:.9rem}
}

/* ===== Petits téléphones (320-380px) ===== */
@media (max-width:380px){
  .hero h1{font-size:clamp(1.6rem,8vw,2rem) !important}
  .hero .hero-stats{gap:12px !important}
  .hero .hero-stats .hstat-num{font-size:1.05rem !important}
  .hero .hero-stats .hstat-lbl{font-size:.55rem !important;letter-spacing:1px !important}
  .brand .name{font-size:.85rem}
  .brand .title{font-size:.5rem}
}

/* ===== Touch optimizations Android/iOS ===== */
@media (hover:none) and (pointer:coarse){
  /* Tap targets min 44x44px (WCAG) */
  .navlink, .btn, .nav-phone, .cta, button, .article-card-link, .tool-card{min-height:44px}
  /* Disable hover effects that don't translate to touch */
  .article-card:hover, .tool-card:hover, .service-card:hover{transform:none}
  /* Smooth scrolling momentum on iOS */
  .temo-grid, .calc-controls, .article-body{-webkit-overflow-scrolling:touch}
}

/* ===== High DPI / Retina ===== */
@media (-webkit-min-device-pixel-ratio:2), (min-resolution:192dpi){
  .brand .logo img, .nav-cta, .hero h1{-webkit-font-smoothing:subpixel-antialiased}
}
