/* ==========================================================================
   MG Plombier — plombier-provence.fr
   Refonte 2026 — Groupe WS
   ========================================================================== */

:root {
  --navy-900: #0a1f38;
  --navy-800: #0e2a4a;
  --navy-700: #143a63;
  --blue-600: #1d63b8;
  --blue-500: #2478d4;
  --blue-100: #e3eefb;
  --blue-50: #f2f7fd;
  --accent-600: #e05f16;
  --accent-500: #f4732a;
  --accent-100: #fdeadd;
  --ink: #16283c;
  --ink-soft: #4c6076;
  --line: #dde7f0;
  --bg: #ffffff;
  --bg-soft: #f5f9fc;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(10, 31, 56, .06);
  --shadow-md: 0 10px 34px rgba(10, 31, 56, .10);
  --shadow-lg: 0 24px 60px rgba(10, 31, 56, .16);
  --font-head: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.18;
  color: var(--navy-900);
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--accent-500);
}

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--primary {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: #fff;
  box-shadow: 0 8px 22px rgba(224, 95, 22, .35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(224, 95, 22, .42); }

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .2); transform: translateY(-2px); }

.btn--outline {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: #fff;
}
.btn--outline:hover { background: var(--blue-50); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Top bar + Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: #cfe0f2;
  font-size: .85rem;
  padding: .45rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item svg { width: 15px; height: 15px; color: var(--accent-500); }

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  /* pas de backdrop-filter ici : il ferait du header le conteneur du menu mobile en position fixed */
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none !important;
}
.brand__img { height: 38px; width: auto; display: block; }
@media (max-width: 480px) { .brand__img { height: 30px; } }
.brand__logo {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand__logo svg { width: 26px; height: 26px; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy-900);
  line-height: 1.1;
}
.brand__name small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  text-decoration: none !important;
  position: relative;
  padding: .3rem 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2.5px;
  border-radius: 2px;
  background: var(--accent-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: .8rem; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy-900);
  text-decoration: none !important;
}
.header__phone svg { width: 20px; height: 20px; color: var(--accent-500); }
.header__phone:hover { color: var(--blue-600); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .5rem;
  cursor: pointer;
  color: var(--navy-900);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(10, 31, 56, .97) 0%, rgba(10, 31, 56, .88) 42%, rgba(10, 31, 56, .55) 72%, rgba(10, 31, 56, .42) 100%),
    url("/assets/img/hero-mgprovence.jpg") center 35% / cover no-repeat,
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: #eaf2fb;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, transparent 95%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.hero__badge .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, .25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, .25); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, .08); }
}

.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero h1 .accent { color: var(--accent-500); }
.hero__lead {
  font-size: 1.15rem;
  color: #c3d6ea;
  max-width: 34rem;
  margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.trust-item { display: flex; align-items: center; gap: .7rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--accent-500); flex: none; }
.trust-item span { font-size: .9rem; color: #c3d6ea; line-height: 1.35; }
.trust-item strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1rem; }

/* Devis card in hero */
.devis-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem;
  color: var(--ink);
}
.devis-card__head { margin-bottom: 1.2rem; }
.devis-card__head h2, .devis-card__head h3 {
  font-size: 1.35rem;
  margin-bottom: .25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.devis-card__head h2 svg, .devis-card__head h3 svg { width: 24px; height: 24px; color: var(--accent-500); }
.devis-card__head p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  margin-bottom: .3rem;
  color: var(--navy-800);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .75rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(36, 120, 212, .14);
  background: #fff;
}

.form-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .78rem;
  color: var(--ink-soft);
}
.form-consent input { margin-top: .25rem; }

.form-grid .cf-turnstile { grid-column: 1 / -1; min-height: 65px; }

.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
}
.form-status.ok { display: block; background: #e7f8ef; color: #157347; }
.form-status.err { display: block; background: #fdecec; color: #b02a37; }

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.service-card__icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  color: var(--blue-600);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.service-card__link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--accent-600);
  text-decoration: none !important;
}
.service-card__link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.service-card__link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Photo cards
   -------------------------------------------------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}
.photo-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  text-decoration: none !important;
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.4rem 1.2rem;
  background: linear-gradient(transparent, rgba(10, 31, 56, .88));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
}
.photo-card__label svg { width: 18px; height: 18px; flex: none; color: var(--accent-500); }

/* --------------------------------------------------------------------------
   Feature split (why us)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
/* Pages services / villes : le formulaire devis démarre en haut et suit le défilement */
.split > div:has(> .devis-card) {
  align-self: start;
  position: sticky;
  top: 102px;
}

.checklist { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--accent-500); flex: none; margin-top: .15rem; }
.checklist strong { font-family: var(--font-head); color: var(--navy-900); }
.checklist span { color: var(--ink-soft); font-size: .95rem; }

.stats-panel {
  position: relative;
  background: linear-gradient(155deg, var(--navy-800), var(--navy-700));
  border-radius: calc(var(--radius) + 6px);
  padding: 2.4rem;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stats-panel::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,115,42,.35), transparent 65%);
  top: -110px; right: -90px;
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-500);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat span { font-size: .9rem; color: #c3d6ea; }

/* --------------------------------------------------------------------------
   Steps (devis express process)
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2rem 1.6rem 1.7rem;
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--blue-100);
  position: absolute;
  top: .6rem; right: 1.1rem;
  line-height: 1;
}
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------------------
   Zones
   -------------------------------------------------------------------------- */
.zones-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.zones-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.zone-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy-800);
  transition: border-color .15s, background .15s;
}
.zone-chip svg { width: 14px; height: 14px; color: var(--accent-500); }
.zone-chip:hover { border-color: var(--blue-500); background: var(--blue-50); }
a.zone-chip { text-decoration: none !important; cursor: pointer; }
.zone-chip--main { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.zone-chip--main svg { color: var(--accent-500); }

.map-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(150deg, var(--blue-50), var(--blue-100));
  padding: 1rem;
}
.map-visual svg { width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.review-card__stars { display: flex; gap: .2rem; color: #f5a623; }
.review-card__stars svg { width: 18px; height: 18px; }
.review-card h3 { font-size: 1.02rem; margin: 0; }
.review-card p { font-size: .93rem; color: var(--ink-soft); margin: 0; flex: 1; }
.review-card footer {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.review-card footer svg { width: 16px; height: 16px; color: #34a853; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list { display: grid; gap: .9rem; max-width: 860px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--blue-100); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-500);
  transition: transform .2s;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); font-size: .96rem; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(244,115,42,.25), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  border-radius: calc(var(--radius) + 8px);
  color: #fff;
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: .4rem; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.cta-band p { color: #c3d6ea; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(36,120,212,.35), transparent 60%),
    linear-gradient(155deg, var(--navy-900), var(--navy-700));
  color: #eaf2fb;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.page-hero h1 { color: #fff; margin-bottom: .6rem; }
.page-hero p { color: #c3d6ea; max-width: 46rem; font-size: 1.12rem; margin: 0; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .85rem;
  margin-bottom: 1.2rem;
  color: #8fb0d3;
}
.breadcrumb a { color: #c3d6ea; }
.breadcrumb .sep { opacity: .5; }

.prose { max-width: 780px; }
.prose-photo { margin: 2rem 0; }
.prose-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.prose-photo figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: .6rem; }
.prose h2 { margin-top: 2.2rem; }
.prose ul { color: var(--ink-soft); padding-left: 1.2rem; }
.prose ul li { margin-bottom: .45rem; }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none !important;
  color: var(--ink);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.post-card__cat {
  align-self: flex-start;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-600);
  background: var(--accent-100);
  border-radius: 999px;
  padding: .25rem .7rem;
}
.post-card h2 {
  font-size: 1.12rem;
  margin: 0;
  line-height: 1.32;
}
.post-card p { font-size: .92rem; color: var(--ink-soft); margin: 0; flex: 1; }
.post-card__more {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--accent-600);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.post-card__more svg { width: 15px; height: 15px; }

.article-body { padding-top: clamp(2.5rem, 5vw, 4rem); }
.article-body .prose { margin-inline: auto; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
  font-size: .85rem;
  color: #8fb0d3;
  margin-top: 1rem;
}
.article-meta .post-card__cat { background: rgba(255, 255, 255, .12); color: #fff; }
.read-also {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 2.2rem 0;
}
.read-also h2 { font-size: 1.05rem; margin-bottom: .7rem; }
.read-also ul { margin: 0; padding-left: 1.2rem; }
.read-also li { margin-bottom: .4rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-900);
  color: #9db6cf;
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  font-size: .93rem;
}
.footer a { color: #cfe0f2; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer h4 {
  color: #fff;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--accent-500); flex: none; margin-top: .2rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem;
  font-size: .82rem;
}

/* --------------------------------------------------------------------------
   Floating mobile call button
   -------------------------------------------------------------------------- */
.call-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  padding: .9rem 1.3rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(224, 95, 22, .45);
  text-decoration: none !important;
  opacity: 0;
  transform: translateY(90px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.call-fab.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.call-fab:hover { transform: translateY(-3px); }
.call-fab svg { width: 20px; height: 20px; }
@media (prefers-reduced-motion: reduce) {
  .call-fab { transition: opacity .3s ease; transform: none; }
}

/* --------------------------------------------------------------------------
   Bandeau cookies
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  max-width: 460px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.2rem 1.4rem;
}
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin: 0 0 .9rem; }
.cookie-banner__actions { display: flex; gap: .6rem; }
.cookie-banner__actions .btn { padding: .55rem 1.1rem; font-size: .88rem; }
@media (min-width: 821px) {
  .cookie-banner { left: auto; right: 1.4rem; bottom: 1.4rem; }
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .devis-card { max-width: 560px; }
  .split, .zones-wrap { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .topbar__hide-m { display: none; }
  .nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 31, 56, .98);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .28s ease, visibility 0s linear .28s;
    z-index: 95;
  }
  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .28s ease;
  }
  .nav a { color: #fff; font-size: 1.3rem; }
  .nav-toggle { display: block; z-index: 96; position: relative; }
  .header__phone span { display: none; }
  .call-fab { display: inline-flex; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 1.2rem; }
  .hero__actions .btn { width: 100%; }
}
