/* ===========================================================
   VapoPunaise — feuille de style partagée
   Palette : encre marine / papier chaud / cuivre-braise / sauge
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Public+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --ink:        #14213D;
  --ink-soft:   #253357;
  --paper:      #F2EEE4;
  --paper-2:    #E9E3D4;
  --card:       #FBFAF6;
  --ember:      #B8511F;
  --ember-dark: #93400F;
  --sage:       #5F6F52;
  --graphite:   #26261F;
  --muted:      #6B6A5F;
  --line:       #D9D2BE;
  --white:      #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Public Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 2px;
  --shadow: 0 12px 32px -18px rgba(20,33,61,0.35);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--graphite);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;}
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--ink);
  margin:0 0 .5em;
  line-height:1.08;
  font-weight:600;
  letter-spacing:-0.01em;
}
p{margin:0 0 1em;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.eyebrow{
  font-family:var(--font-mono);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12.5px;
  color:var(--ember-dark);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px;height:1px;
  background:var(--ember);
  display:inline-block;
}

/* ---------- Header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(242,238,228,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  max-width:1180px;
  margin:0 auto;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand-logo{
  height:42px;
  width:auto;
  display:block;
}
.brand-logo-footer{
  height:52px;
}
.brand-mark{
  font-family:var(--font-display);
  font-weight:700;
  font-size:22px;
  color:var(--ink);
}
.brand-mark span{color:var(--ember);}
.ig-link{
  display:inline-block;
  font-weight:600;
  color:#E7A98A;
  text-decoration:none;
}
.ig-link:hover{color:#fff;}
.brand-sub{
  font-family:var(--font-mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
  display:none;
}
nav.main-nav{
  display:none;
  gap:28px;
  font-size:15px;
  font-weight:600;
}
nav.main-nav a{
  text-decoration:none;
  color:var(--ink-soft);
  position:relative;
  padding:4px 0;
}
nav.main-nav a.active,
nav.main-nav a:hover{color:var(--ember-dark);}
.header-cta{
  display:none;
  align-items:center;
  gap:8px;
  background:var(--ink);
  color:var(--white);
  font-weight:700;
  font-size:14.5px;
  padding:10px 18px;
  border-radius:var(--radius);
  text-decoration:none;
  white-space:nowrap;
}
.header-cta:hover{background:var(--ember-dark);}
.burger{
  display:flex;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:6px;
  cursor:pointer;
}
.burger span{
  width:22px;height:2px;background:var(--ink);display:block;
}
.mobile-nav{
  display:none;
  flex-direction:column;
  border-top:1px solid var(--line);
  background:var(--paper);
}
.mobile-nav.open{display:flex;}
.mobile-nav a{
  padding:16px 24px;
  border-bottom:1px solid var(--line);
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
  font-size:16px;
}
.mobile-nav .mobile-cta{
  margin:16px 24px 20px;
  background:var(--ember);
  color:var(--white);
  text-align:center;
  padding:14px;
  border-radius:var(--radius);
  font-weight:700;
  border-bottom:none;
}

@media(min-width:900px){
  .brand-sub{display:block;}
  nav.main-nav{display:flex;}
  .header-cta{display:inline-flex;}
  .burger{display:none;}
}

/* ---------- Sticky mobile call bar ---------- */
.call-bar{
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:70;
  display:flex;
  background:var(--ink);
  box-shadow:0 -8px 24px rgba(0,0,0,.18);
}
.call-bar a{
  flex:1;
  text-align:center;
  padding:14px 8px;
  color:var(--white);
  text-decoration:none;
  font-weight:700;
  font-size:14.5px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.call-bar a.call{background:var(--ember);}
.call-bar a:active{opacity:.85;}
body{padding-bottom:60px;}
@media(min-width:900px){
  .call-bar{display:none;}
  body{padding-bottom:0;}
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:var(--ink);
  color:var(--white);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  align-items:stretch;
}
.hero-text{
  padding:56px 24px 44px;
  position:relative;
  z-index:2;
}
.hero .eyebrow{color:#E7A98A;}
.hero .eyebrow::before{background:#E7A98A;}
.hero h1{
  color:var(--white);
  font-size:clamp(34px,7vw,58px);
  font-weight:600;
}
.hero h1 em{
  font-style:italic;
  color:#E7A98A;
}
.hero-lead{
  color:#C9D2E8;
  font-size:18px;
  max-width:46ch;
  margin-bottom:28px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:32px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:var(--radius);
  text-decoration:none;
  font-weight:700;
  font-size:15.5px;
  border:1px solid transparent;
}
.btn-primary{background:var(--ember);color:var(--white);}
.btn-primary:hover{background:var(--ember-dark);}
.btn-ghost{border-color:rgba(255,255,255,.35);color:var(--white);}
.btn-ghost:hover{border-color:#fff;}
.btn-dark{background:var(--ink);color:var(--white);}
.btn-dark:hover{background:var(--ink-soft);}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,.18);
  padding-top:22px;
  gap:16px;
}
.hero-stats .stat b{
  display:block;
  font-family:var(--font-mono);
  font-size:20px;
  color:#E7A98A;
}
.hero-stats .stat span{
  font-size:12.5px;
  color:#AEB8D2;
}
.hero-photo{
  position:relative;
  min-height:280px;
}
.hero-photo img{
  width:100%;height:100%;object-fit:cover;
  min-height:280px;
}
.hero-photo::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(20,33,61,0) 40%, rgba(20,33,61,.9) 100%);
}
@media(min-width:900px){
  .hero-grid{grid-template-columns:1.05fr .95fr;}
  .hero-text{padding:88px 56px 70px 64px;}
  .hero-photo::after{background:linear-gradient(90deg, var(--ink) 0%, rgba(20,33,61,0) 30%);}
}

/* ---------- Sections ---------- */
section{padding:64px 0;}
.section-tight{padding:44px 0;}
.section-head{
  max-width:640px;
  margin-bottom:36px;
}
.section-head p{color:var(--muted);font-size:17px;}
.bg-paper2{background:var(--paper-2);}
.bg-ink{background:var(--ink);color:var(--white);}
.bg-ink h2, .bg-ink h3{color:var(--white);}
.bg-card{background:var(--card);}

/* ---------- Trust strip ---------- */
.trust-strip{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  padding:28px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.trust-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.trust-item .ico{
  font-family:var(--font-mono);
  font-weight:600;
  font-size:13px;
  color:var(--ember-dark);
  border:1px solid var(--ember-dark);
  border-radius:50%;
  width:34px;height:34px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.trust-item h4{font-size:16px;margin-bottom:2px;}
.trust-item p{font-size:14.5px;color:var(--muted);margin:0;}
@media(min-width:800px){
  .trust-strip{grid-template-columns:repeat(4,1fr);}
}

/* ---------- Cards / services ---------- */
.card-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
@media(min-width:760px){
  .card-grid{grid-template-columns:repeat(3,1fr);}
}
.svc-card{
  background:var(--card);
  border:1px solid var(--line);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.svc-card img{
  height:190px;width:100%;object-fit:cover;
}
.svc-card .body{padding:22px 22px 26px;flex:1;display:flex;flex-direction:column;}
.svc-card h3{font-size:21px;margin-bottom:8px;}
.svc-card p.desc{color:var(--muted);font-size:15px;margin-bottom:16px;}
.svc-card .price{
  font-family:var(--font-mono);
  font-weight:600;
  color:var(--ink);
  font-size:14.5px;
  border-top:1px dashed var(--line);
  padding-top:14px;
  margin-top:auto;
}
.svc-card .price b{color:var(--ember-dark);font-size:15px;}

/* ---------- Protocole / heat markers (signature element) ---------- */
.protocol{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  counter-reset:step;
}
.protocol-step{
  display:grid;
  grid-template-columns:88px 1fr;
  gap:20px;
  padding:26px 0;
  border-top:1px solid var(--line);
}
.protocol-step:last-child{border-bottom:1px solid var(--line);}
.protocol-temp{
  font-family:var(--font-mono);
  font-weight:600;
  color:var(--ember-dark);
  font-size:15px;
  line-height:1.3;
}
.protocol-temp small{
  display:block;
  font-size:11px;
  color:var(--muted);
  font-weight:500;
  letter-spacing:.05em;
}
.protocol-step h4{font-size:18px;margin-bottom:4px;}
.protocol-step p{color:var(--muted);font-size:15px;margin:0;}

/* ---------- Pricing tables ---------- */
.price-table{
  width:100%;
  border-collapse:collapse;
  background:var(--card);
  border:1px solid var(--line);
  font-size:15.5px;
}
.price-table caption{
  text-align:left;
  font-family:var(--font-display);
  font-size:20px;
  color:var(--ink);
  padding:18px 20px;
  border:1px solid var(--line);
  border-bottom:none;
  background:var(--paper-2);
}
.price-table th, .price-table td{
  padding:14px 20px;
  text-align:left;
  border-bottom:1px solid var(--line);
}
.price-table th{
  font-family:var(--font-mono);
  font-size:12.5px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--muted);
  font-weight:600;
}
.price-table td.amount{
  font-family:var(--font-mono);
  font-weight:600;
  color:var(--ember-dark);
  white-space:nowrap;
}
.price-table tr:last-child td{border-bottom:none;}
.table-wrap{overflow-x:auto;margin-bottom:40px;}
.price-note{
  font-size:14px;
  color:var(--muted);
  margin-top:-24px;
  margin-bottom:40px;
}

/* ---------- Gallery ---------- */
.gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.gallery figure{margin:0;position:relative;overflow:hidden;background:var(--ink);}
.gallery img{
  width:100%;height:100%;object-fit:cover;aspect-ratio:4/5;
  transition:transform .5s ease;
}
.gallery a:hover img{transform:scale(1.04);}
.gallery figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:10px 12px;
  font-family:var(--font-mono);
  font-size:11.5px;
  color:#fff;
  background:linear-gradient(180deg, rgba(20,33,61,0), rgba(20,33,61,.85));
}
@media(min-width:700px){
  .gallery{grid-template-columns:repeat(4,1fr);}
}

/* ---------- FAQ ---------- */
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item summary{
  cursor:pointer;
  padding:20px 0;
  font-weight:700;
  color:var(--ink);
  font-size:16.5px;
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";
  font-family:var(--font-mono);
  font-size:20px;
  color:var(--ember);
  flex-shrink:0;
}
.faq-item[open] summary::after{content:"–";}
.faq-item p{color:var(--muted);padding-bottom:20px;margin:0;font-size:15.5px;}

/* ---------- Reviews ---------- */
.review-cta{
  background:var(--card);
  border:1px solid var(--line);
  padding:32px;
  text-align:center;
}
.stars{color:var(--ember);font-size:22px;letter-spacing:3px;margin-bottom:10px;}

/* ---------- Zone map list ---------- */
.zone-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-family:var(--font-mono);
  font-size:13.5px;
}
.zone-list span{
  border:1px solid var(--line);
  padding:6px 12px;
  color:var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
}
@media(min-width:900px){
  .contact-grid{grid-template-columns:1fr 1fr;}
}
.contact-block{
  background:var(--card);
  border:1px solid var(--line);
  padding:28px;
}
.contact-line{
  display:flex;
  gap:14px;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  text-decoration:none;
  color:var(--ink);
  font-weight:700;
  font-size:17px;
}
.contact-line:last-child{border-bottom:none;}
.contact-line small{
  display:block;
  font-family:var(--font-mono);
  font-weight:500;
  font-size:11.5px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.05em;
}
.form input, .form textarea{
  width:100%;
  font-family:var(--font-body);
  font-size:15.5px;
  padding:13px 14px;
  border:1px solid var(--line);
  background:var(--white);
  margin-bottom:14px;
  border-radius:var(--radius);
}
.form label{
  font-family:var(--font-mono);
  font-size:11.5px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--muted);
  display:block;
  margin-bottom:6px;
}
.form button{
  width:100%;
  border:none;
  cursor:pointer;
}

/* ---------- Footer ---------- */
footer{
  background:var(--ink);
  color:#AEB8D2;
  padding:48px 0 90px;
  font-size:14.5px;
}
@media(min-width:900px){footer{padding:48px 0;}}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
}
@media(min-width:800px){
  .footer-grid{grid-template-columns:1.3fr 1fr 1fr;}
}
footer h5{
  font-family:var(--font-mono);
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.08em;
  color:#E7A98A;
  margin-bottom:14px;
}
footer a{color:#C9D2E8;text-decoration:none;}
footer a:hover{color:#fff;}
footer .brand-mark{color:#fff;}
footer .brand-mark span{color:#E7A98A;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  margin-top:36px;
  padding-top:20px;
  font-size:13px;
  color:#8492B5;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
}

/* ---------- Page hero (sous-pages) ---------- */
.page-hero{
  background:var(--ink);
  color:#fff;
  padding:52px 0 40px;
}
.page-hero h1{color:#fff;font-size:clamp(30px,6vw,46px);}
.page-hero p{color:#C9D2E8;max-width:56ch;font-size:17px;}

.two-col{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
}
@media(min-width:900px){
  .two-col{grid-template-columns:1fr 1fr;}
  .two-col.reverse{direction:rtl;}
  .two-col.reverse > *{direction:ltr;}
}
.two-col img{border:1px solid var(--line);}

.tag{
  display:inline-block;
  font-family:var(--font-mono);
  font-size:11.5px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--sage);
  border:1px solid var(--sage);
  padding:4px 10px;
  margin-bottom:14px;
}
