:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#64748b;
  --border:rgba(15,23,42,.12);
  --soft:#f8fafc;

  --brand:#1d322b;
  --beige:#f3efe6;
  --beige2:#f8f4ea;
  --whatsapp:#16a34a;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px, 92%);margin-inline:auto}

/* HEADER */
.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:14px 0;
  gap:14px;
}
.brand{display:flex;align-items:center;gap:12px;min-width:220px}
.logo{width:44px;height:44px;object-fit:contain}
.brand-text strong{color:var(--brand)}
.brand-text span{display:block;color:var(--muted);font-size:12px;margin-top:4px}
.nav-center{display:flex;gap:18px;justify-content:center;flex-wrap:wrap}
.nav-center a{color:var(--muted);font-weight:700}
.nav-center a:hover{color:var(--brand)}
.topbar-right{display:flex;gap:10px;justify-content:flex-end;align-items:center;flex-wrap:wrap}
.phone{color:var(--brand);font-weight:800;padding:10px 12px;border:1px solid var(--border);border-radius:12px;background:#fff}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  font-weight:800;border:1px solid transparent;
  background:var(--brand);color:#fff;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{transform:translateY(-1px);opacity:.96}
.btn-outline{background:#fff;color:var(--brand);border:1px solid var(--border)}
.btn-whatsapp{background:var(--whatsapp);color:#fff}

/* HERO */
.hero{padding:44px 0 24px}
.hero-grid{display:grid;grid-template-columns: 1.1fr .9fr;gap:24px;align-items:start}
.badge{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;font-weight:800;font-size:13px;background:var(--brand);color:#fff}
h1{margin:14px 0 10px;color:var(--brand);font-size:42px;line-height:1.08}
.subtitle{margin:0 0 16px;color:var(--muted);line-height:1.7}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:14px}
.trust{margin:0;padding-left:18px;color:var(--muted);line-height:1.9}
.note{margin-top:14px;padding:12px 14px;border-radius:16px;border:1px solid var(--border);background:var(--soft)}

.hero-card{border:1px solid var(--border);border-radius:22px;overflow:hidden;background:#fff}
.hero-img{aspect-ratio: 4/3;overflow:hidden;background:var(--soft)}
.hero-img img{width:100%;height:100%;object-fit:cover}
.hero-highlights{display:grid;gap:10px;padding:14px;background:var(--beige2)}
.mini{border:1px solid rgba(29,50,43,.14);border-radius:18px;background:#fff;padding:12px}
.mini-title{font-weight:900;color:var(--brand)}
.mini-text{color:var(--muted);margin-top:6px;line-height:1.4}

/* SECTIONS */
.section{padding:56px 0}
.section.alt{background:var(--soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.section-beige{background:var(--beige);border-top:1px solid rgba(15,23,42,.08);border-bottom:1px solid rgba(15,23,42,.08)}
.section-head h2{margin:0 0 8px;color:var(--brand)}
.section-head p{margin:0;color:var(--muted);line-height:1.6}

/* FEATURES GRID */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.card{border:1px solid rgba(29,50,43,.14);border-radius:20px;padding:16px;background:#fff}
.card h3{margin:0 0 8px;color:var(--brand)}
.card p{margin:0;color:var(--muted);line-height:1.6}

/* ✅ GALERIE : TOUJOURS GRID 5 PHOTOS PAR LIGNE (PAS DE RESPONSIVE) */
.gallery-5{
  display:grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap:12px !important;
  width:100% !important;
  max-width:100% !important;
}
.gallery-5 .item{
  height:180px !important;
  overflow:hidden !important;
  border-radius:14px !important;
  border:1px solid #e5e7eb !important;
  background:#f5f5f5 !important;
}
.gallery-5 img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

/* LEAD */
.lead-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start}
.lead-sub{color:var(--muted);line-height:1.6}
.whatsapp-box{margin-top:14px;padding:14px;border-radius:20px;border:1px solid rgba(29,50,43,.14);background:#fff;display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.form .field{display:flex;flex-direction:column;gap:8px;margin-bottom:12px}
label{font-weight:800;font-size:13px;color:var(--brand)}
input,textarea{padding:12px;border-radius:14px;border:1px solid rgba(29,50,43,.18);outline:none}

/* FAQ */
.faq{display:grid;grid-template-columns:1fr 1fr;gap:14px}
details summary{cursor:pointer;font-weight:900;color:var(--brand)}
details p{color:var(--muted);line-height:1.6;margin:10px 0 0}

/* FOOTER */
.footer{padding:24px 0;border-top:1px solid var(--border)}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.muted{color:var(--muted)}

/* RESPONSIVE GLOBAL (site ok) */
@media (max-width: 980px){
  .topbar-inner{grid-template-columns:1fr;gap:10px}
  .nav-center{justify-content:flex-start}
  .topbar-right{justify-content:flex-start}
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:34px}
  .cards{grid-template-columns:1fr}
  .lead-grid{grid-template-columns:1fr}
  .faq{grid-template-columns:1fr}
}
