/* ============================================================
   Antiparasites Bordeaux — feuille de style
   Palette issue du logo : bordeaux #781828 / charbon #282828
   ============================================================ */

:root{
  --wine:#781828;
  --wine-deep:#5c1220;
  --wine-tint:#f4e6e8;
  --charcoal:#1e1f22;
  --charcoal-soft:#282828;
  --bone:#faf7f4;
  --sand:#f1e9e3;
  --ink:#232326;
  --ink-soft:#6e6660;
  --brass:#b08d57;
  --line:rgba(30,31,34,.12);
  --line-strong:rgba(30,31,34,.22);
  --white:#fff;
  --shadow:0 18px 50px -24px rgba(30,20,22,.45);
  --radius:14px;
  --maxw:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--bone);
  line-height:1.62;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
  padding-bottom:64px; /* place pour la barre d'appel mobile */
}
@media(min-width:860px){ body{padding-bottom:0} }

h1,h2,h3{
  font-family:"Fraunces",Georgia,serif;
  font-weight:600;
  line-height:1.1;
  color:var(--charcoal);
  letter-spacing:-.01em;
  margin:0 0 .5em;
}
h1{font-size:clamp(2.1rem,5.4vw,3.5rem);font-weight:600}
h2{font-size:clamp(1.7rem,3.6vw,2.5rem)}
h3{font-size:1.22rem;font-weight:600}
p{margin:0 0 1.1em}
a{color:var(--wine);text-decoration:none}
img{max-width:100%;display:block}

.wrap{max-width:var(--maxw);margin:0 auto;padding:0 22px}
.eyebrow{
  font-family:"Manrope",sans-serif;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.72rem;
  font-weight:700;
  color:var(--wine);
  margin:0 0 1rem;
  display:flex;align-items:center;gap:.7rem;
}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--brass)}
.lead{font-size:1.12rem;color:var(--ink-soft);max-width:62ch}

/* ---------- Boutons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:"Manrope",sans-serif;font-weight:700;font-size:1.02rem;
  padding:.95rem 1.6rem;border-radius:100px;
  transition:transform .15s ease,box-shadow .2s ease,background .2s ease;
  white-space:nowrap;border:1px solid transparent;
}
.btn svg{width:19px;height:19px}
.btn-wine{background:var(--wine);color:#fff;box-shadow:0 10px 26px -12px rgba(120,24,40,.75)}
.btn-wine:hover{background:var(--wine-deep);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.4)}
.btn-ghost:hover{background:rgba(255,255,255,.12)}
.btn-outline{background:#fff;color:var(--wine);border-color:var(--line-strong)}
.btn-outline:hover{border-color:var(--wine);transform:translateY(-2px)}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(250,247,244,.9);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .bar{display:flex;align-items:center;justify-content:space-between;padding:.55rem 0;gap:1rem}
.brand{display:flex;align-items:center;gap:.7rem}
.brand img{height:52px;width:auto}
.brand .btxt{display:flex;flex-direction:column;line-height:1.05}
.brand .btxt strong{font-family:"Fraunces",serif;font-size:1.05rem;color:var(--charcoal);letter-spacing:-.01em}
.brand .btxt span{font-size:.7rem;text-transform:uppercase;letter-spacing:.2em;color:var(--wine);font-weight:700}
.header-cta{display:flex;align-items:center;gap:1.2rem}
.header-phone{display:none;flex-direction:column;align-items:flex-end;line-height:1.1}
.header-phone .lbl{font-size:.68rem;text-transform:uppercase;letter-spacing:.16em;color:var(--ink-soft);font-weight:700}
.header-phone a{font-family:"Fraunces",serif;font-size:1.28rem;color:var(--charcoal);font-weight:600}
@media(min-width:720px){ .header-phone{display:flex} }
@media(max-width:520px){ .brand .btxt{display:none} .brand img{height:46px} }

/* ============================================================
   HERO
   ============================================================ */
.hero{position:relative;color:#fff;overflow:hidden;isolation:isolate}
.hero .bg{position:absolute;inset:0;z-index:-2}
.hero .bg img{width:100%;height:100%;object-fit:cover;object-position:center 60%}
.hero::after{ /* voile dégradé */
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(180deg,rgba(20,12,14,.30) 0%,rgba(20,12,14,.55) 55%,rgba(20,12,14,.82) 100%),
    linear-gradient(90deg,rgba(92,18,32,.55) 0%,rgba(92,18,32,0) 60%);
}
.hero .wrap{position:relative;padding:clamp(3.4rem,9vw,6.5rem) 22px clamp(3rem,7vw,5rem)}
.hero-inner{max-width:720px}
.hero .eyebrow{color:#f4c9d0}
.hero .eyebrow::before{background:var(--brass)}
.hero h1{color:#fff;text-shadow:0 2px 24px rgba(0,0,0,.35)}
.hero h1 em{font-style:italic;color:#f3c6cd}
.hero p.sub{font-size:1.15rem;color:rgba(255,255,255,.9);max-width:56ch;margin-bottom:1.8rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem;align-items:center}
.hero-note{display:flex;align-items:center;gap:.5rem;margin-top:1.6rem;font-size:.92rem;color:rgba(255,255,255,.85)}
.hero-note svg{width:18px;height:18px;color:#f3c6cd;flex:none}

/* bandeau confiance sous le hero */
.trust{background:var(--charcoal);color:#fff}
.trust .grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
.trust .cell{padding:1.4rem 1.2rem;text-align:center;border-right:1px solid rgba(255,255,255,.1)}
.trust .cell:last-child{border-right:none}
.trust .cell b{display:block;font-family:"Fraunces",serif;font-size:1.5rem;color:#fff;line-height:1}
.trust .cell span{font-size:.8rem;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.6);font-weight:600;margin-top:.35rem;display:block}
@media(max-width:720px){ .trust .grid{grid-template-columns:repeat(2,1fr)} .trust .cell:nth-child(2){border-right:none} .trust .cell:nth-child(1),.trust .cell:nth-child(2){border-bottom:1px solid rgba(255,255,255,.1)} }

/* ============================================================
   SECTIONS génériques
   ============================================================ */
.section{padding:clamp(3.4rem,7vw,5.5rem) 0}
.section.alt{background:var(--sand)}
.section.dark{background:var(--charcoal);color:#fff}
.section.dark h2,.section.dark h3{color:#fff}
.section.dark .lead{color:rgba(255,255,255,.75)}
.section-head{max-width:66ch;margin-bottom:2.6rem}

/* Signes / reconnaître */
.signs{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.sign{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.6rem 1.5rem;box-shadow:0 1px 0 rgba(0,0,0,.02)}
.sign .ico{width:46px;height:46px;border-radius:12px;background:var(--wine-tint);display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.sign .ico svg{width:24px;height:24px;color:var(--wine)}
.sign h3{margin-bottom:.35rem}
.sign p{margin:0;color:var(--ink-soft);font-size:.98rem}
@media(max-width:820px){ .signs{grid-template-columns:1fr 1fr} }
@media(max-width:520px){ .signs{grid-template-columns:1fr} }

/* Protocole 3 étapes (séquence réelle -> numérotation justifiée) */
.proto{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;counter-reset:step}
.step{position:relative;padding-top:2.6rem}
.step .num{
  position:absolute;top:0;left:0;
  font-family:"Fraunces",serif;font-size:2.6rem;font-weight:600;
  color:var(--wine);line-height:1;opacity:.9;
}
.step .num::after{content:"";display:block;width:44px;height:2px;background:var(--brass);margin-top:.5rem}
.step h3{margin-bottom:.4rem}
.step p{color:rgba(255,255,255,.72);margin:0}
.section:not(.dark) .step p{color:var(--ink-soft)}
@media(max-width:820px){ .proto{grid-template-columns:1fr;gap:2rem} .step{padding-left:0} }

/* Bloc méthode / deux colonnes */
.split{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.split .media{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--line)}
.split ul{list-style:none;padding:0;margin:1.4rem 0 0}
.split li{position:relative;padding-left:2rem;margin-bottom:.95rem;color:var(--ink-soft)}
.split li::before{
  content:"";position:absolute;left:0;top:.45em;width:14px;height:14px;border-radius:50%;
  background:var(--wine-tint);
  box-shadow:inset 0 0 0 4px var(--wine);
}
.split li b{color:var(--charcoal);font-weight:700}
@media(max-width:860px){ .split{grid-template-columns:1fr} .split .media{order:-1} }

/* Zone couverte — grille communes */
.zone-intro{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:1.5rem;margin-bottom:2.2rem}
.cities{display:grid;grid-template-columns:repeat(4,1fr);gap:.7rem}
.city-chip{
  display:flex;align-items:center;justify-content:space-between;gap:.5rem;
  background:#fff;border:1px solid var(--line);border-radius:10px;
  padding:.7rem .95rem;font-weight:600;font-size:.95rem;color:var(--charcoal);
  transition:border-color .15s ease,transform .15s ease,box-shadow .2s ease;
}
.city-chip:hover{border-color:var(--wine);transform:translateY(-2px);box-shadow:0 10px 22px -16px rgba(120,24,40,.6)}
.city-chip .km{font-size:.72rem;font-weight:700;color:var(--ink-soft);background:var(--sand);padding:.12rem .5rem;border-radius:100px}
.city-chip svg{width:15px;height:15px;color:var(--wine);flex:none}
@media(max-width:900px){ .cities{grid-template-columns:repeat(3,1fr)} }
@media(max-width:640px){ .cities{grid-template-columns:repeat(2,1fr)} }
@media(max-width:400px){ .cities{grid-template-columns:1fr} }

/* FAQ */
.faq{max-width:820px;margin:0 auto}
.faq details{
  border-bottom:1px solid var(--line);padding:1.15rem 0;
}
.faq summary{
  cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem;
  font-family:"Fraunces",serif;font-size:1.15rem;font-weight:600;color:var(--charcoal);
}
.faq summary::-webkit-details-marker{display:none}
.faq summary .plus{flex:none;width:26px;height:26px;border-radius:50%;border:1.5px solid var(--wine);position:relative;transition:transform .2s ease}
.faq summary .plus::before,.faq summary .plus::after{content:"";position:absolute;background:var(--wine);left:50%;top:50%;transform:translate(-50%,-50%)}
.faq summary .plus::before{width:11px;height:1.6px}
.faq summary .plus::after{width:1.6px;height:11px;transition:opacity .2s ease}
.faq details[open] summary .plus{transform:rotate(90deg)}
.faq details[open] summary .plus::after{opacity:0}
.faq details p{margin:.9rem 0 0;color:var(--ink-soft)}

/* CTA final */
.cta-final{background:linear-gradient(135deg,var(--wine) 0%,var(--wine-deep) 100%);color:#fff;text-align:center}
.cta-final h2{color:#fff}
.cta-final p{color:rgba(255,255,255,.85);max-width:52ch;margin-left:auto;margin-right:auto}
.cta-phone{
  display:inline-flex;align-items:center;gap:.8rem;margin-top:1.6rem;
  font-family:"Fraunces",serif;font-size:clamp(1.8rem,4.5vw,2.7rem);font-weight:600;
  color:#fff;padding:.6rem 1.6rem;border:1.5px solid rgba(255,255,255,.4);border-radius:100px;
  transition:background .2s ease,transform .15s ease;
}
.cta-phone:hover{background:rgba(255,255,255,.12);transform:translateY(-2px)}
.cta-phone svg{width:30px;height:30px}
.cta-final .hours{margin-top:1.1rem;font-size:.92rem;color:rgba(255,255,255,.75)}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--charcoal-soft);color:rgba(255,255,255,.72);padding:3.5rem 0 2rem;font-size:.95rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem}
.site-footer .fbrand img{height:64px;margin-bottom:1rem;filter:brightness(0) invert(1);opacity:.92}
.site-footer h4{font-family:"Manrope",sans-serif;text-transform:uppercase;letter-spacing:.14em;font-size:.75rem;color:#fff;margin:0 0 1rem;font-weight:700}
.site-footer a{color:rgba(255,255,255,.72)}
.site-footer a:hover{color:#fff}
.footer-links{list-style:none;padding:0;margin:0;display:grid;gap:.5rem}
.footer-phone{font-family:"Fraunces",serif;font-size:1.5rem;color:#fff;font-weight:600}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding-top:1.4rem;display:flex;flex-wrap:wrap;justify-content:space-between;gap:.6rem;font-size:.82rem;color:rgba(255,255,255,.5)}
.footer-bottom a{color:rgba(255,255,255,.6)}
@media(max-width:760px){ .footer-grid{grid-template-columns:1fr;gap:1.8rem} }

/* ============================================================
   BARRE D'APPEL MOBILE (signature : action toujours visible)
   ============================================================ */
.call-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:60;
  display:flex;align-items:stretch;
  background:var(--wine);box-shadow:0 -8px 24px -12px rgba(0,0,0,.4);
}
.call-bar a{
  flex:1;display:flex;align-items:center;justify-content:center;gap:.6rem;
  color:#fff;font-family:"Manrope",sans-serif;font-weight:800;font-size:1.05rem;
  padding:.95rem 1rem;letter-spacing:.01em;
}
.call-bar svg{width:20px;height:20px}
@media(min-width:860px){ .call-bar{display:none} }

/* ---------- Fil d'ariane ---------- */
.crumb{font-size:.85rem;color:var(--ink-soft);padding:1.1rem 0 0}
.crumb a{color:var(--ink-soft)}
.crumb a:hover{color:var(--wine)}
.crumb span{color:var(--wine);font-weight:600}

/* ---------- 404 ---------- */
.err{min-height:52vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:4rem 22px}
.err .big{font-family:"Fraunces",serif;font-size:5rem;color:var(--wine);line-height:1;margin-bottom:.4rem}

/* ============================================================
   BANDEAU DE CONSENTEMENT
   ============================================================ */
.consent{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  background:var(--charcoal);color:rgba(255,255,255,.82);
  border-top:2px solid var(--wine);
  box-shadow:0 -14px 40px -18px rgba(0,0,0,.6);
}
.consent[hidden]{display:none}
.consent-inner{
  max-width:var(--maxw);margin:0 auto;padding:1.1rem 22px;
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
}
.consent p{margin:0;font-size:.9rem;max-width:70ch;line-height:1.5}
.consent-actions{display:flex;gap:.6rem;flex:none}
.consent-btn{
  font-family:"Manrope",sans-serif;font-weight:700;font-size:.9rem;cursor:pointer;
  padding:.6rem 1.3rem;border-radius:100px;border:1px solid transparent;
  transition:background .2s ease,border-color .2s ease;
}
.consent-btn.solid{background:var(--wine);color:#fff}
.consent-btn.solid:hover{background:var(--wine-deep)}
.consent-btn.ghost{background:transparent;color:rgba(255,255,255,.8);border-color:rgba(255,255,255,.3)}
.consent-btn.ghost:hover{background:rgba(255,255,255,.1)}
/* laisser respirer la barre d'appel mobile (hauteur réelle ~58px) */
@media(max-width:859px){ .consent{bottom:58px} }
@media(max-width:560px){
  .consent-inner{padding:1rem 18px;gap:.9rem}
  .consent-actions{width:100%}
  .consent-btn{flex:1}
}

/* accessibilité */
:focus-visible{outline:3px solid var(--brass);outline-offset:2px;border-radius:4px}
@media(prefers-reduced-motion:reduce){*{transition:none!important;scroll-behavior:auto!important}}
