/* =============================================================
   Jeff Couverture — Feuille de style principale
   Couvreur à Montauban (Tarn-et-Garonne)
   Palette de marque : bleu #1f5396 · corail #d65956 · prune #553b55
   ============================================================= */

/* ---------- Variables ---------- */
:root {
  --blue: #1f5396;
  --blue-dark: #163f74;
  --blue-darker: #10294a;
  --red: #a93431;
  --red-dark: #8f2927;
  --plum: #553b55;

  --ink: #1a2432;
  --body: #48566a;
  --muted: #526074;
  --line: #e6eaf0;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-blue-soft: #eef3fa;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(16, 41, 74, .06);
  --shadow: 0 12px 30px rgba(16, 41, 74, .10);
  --shadow-lg: 0 26px 60px rgba(16, 41, 74, .16);
  --maxw: 1180px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red); }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3.3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-inline: auto; }

.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.eyebrow--light { color: #ffd0ce; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 12px; }
.lead { font-size: 1.16rem; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; padding: 15px 28px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: all .22s var(--ease);
  text-align: center; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(214, 89, 86, .34); }
.btn--primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(214, 89, 86, .42); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(31, 83, 150, .30); }
.btn--blue:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: #fff; color: var(--blue-dark); border-color: #fff; }
.btn--outline { background: #fff; color: var(--blue); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.logo { display: flex; align-items: center; flex: none; }
.logo picture { display: flex; align-items: center; }
.logo img { height: 46px; width: auto; max-width: none; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink); font-weight: 600; font-size: .97rem; padding: 10px 14px; border-radius: 8px;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--blue); background: var(--bg-blue-soft); }
/* Menu déroulant Services */
.nav-drop { position: relative; display: flex; align-items: center; }
.nav-drop__toggle { display: inline-flex; align-items: center; gap: 5px; color: var(--ink); font-weight: 600; font-size: .97rem; padding: 10px 14px; border-radius: 8px; cursor: pointer; }
.nav-drop__toggle svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.nav-drop__toggle:hover, .nav-drop__toggle.active { color: var(--blue); background: var(--bg-blue-soft); }
.nav-drop:hover .nav-drop__toggle svg, .nav-drop:focus-within .nav-drop__toggle svg { transform: rotate(180deg); }
.nav-drop__menu {
  position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; display: flex; flex-direction: column; gap: 2px; z-index: 120;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav-drop__menu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 12px; }
.nav-drop:hover .nav-drop__menu, .nav-drop:focus-within .nav-drop__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop__menu a { padding: 11px 14px; border-radius: 8px; font-weight: 600; font-size: .95rem; color: var(--ink); white-space: nowrap; }
.nav-drop__menu a:hover, .nav-drop__menu a.active { background: var(--bg-blue-soft); color: var(--blue); }
.nav-drop__menu a:first-child { color: var(--blue); font-weight: 700; border-bottom: 1px solid var(--line); border-radius: 0; margin-bottom: 4px; padding-bottom: 12px; }
/* Puces communes (SEO local) */
.towns { display: flex; flex-wrap: wrap; gap: 10px; }
.towns span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: .92rem; color: var(--ink); box-shadow: var(--shadow-sm); }
.header__cta { display: flex; align-items: center; gap: 14px; flex: none; }
.header__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; color: var(--ink); white-space: nowrap; flex: none; }
.nav { flex: 1 1 auto; justify-content: center; }
.header__phone svg { width: 20px; height: 20px; color: var(--red); flex: none; }
.header__phone span { font-size: .72rem; font-weight: 700; color: var(--muted); display: block; letter-spacing: .04em; text-transform: uppercase; }
.header__phone b { font-size: 1.06rem; letter-spacing: .01em; display: block; }
.header__phone-compact { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg picture,
.hero__bg img { width: 100%; height: 100%; }
.hero__bg picture { display: block; }
.hero__bg img { object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(16, 41, 74, .92) 0%, rgba(16, 41, 74, .80) 42%, rgba(22, 63, 116, .55) 100%);
}
.hero__inner { padding: 92px 0 96px; max-width: 720px; }
.hero h1 { color: #fff; }
.hero p { color: rgba(255, 255, 255, .90); font-size: 1.18rem; margin: 20px 0 30px; max-width: 600px; }
.hero .btn-row { margin-bottom: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .18); }
.hero__trust li { list-style: none; display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .96rem; color: rgba(255, 255, 255, .94); }
.hero__trust svg { width: 20px; height: 20px; color: #7fe6a9; flex: none; }
.hero--sm .hero__inner { padding: 64px 0; max-width: 780px; }
.hero--sm h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); }

/* Breadcrumb */
.breadcrumb { font-size: .88rem; color: rgba(255, 255, 255, .8); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255, 255, 255, .8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .6; margin: 0 6px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--blue-darker); color: #fff; }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 26px 0; }
.trustbar__item { display: flex; align-items: center; gap: 13px; justify-content: center; padding: 6px 10px; }
.trustbar__item svg { width: 34px; height: 34px; color: var(--red); flex: none; }
.trustbar__item b { display: block; color: #fff; font-size: 1.02rem; line-height: 1.2; }
.trustbar__item span { font-size: .84rem; color: rgba(255, 255, 255, .66); }

/* ---------- Cards / services ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #d3ddec; }
.svc-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.svc-card__img picture,
.svc-card__img img { width: 100%; height: 100%; }
.svc-card__img picture { display: block; }
.svc-card__img img { object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: .98rem; }
.svc-card__link { margin-top: auto; padding-top: 14px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.svc-card__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* icon feature card */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); height: 100%; }
.feature__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--bg-blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 18px; }
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .97rem; margin: 0; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { position: relative; }
.split__media picture { display: block; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split__badge {
  position: absolute; bottom: -24px; right: -18px; background: var(--red); color: #fff;
  border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow-lg); text-align: center;
}
.split__badge b { font-size: 2.1rem; display: block; line-height: 1; }
.split__badge span { font-size: .82rem; font-weight: 600; opacity: .95; }
.checklist { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--ink); }
.checklist svg { width: 22px; height: 22px; color: #21a45d; flex: none; margin-top: 1px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat b { font-size: clamp(2.2rem, 4vw, 3rem); color: var(--blue); font-weight: 800; display: block; line-height: 1; }
.stat span { color: var(--muted); font-weight: 600; margin-top: 8px; display: block; }
.stats--onblue .stat b { color: #fff; }
.stats--onblue .stat span { color: rgba(255, 255, 255, .72); }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review__stars { color: #f5a623; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review p { font-style: italic; color: var(--body); }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.review__author b { color: var(--ink); display: block; font-size: .98rem; }
.review__author span { font-size: .82rem; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.review__author svg { width: 14px; height: 14px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px 28px; position: relative; box-shadow: var(--shadow-sm); }
.step__num { width: 52px; height: 52px; border-radius: 14px; background: var(--blue); color: #fff; font-weight: 800; font-size: 1.35rem; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .97rem; margin: 0; }

/* ---------- Realisations ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.real-card { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); background: #000; aspect-ratio: 4 / 3; }
.real-card picture,
.real-card img { width: 100%; height: 100%; }
.real-card picture { display: block; }
.real-card img { object-fit: cover; transition: transform .5s var(--ease); opacity: .96; }
.real-card:hover img { transform: scale(1.07); }
.real-card__meta { position: absolute; inset: auto 0 0 0; padding: 40px 20px 18px; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .82)); }
.real-card__tag { display: inline-block; background: var(--red); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.real-card__meta b { display: block; font-size: 1.02rem; line-height: 1.3; }
.real-card__meta span { font-size: .84rem; opacity: .82; }

/* ---------- Content prose (service & blog) ---------- */
.prose h2 { margin: 40px 0 14px; }
.prose h3 { margin: 30px 0 10px; color: var(--blue-dark); }
.prose p { color: var(--body); }
.prose ul:not(.checklist):not(.aside-list) { list-style: none; margin: 0 0 20px; display: grid; gap: 10px; }
.prose ul:not(.checklist):not(.aside-list) li { position: relative; padding-left: 30px; color: var(--body); }
.prose ul:not(.checklist):not(.aside-list) li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 18px; height: 18px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2321a45d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.prose--sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .prose--sidebar { grid-template-columns: 1fr; } }

.aside-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: 96px; }
.aside-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.aside-card .btn { width: 100%; margin-top: 6px; }
.aside-list { list-style: none; display: grid; gap: 6px; margin-bottom: 8px; }
.aside-list a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 10px; color: var(--ink); font-weight: 600; background: #fff; border: 1px solid var(--line); }
.aside-list a:hover { border-color: var(--blue); color: var(--blue); }
.aside-list svg { width: 18px; height: 18px; color: var(--red); flex: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--red); transition: transform .25s var(--ease); flex: none; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 24px 22px; color: var(--body); }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg picture,
.cta-band__bg img { width: 100%; height: 100%; }
.cta-band__bg picture { display: block; }
.cta-band__bg img { object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(16, 41, 74, .95), rgba(31, 83, 150, .82)); }
.cta-band__inner { padding: 74px 0; text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .9); margin: 16px 0 28px; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.info-list { list-style: none; display: grid; gap: 20px; margin: 26px 0; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.info-list .ic svg { width: 22px; height: 22px; }
.info-list b { display: block; color: var(--ink); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.info-list a, .info-list p { color: var(--body); font-size: 1.08rem; font-weight: 600; margin: 0; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form h3 { margin-bottom: 6px; }
.form > p { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: .9rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit;
  font-size: .98rem; color: var(--ink); background: #fbfcfe; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31, 83, 150, .12); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; }
.form__note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 24px; }
.map-embed iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__img { aspect-ratio: 16 / 9; overflow: hidden; }
.post-card__img picture,
.post-card__img img { width: 100%; height: 100%; }
.post-card__img picture { display: block; }
.post-card__img img { object-fit: cover; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-size: .82rem; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.post-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: .96rem; }
.post-card__link { margin-top: auto; font-weight: 700; }

.article-hero { max-width: 820px; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: .9rem; color: var(--muted); margin: 16px 0 0; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta svg { width: 16px; height: 16px; color: var(--red); }

/* ---------- Footer ---------- */
.footer { background: var(--blue-darker); color: rgba(255, 255, 255, .74); padding: 64px 0 0; }
.footer a { color: rgba(255, 255, 255, .74); }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer__logo picture { display: inline-flex; margin-bottom: 18px; }
.footer__logo img { height: 52px; width: auto; max-width: none; background: #fff; padding: 8px 12px; border-radius: 10px; }
.footer__about p { font-size: .95rem; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; }
.footer__social a:hover { background: var(--red); }
.footer__social svg { width: 19px; height: 19px; color: #fff; }
.footer__title { color: #fff; font-size: 1.02rem; line-height: 1.15; font-weight: 800; margin-bottom: 18px; letter-spacing: .01em; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { font-size: .95rem; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; margin-bottom: 12px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--red); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 22px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .87rem; }
.footer__bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Sticky mobile call ---------- */
.mobile-call { display: none; }

/* ---------- Bandeau cookies ---------- */
.cookie-banner {
  position: fixed; left: 14px; right: 14px; bottom: 14px; margin-inline: auto; max-width: 900px;
  z-index: 200; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1 1 320px; }
.cookie-banner__text b { color: var(--ink); display: block; margin-bottom: 4px; font-size: 1rem; }
.cookie-banner__text p { margin: 0; font-size: .92rem; color: var(--muted); line-height: 1.55; }
.cookie-banner__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-banner__actions .btn { padding: 11px 24px; font-size: .95rem; }
@media (max-width: 560px) {
  .cookie-banner { left: 0; right: 0; bottom: 0; width: 100%; max-width: none; border-radius: 16px 16px 0 0; padding: 18px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
/* Animation d'apparition — active uniquement si JS présent (contenu visible par défaut sinon) */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
/* Navigation -> menu hamburger */
@media (max-width: 992px) {
  .header__phone span { display: none; }
  .header__phone .header__phone-compact { display: inline; color: var(--ink); font-size: .88rem; letter-spacing: 0; text-transform: none; }
  .burger { display: flex; }
  .header__cta .btn { display: none; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 18px 22px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s var(--ease); max-height: calc(100vh - 76px); overflow: auto;
    display: flex;
  }
  .nav:not(.open) { pointer-events: none; }
  .nav.open { transform: none; }
  .nav a { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; }
  .nav a:last-child { border-bottom: 0; }
  /* Menu déroulant en mobile : sous-menu déplié */
  .nav-drop { flex-direction: column; align-items: stretch; }
  .nav-drop__toggle { padding: 14px 12px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 1.05rem; justify-content: space-between; }
  .nav-drop__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; padding: 0; min-width: 0; background: var(--bg-soft);
  }
  .nav-drop__menu a { padding: 13px 12px 13px 26px; font-size: .98rem; color: var(--muted); border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-drop__menu a:first-child { border-radius: 0; margin: 0; }
  .mobile-call {
    display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90; gap: 10px;
  }
  .mobile-call a { flex: 1; box-shadow: var(--shadow-lg); }
  body { padding-bottom: 76px; }
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__badge { right: 16px; bottom: -20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .grid-3, .grid-2, .reviews, .steps, .gallery, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
}
@media (max-width: 520px) {
  .grid-4, .stats { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: 1fr; }
  .hero__inner { padding: 66px 0; }
  .split__badge { padding: 14px 18px; }
  .form { padding: 22px; }
}
