/* =========================================================================
   ClairEspace — Débarras Grand Est
   Design system & global styles
   Palette: Bleu profond #0A2540 / Blanc cassé #F7F7F5 / CTA Vert #2ECC71
   Type: Space Grotesk (titres) + Inter (texte)
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --navy: #0A2540;
  --navy-900: #0B1F3B;
  --navy-700: #143257;
  --navy-500: #2a4a6e;
  --offwhite: #F7F7F5;
  --white: #ffffff;

  /* Action / CTA (une seule direction : vert conversion) */
  --cta: #2ECC71;
  --cta-600: #27ae60;
  --cta-700: #1f9251;
  --cta-soft: rgba(46, 204, 113, 0.12);

  /* Neutrals */
  --ink: #0C1B2A;
  --muted: #5A6B7B;
  --muted-light: #8597a6;
  --line: #E4E8EC;
  --line-strong: #cdd5dc;
  --bg-tint: #EEF2F6;

  /* Surface on navy */
  --on-navy: rgba(255,255,255,.92);
  --on-navy-muted: rgba(255,255,255,.66);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.08);
  --shadow-md: 0 10px 30px -12px rgba(10,37,64,.18);
  --shadow-lg: 0 30px 60px -20px rgba(10,37,64,.28);
  --shadow-cta: 0 12px 28px -8px rgba(46,204,113,.55);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--navy { background: var(--navy-900); color: var(--on-navy); }
.section--tint { background: var(--bg-tint); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -.02em; color: var(--navy-900); font-weight: 600; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { color: var(--muted); }
.section--navy p { color: var(--on-navy-muted); }
strong { color: inherit; font-weight: 650; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cta-700);
  background: var(--cta-soft); padding: 7px 14px; border-radius: 100px;
}
.section--navy .eyebrow { color: #8af0b6; background: rgba(46,204,113,.16); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 16px; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--cta); --_fg: #06351c;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: 100px; border: 0;
  background: var(--_bg); color: var(--_fg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; text-align: center;
}
.btn svg { width: 18px; height: 18px; }
.btn--cta { box-shadow: var(--shadow-cta); }
.btn--cta:hover { background: var(--cta-600); transform: translateY(-2px); box-shadow: 0 18px 36px -8px rgba(46,204,113,.6); }
.btn--cta:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--navy-900); border: 1.5px solid var(--line-strong); box-shadow: none; }
.btn--ghost:hover { border-color: var(--navy-900); background: var(--white); transform: translateY(-2px); }
.section--navy .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.32); }
.section--navy .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 18px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,247,245,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: rgba(247,247,245,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--navy-900); letter-spacing: -.02em; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 500; font-size: .96rem; color: var(--navy-700); transition: color .2s; }
.nav__links a:hover { color: var(--cta-700); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }
.nav__phone svg { width: 18px; height: 18px; color: var(--cta-700); }
.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--white); align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .3s, opacity .2s; }
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after { transform: translateY(4px); }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: rotate(45deg); }
body.nav-open .nav__toggle span::after { transform: rotate(-45deg) translateY(0); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--offwhite) 100%); }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto auto; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 70% 30%, rgba(77,163,255,.14), transparent 60%); pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 92px); }
.hero__copy { max-width: 600px; }
.hero h1 { margin-top: 18px; }
.hero h1 .accent { color: var(--cta-700); }
.hero__sub { margin-top: 22px; font-size: 1.18rem; color: var(--muted); max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__trust-item { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .94rem; color: var(--navy-700); }
.hero__trust-item svg { width: 22px; height: 22px; color: var(--cta-700); flex: none; }

/* Before/After interactive */
.ba {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: var(--navy-900);
  user-select: none; touch-action: pan-y;
}
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba__img img, .ba__img svg { width: 100%; height: 100%; object-fit: cover; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba__tag { position: absolute; top: 16px; z-index: 3; font-family: var(--font-head); font-weight: 600; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(6px); }
.ba__tag--before { left: 16px; background: rgba(11,31,59,.78); color: #fff; }
.ba__tag--after { right: 16px; background: rgba(46,204,113,.92); color: #06351c; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(10,37,64,.15); }
.ba__grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--navy-900);
}
.ba__grip svg { width: 26px; height: 26px; }
.ba__range { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.hero__badge {
  position: absolute; left: -14px; bottom: 24px; z-index: 6;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero__badge .stars { color: #FFB400; font-size: 1rem; letter-spacing: 1px; }
.hero__badge b { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy-900); }
.hero__badge small { color: var(--muted); font-size: .8rem; }
.hero__media { position: relative; }

/* ---------- Logos / reassurance strip ---------- */
.strip { background: var(--navy-900); color: var(--on-navy); }
.strip__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; padding-block: 26px; }
.strip__item { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.strip__item svg { width: 26px; height: 26px; color: #8af0b6; flex: none; }
.strip__item b { color: #fff; font-family: var(--font-head); }

/* ---------- Services ---------- */
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--navy-900); color: #8af0b6; display: grid; place-items: center; margin-bottom: 20px; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { color: var(--navy-900); }
.card p { margin-top: 10px; font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--cta-700); }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Why us / features split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.feature-list { display: grid; gap: 22px; margin-top: 30px; }
.feature { display: flex; gap: 16px; }
.feature__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--cta-soft); color: var(--cta-700); display: grid; place-items: center; }
.feature__ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { font-size: .96rem; }
.section--navy .feature__ic { background: rgba(46,204,113,.16); color: #8af0b6; }
.stat-cluster { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.section--navy .stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.stat b { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy-900); line-height: 1; }
.section--navy .stat b { color: #fff; }
.stat span { display: block; margin-top: 8px; font-size: .92rem; color: var(--muted); }
.section--navy .stat span { color: var(--on-navy-muted); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba--card { aspect-ratio: 4/3; box-shadow: var(--shadow-md); }
.gallery .ba__grip { width: 42px; height: 42px; }
.gallery figcaption { margin-top: 14px; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }
.gallery figcaption span { display: block; font-family: var(--font-body); font-weight: 400; font-size: .9rem; color: var(--muted); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px; }
.step__num { font-family: var(--font-head); font-weight: 700; font-size: 1rem; width: 44px; height: 44px; border-radius: 50%; background: var(--navy-900); color: #fff; display: grid; place-items: center; margin-bottom: 20px; }
.step h3 { font-size: 1.12rem; }
.step p { margin-top: 8px; font-size: .95rem; }
.step::after { content: ""; position: absolute; top: 54px; right: -13px; width: 26px; height: 2px; background: var(--line-strong); }
.step:last-child::after { display: none; }

/* ---------- Testimonials ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.rating-badge { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-sm); }
.rating-badge .score { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--navy-900); line-height: 1; }
.rating-badge .stars { color: #FFB400; font-size: 1.05rem; letter-spacing: 2px; }
.rating-badge small { color: var(--muted); font-size: .85rem; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.review .stars { color: #FFB400; letter-spacing: 2px; }
.review p { color: var(--ink); font-size: 1.02rem; line-height: 1.65; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-900); color: #fff; font-family: var(--font-head); font-weight: 600; display: grid; place-items: center; flex: none; }
.review__who b { display: block; color: var(--navy-900); font-family: var(--font-head); font-size: .98rem; }
.review__who small { color: var(--muted); }
.review__tag { align-self: flex-start; font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--cta-700); background: var(--cta-soft); padding: 4px 10px; border-radius: 100px; }

/* ---------- Zone d'intervention ---------- */
.zone { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.cities { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.city-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--line); font-weight: 500; font-size: .95rem; color: var(--navy-700);
  transition: transform .2s, border-color .2s, color .2s;
}
.city-chip:hover { transform: translateY(-2px); border-color: var(--cta); color: var(--cta-700); }
.city-chip svg { width: 15px; height: 15px; color: var(--cta-700); }
.zone__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--white); border: 1px solid var(--line); }
.ge-map { display: block; width: 100%; height: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 24px 44px 24px 0; position: relative; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--navy-900); }
.faq__q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 400; color: var(--cta-700); transition: transform .3s; line-height: 1; }
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { padding-bottom: 24px; color: var(--muted); font-size: 1rem; }

/* ---------- Form / devis ---------- */
.devis { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.devis__aside { position: sticky; top: 100px; }
.devis__points { display: grid; gap: 16px; margin-top: 26px; }
.devis__point { display: flex; gap: 12px; align-items: flex-start; }
.devis__point svg { width: 22px; height: 22px; color: #8af0b6; flex: none; margin-top: 2px; }
.devis__call { margin-top: 30px; padding: 22px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.devis__call a { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: #fff; display: inline-block; margin-top: 4px; }
.form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-900); margin-bottom: 7px; }
.field label .req { color: var(--cta-700); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  font: inherit; font-size: .98rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cta); box-shadow: 0 0 0 4px var(--cta-soft); }
.field--error input, .field--error select, .field--error textarea { border-color: #e74c3c; }
.field__err { display: none; color: #e74c3c; font-size: .82rem; margin-top: 6px; }
.field--error .field__err { display: block; }
.form__note { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.form__success { display: none; text-align: center; padding: 20px; }
.form__success.is-visible { display: block; }
.form__success svg { width: 64px; height: 64px; color: var(--cta); margin: 0 auto 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto -10% -60% auto; width: 50%; aspect-ratio: 1; background: radial-gradient(circle, rgba(46,204,113,.25), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: var(--on-navy-muted); max-width: 560px; margin: 16px auto 0; position: relative; }
.cta-band .hero__actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: var(--on-navy-muted); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-head); }
.footer a { display: block; padding: 5px 0; color: var(--on-navy-muted); transition: color .2s; font-size: .95rem; }
.footer a:hover { color: #fff; }
.footer__brand .brand { color: #fff; margin-bottom: 16px; }
.footer__brand .brand small { color: var(--on-navy-muted); }
.footer__brand p { font-size: .95rem; max-width: 320px; }
.footer__contact { display: grid; gap: 10px; margin-top: 18px; }
.footer__contact a { display: inline-flex; align-items: center; gap: 10px; }
.footer__contact svg { width: 18px; height: 18px; color: #8af0b6; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }

/* ---------- Floating mobile CTA ---------- */
.fab { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: none; gap: 10px; }
.fab .btn { flex: 1; box-shadow: var(--shadow-lg); }
.fab .btn--call { background: var(--navy-900); color: #fff; }

/* ---------- Local page hero ---------- */
.local-hero { background: linear-gradient(180deg, var(--navy-900), var(--navy-700)); color: #fff; }
.local-hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 56px); align-items: center; padding-block: clamp(48px, 6vw, 80px); }
.local-hero h1 { color: #fff; margin-top: 16px; }
.local-hero p { color: var(--on-navy-muted); font-size: 1.15rem; margin-top: 18px; }
.breadcrumb { font-size: .85rem; color: var(--on-navy-muted); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.4); margin: 0 8px; }
.local-hero .hero__media .ba { box-shadow: var(--shadow-lg); }
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; font-size: 1.05rem; }
.prose h2 { margin: 36px 0 14px; }
.prose h3 { margin: 28px 0 10px; }
.prose ul.ticks { display: grid; gap: 10px; margin: 8px 0 20px; }
.prose ul.ticks li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.prose ul.ticks svg { width: 20px; height: 20px; color: var(--cta-700); flex: none; margin-top: 3px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 4px; align-items: stretch;
    background: var(--offwhite); padding: 18px var(--gutter) 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s var(--ease);
  }
  body.nav-open .nav__links { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links .btn { margin-top: 10px; }
  .hero__inner, .split, .zone, .devis, .local-hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .devis__aside { position: static; }
  .grid--3 { grid-template-columns: 1fr; }
  .fab { display: flex; }
  body { padding-bottom: 80px; }
}
@media (max-width: 560px) {
  .grid--4, .grid--2, .gallery, .steps, .stat-cluster, .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__badge { left: 12px; bottom: 12px; padding: 10px 14px; }
  .strip__inner { gap: 16px; }
  .strip__item { font-size: .9rem; }
}
