/* ==========================================================================
   AS Rénovation · feuille de style (mobile first)
   ========================================================================== */

@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #0e0f11;
  --ink-2: #16181b;
  --ink-3: #1f2226;
  --ink-4: #2a2e33;
  --paper: #f6f5f3;
  --paper-2: #ecebe7;
  --white: #fff;
  --text: #16181b;
  --muted: #555a61;
  --muted-d: #a9adb3;
  --line: #e1dfda;
  --line-d: rgba(255, 255, 255, .09);
  --red: #e1251b;
  --red-2: #b81b12;
  --red-t: #c0170f;        /* rouge texte sur fond clair (AA) */
  --red-td: #ff5b4f;       /* rouge texte sur fond sombre (AA) */
  --glow: 0 10px 40px -10px rgba(225, 37, 27, .55);
  --r: 14px;
  --r-lg: 22px;
  --gutter: 16px;
  --max: 1200px;
  --hdr-h: 64px;
  --f-head: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
@media (min-width: 600px) { :root { --gutter: 24px; } }
@media (min-width: 1100px) { :root { --gutter: 32px; --hdr-h: 76px; } }

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--hdr-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }
h1, h2, h3, h4, p, li, dd, figcaption, blockquote { overflow-wrap: break-word; }
h1, h2, h3 { hyphens: manual; }
:focus-visible { outline: 3px solid var(--red-td); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--red); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700; text-decoration: none; }
.skip:focus { top: 12px; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------------------------------ layout */
.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.narrow { max-width: 860px; }
.center { text-align: center; }
.mt { margin-top: clamp(28px, 4vw, 44px); }
.mt-s { margin-top: 18px; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.break { overflow-wrap: anywhere; }
@media (max-width: 599px) { .hide-sm { display: none; } }

.section { position: relative; padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(36px, 5vw, 56px); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--ink); color: #e9eaec; }
.section--dark p { color: var(--muted-d); }
.section--dark .sec-title, .section--dark h3, .section--dark strong { color: #fff; }
.grain { isolation: isolate; }
.grain::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(225, 37, 27, .12), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(225, 37, 27, .07), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ typo */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-head); font-stretch: 112%; font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-t); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; flex: none; }
.kicker .ic { width: 16px; height: 16px; }
.kicker:has(.ic)::before { display: none; }
.section--dark .kicker, .kicker--light { color: var(--red-td); }

.sec-head { margin-bottom: clamp(28px, 4vw, 52px); max-width: 760px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .kicker { justify-content: center; }
.sec-title {
  font-family: var(--f-head); font-stretch: 112%; font-weight: 800;
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 2.85rem);
  line-height: 1.1; letter-spacing: -.015em; color: var(--ink);
  text-wrap: balance;
}
.sec-lead { margin-top: 16px; font-size: clamp(1rem, .95rem + .3vw, 1.125rem); color: var(--muted); text-wrap: pretty; }
.accent { color: var(--red-t); }
.section--dark .accent, .hero .accent, .phero .accent, .cta-final .accent { color: var(--red-td); }
h3 { font-family: var(--f-head); font-stretch: 108%; font-weight: 700; font-size: 1.2rem; line-height: 1.25; color: var(--ink); }
.mini-title { font-family: var(--f-head); font-weight: 700; font-stretch: 110%; margin-bottom: 14px; }

.prose p + p { margin-top: 1em; }
.prose a:not(.btn) { color: var(--red-t); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:not(.btn):hover { color: var(--red-2); }

/* ------------------------------------------------------------------ icônes */
.ic { width: 20px; height: 20px; flex: none; }

/* ------------------------------------------------------------------ boutons */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 22px; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  font-family: var(--f-head); font-stretch: 108%; font-weight: 700; font-size: .98rem; line-height: 1.2;
  text-decoration: none; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s, border-color .2s, color .2s;
}
.btn .ic { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .ic:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn--red { --bg: var(--red); box-shadow: var(--glow); }
.btn--red:hover { --bg: #f02e23; box-shadow: 0 14px 44px -10px rgba(225, 37, 27, .75); }
.btn--dark { --bg: var(--ink); }
.btn--dark:hover { --bg: var(--ink-4); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.drawer .btn--ghost { --fg: #fff; --bd: rgba(255,255,255,.35); }
.btn--glass { --bg: rgba(255, 255, 255, .08); --bd: rgba(255, 255, 255, .28); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn--glass:hover { --bg: rgba(255, 255, 255, .16); }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--sm { min-height: 42px; padding: 9px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ------------------------------------------------------------------ topbar */
.topbar { background: var(--red); color: #fff; font-size: .86rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 38px; }
.topbar__msg { display: flex; align-items: center; gap: 8px; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__msg .ic { width: 16px; height: 16px; }
.topbar__tel { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.topbar__tel .ic { width: 15px; height: 15px; }

/* ------------------------------------------------------------------ header */
.hdr {
  position: sticky; top: 0; z-index: 70;
  background: rgba(14, 15, 17, .94);
  backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-d);
  color: #fff;
}
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--hdr-h); }
.hdr__logo { flex: none; display: block; }
.hdr__logo img { height: 50px; width: auto; }
@media (min-width: 1100px) { .hdr__logo img { height: 56px; } }
.hdr__cta { display: flex; align-items: center; gap: 10px; }
.hdr__tel {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.22);
  text-decoration: none; font-weight: 800; font-family: var(--f-head); font-stretch: 108%;
}
.hdr__tel span { display: none; }
.hdr__tel .ic { width: 19px; height: 19px; color: var(--red-td); }
.hdr__quote { display: none; }
@media (min-width: 600px) { .hdr__quote { display: inline-flex; } }
@media (min-width: 1280px) {
  .hdr__tel { width: auto; height: auto; border: 0; border-radius: 0; }
  .hdr__tel span { display: inline; }
}

.burger { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border-radius: 12px; background: rgba(255,255,255,.07); }
.burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* nav desktop */
.nav { display: none; }
@media (min-width: 1180px) {
  .burger { display: none; }
  .nav { display: block; }
  .nav__list { display: flex; align-items: center; gap: 2px; }
  .nav__item { position: relative; display: flex; align-items: center; }
  .nav__link {
    display: block; padding: 10px 12px; text-decoration: none; font-weight: 600; font-size: .95rem;
    color: #d9dbde; border-radius: 8px; transition: color .2s;
  }
  .has-sub .nav__link { padding-right: 4px; }
  .nav__link:hover, .nav__link.is-active { color: #fff; }
  .nav__link.is-active { box-shadow: inset 0 -2px 0 var(--red); border-radius: 0; }
  .nav__toggle { display: grid; place-items: center; width: 26px; height: 32px; color: #b9bcc0; }
  .nav__toggle .ic { width: 15px; height: 15px; transition: transform .25s; }
  .sub {
    position: absolute; top: calc(100% + 8px); left: -12px; min-width: 270px;
    background: var(--ink-2); border: 1px solid var(--line-d); border-radius: var(--r);
    padding: 10px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s, transform .25s var(--ease), visibility .2s;
  }
  .sub::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
  .sub__list--2col { display: grid; grid-template-columns: 1fr 1fr; min-width: 420px; }
  .sub a { display: block; padding: 9px 12px; border-radius: 8px; text-decoration: none; color: #d9dbde; font-size: .93rem; }
  .sub a:hover, .sub a[aria-current] { background: rgba(255,255,255,.06); color: #fff; }
  .sub__all { display: flex !important; align-items: center; gap: 8px; margin-top: 6px; border-top: 1px solid var(--line-d); border-radius: 0 !important; padding-top: 12px !important; color: var(--red-td) !important; font-weight: 700; }
  .sub__all .ic { width: 16px; height: 16px; }
  .nav__item:hover .sub, .nav__item:focus-within .sub, .nav__item.is-open .sub { opacity: 1; visibility: visible; transform: none; }
  .nav__item:hover .nav__toggle .ic, .nav__item.is-open .nav__toggle .ic { transform: rotate(180deg); }
}

/* drawer mobile */
.drawer {
  position: fixed; inset: var(--drawer-top, var(--hdr-h)) 0 0 0; z-index: 65;
  background: var(--ink); color: #fff; overflow-y: auto; overscroll-behavior: contain;
  padding: 12px var(--gutter) calc(96px + env(safe-area-inset-bottom));
  animation: drawerIn .3s var(--ease);
}
.drawer[hidden] { display: none; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-8px); } }
.drawer ul { list-style: none; padding: 0; }
.drawer__nav > ul > li { border-bottom: 1px solid var(--line-d); }
.drawer__nav > ul a, .drawer__nav summary {
  display: flex; align-items: center; justify-content: space-between; min-height: 56px;
  font-family: var(--f-head); font-stretch: 110%; font-weight: 700; font-size: 1.15rem; text-decoration: none; cursor: pointer;
}
.drawer__nav summary { list-style: none; }
.drawer__nav summary::-webkit-details-marker { display: none; }
.drawer__nav summary .ic { transition: transform .25s; }
.drawer__nav details[open] summary .ic { transform: rotate(180deg); }
.drawer__nav details ul { padding: 0 0 12px 14px; border-left: 2px solid var(--red); margin-bottom: 12px; }
.drawer__nav details a { min-height: 44px; font-family: var(--f-body); font-weight: 600; font-size: 1rem; color: #cfd2d6; }
.drawer__nav a[aria-current] { color: var(--red-td); }
.drawer__cta { display: grid; gap: 12px; margin-top: 24px; }
body.is-locked { overflow: hidden; }
@media (min-width: 1180px) { .drawer { display: none !important; } }

/* ------------------------------------------------------------------ hero accueil */
/* Mobile : image en haut, texte superposé sur le bas de l'image. Desktop : texte à gauche sur l'image. */
.hero { --hero-img-h: min(100vw, 560px); position: relative; isolation: isolate; color: #fff; background: var(--ink); overflow: hidden; }
.hero__bg { position: absolute; top: 0; left: 0; right: 0; height: var(--hero-img-h); z-index: -1; }
.hero__bg picture, .hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,15,17,.15) 0%, rgba(14,15,17,0) 22%, rgba(14,15,17,.35) 48%, rgba(14,15,17,.88) 78%, var(--ink) 100%);
}
.hero__in { padding-top: calc(var(--hero-img-h) * .5); padding-bottom: 40px; }
.hero__title {
  font-family: var(--f-head); font-stretch: 78%; font-weight: 800;
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4rem); line-height: 1.02; letter-spacing: -.005em;
  text-wrap: balance; text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero__title .accent { color: var(--red-td); }
.hero__lead { margin-top: 16px; max-width: 540px; font-size: clamp(.98rem, .92rem + .3vw, 1.12rem); line-height: 1.55; color: #e3e4e6; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__btns--center { justify-content: center; }
@media (max-width: 767px) {
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
}
@media (min-width: 768px) {
  .hero__bg { height: auto; bottom: 0; }
  .hero__bg picture, .hero__bg img { object-position: 72% 40%; }
  .hero__bg::after {
    background:
      linear-gradient(90deg, rgba(14,15,17,.94) 0%, rgba(14,15,17,.86) 28%, rgba(14,15,17,.45) 52%, rgba(14,15,17,.05) 72%),
      linear-gradient(0deg, rgba(14,15,17,.45) 0%, rgba(14,15,17,0) 30%);
  }
  .hero__in { display: flex; align-items: center; min-height: clamp(520px, 48vw, 740px); padding-block: 64px; }
  .hero__text { max-width: min(600px, 56%); }
}
@media (min-width: 1100px) { .hero__text { max-width: 640px; } }

/* boutons carrés (hero) */
.btn--sq { border-radius: 4px; text-transform: uppercase; letter-spacing: .05em; font-size: .88rem; min-height: 54px; padding: 14px 26px; }
.btn--sq.btn--red { box-shadow: 0 12px 30px -12px rgba(225,37,27,.7); }
.btn--outline { --bg: rgba(14,15,17,.25); --bd: rgba(255,255,255,.85); }
.btn--outline:hover { --bg: #fff; --fg: var(--ink); }

.stars { display: inline-flex; gap: 2px; color: #fbbc04; }
.stars svg { width: 16px; height: 16px; }
.stars--lg svg { width: 26px; height: 26px; }

/* ------------------------------------------------------------------ formulaire */
.form-card {
  container-type: inline-size;
  background: #fff; color: var(--text); border-radius: var(--r-lg);
  padding: clamp(20px, 4vw, 32px); border: 1px solid var(--line);
  box-shadow: 0 30px 80px -40px rgba(14,15,17,.35);
}
.form-card--dark {
  background: rgba(22, 24, 27, .86); color: #fff; border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.7);
}
.form-card__title { font-family: var(--f-head); font-stretch: 112%; font-weight: 800; font-size: clamp(1.25rem, 1.1rem + .8vw, 1.55rem); line-height: 1.2; }
.form-card__sub { margin-top: 6px; font-size: .92rem; color: var(--muted); }
.form-card--dark .form-card__sub { color: var(--muted-d); }
.qform { margin-top: 20px; }
.qform__grid { display: grid; gap: 14px; }
@container (min-width: 440px) {
  .qform__grid { grid-template-columns: 1fr 1fr; }
  .field--full { grid-column: 1 / -1; }
}
.field { display: grid; gap: 6px; min-width: 0; }
.field label { font-size: .84rem; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 48px; padding: 11px 14px; font-size: 16px;
  border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 92px; }
.form-card--dark .field input, .form-card--dark .field textarea, .form-card--dark .field select {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #fff;
}
.form-card--dark ::placeholder { color: #8d9197; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(225,37,27,.18); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--red); }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 42px; cursor: pointer; }
.select .ic { position: absolute; right: 14px; top: 50%; translate: 0 -50%; width: 18px; height: 18px; pointer-events: none; opacity: .7; }
.form-card--dark option { color: var(--text); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0 18px; font-size: .84rem; line-height: 1.45; color: var(--muted); cursor: pointer; }
.form-card--dark .consent { color: var(--muted-d); }
.consent input { width: 20px; height: 20px; flex: none; margin-top: 1px; accent-color: var(--red); }
.consent a { color: inherit; }
.consent.is-invalid { color: var(--red-t); }
.form-card--dark .consent.is-invalid { color: var(--red-td); }
.qform__legal { margin-top: 12px; font-size: .74rem; line-height: 1.45; color: var(--muted); overflow-wrap: anywhere; }
.form-card--dark .qform__legal { color: #8d9197; }
.qform__error { margin-top: 12px; font-size: .88rem; font-weight: 700; color: var(--red-t); }
.form-card--dark .qform__error { color: var(--red-td); }

/* ------------------------------------------------------------------ split */
.split { display: grid; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split > * { min-width: 0; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-right .split__media { order: 2; }
  .split--top { align-items: start; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); }
  .split--map { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
  .split__side { position: sticky; top: calc(var(--hdr-h) + 20px); }
}
.split__text > p + p { margin-top: 1em; }
.split__text .btn { margin-top: 26px; }
.split__side { display: grid; gap: 24px; }
.page-home .split--media-right { align-items: start; }

.frame { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink-3); }
.frame img { width: 100%; }
.frame--glow { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 40px 90px -40px rgba(225,37,27,.55); }
.frame__badge {
  position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px; background: rgba(14,15,17,.82); color: #fff;
  font-weight: 700; font-size: .86rem; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  max-width: calc(100% - 32px);
}
.frame__badge .ic { width: 17px; height: 17px; color: var(--red-td); }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badges li {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line); font-weight: 700; font-size: .88rem;
}
.badges .ic { width: 18px; height: 18px; color: var(--red-t); }

.checks { display: grid; gap: 10px; margin-top: 20px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.checks .ic { width: 22px; height: 22px; padding: 3px; border-radius: 50%; background: var(--red); color: #fff; stroke-width: 2.6; margin-top: 1px; }

.feat { display: grid; gap: 16px; margin: 24px 0 4px; }
.feat li { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: var(--r); background: rgba(255,255,255,.04); border: 1px solid var(--line-d); }
.feat .ic { width: 42px; height: 42px; padding: 10px; border-radius: 12px; background: rgba(225,37,27,.14); color: var(--red-td); }
.feat strong { display: block; font-family: var(--f-head); font-stretch: 108%; }
.feat span { display: block; color: var(--muted-d); font-size: .94rem; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chips a, .chips span {
  display: inline-flex; align-items: center; min-height: 38px; padding: 7px 14px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: .88rem; font-weight: 600; text-decoration: none;
  transition: background .2s;
}
.chips a:hover { background: var(--red); }
.chips--light a, .chips--light span { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.chips--light a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ------------------------------------------------------------------ chiffres */
.stats { background: var(--ink); color: #fff; border-top: 3px solid var(--red); }
.stats__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat { padding: 28px 12px; text-align: center; border-right: 1px solid var(--line-d); border-bottom: 1px solid var(--line-d); }
.stat:nth-child(2n) { border-right: 0; }
.stat:nth-child(n+3) { border-bottom: 0; }
@media (min-width: 900px) {
  .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat { border-bottom: 0; padding: 40px 12px; }
  .stat:nth-child(2n) { border-right: 1px solid var(--line-d); }
  .stat:last-child { border-right: 0; }
}
.stat__num { font-family: var(--f-head); font-stretch: 115%; font-weight: 900; font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.3rem); line-height: 1; }
.stat__num span:not([data-count]) { color: var(--red-td); font-size: .55em; margin-left: 2px; }
.stat__lbl { margin-top: 8px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-d); }

/* ------------------------------------------------------------------ cartes services */
.svc-grid { display: grid; gap: 18px; }
@media (min-width: 600px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .svc-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; } }
.svc-card { min-width: 0; }
.svc-card__link {
  display: flex; flex-direction: column; height: 100%; text-decoration: none; background: #fff;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.svc-card__link:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(14,15,17,.35); border-color: transparent; }
.svc-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-3); }
.svc-card__media picture, .svc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__media img { transition: transform .6s var(--ease); }
.svc-card__link:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__body { position: relative; display: flex; flex-direction: column; flex: 1; padding: 34px 22px 22px; }
.svc-card__icon {
  position: absolute; top: -26px; left: 22px; display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: var(--red); color: #fff; box-shadow: var(--glow);
}
.svc-card__icon .ic { width: 26px; height: 26px; }
.svc-card__text { margin-top: 8px; color: var(--muted); font-size: .95rem; flex: 1; }
.svc-card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 800; font-size: .9rem; color: var(--red-t); }
.svc-card__more .ic { width: 16px; height: 16px; transition: transform .25s; }
.svc-card__link:hover .svc-card__more .ic { transform: translateX(4px); }
@media (max-width: 599px) {
  .svc-grid { gap: 12px; }
  .svc-card__link { position: relative; flex-direction: row; }
  .svc-card__media { aspect-ratio: auto; width: 34%; flex: none; }
  .svc-card__body { position: static; padding: 16px 16px 16px; }
  .svc-card__icon { top: 8px; left: 8px; width: 36px; height: 36px; border-radius: 10px; }
  .svc-card__icon .ic { width: 19px; height: 19px; }
  .svc-card__title { font-size: 1.05rem; }
  .svc-card__text { font-size: .88rem; line-height: 1.5; margin-top: 4px; }
  .svc-card__more { margin-top: 8px; font-size: .84rem; }
}

/* ------------------------------------------------------------------ carte zone */
.zmap { margin: 0; }
.zmap svg { width: 100%; height: auto; color: var(--ink); overflow: visible; }
.zmap figcaption { margin-top: 10px; font-size: .8rem; color: var(--muted); text-align: center; }
.section--dark .zmap svg { color: #fff; }
.zmap__ring { font: 700 2.6px var(--f-body); fill: var(--red-t); letter-spacing: .1px; }
.zmap__dept { font: 800 3px var(--f-head); font-stretch: 115%; fill: currentColor; opacity: .22; letter-spacing: .4px; }
.zmap__ray { stroke: currentColor; stroke-opacity: .14; stroke-width: .25; stroke-dasharray: .8 .8; }
.zmap__dot { fill: var(--ink); stroke: #fff; stroke-width: .5; transition: fill .2s, r .2s; }
.section--dark .zmap__dot { fill: #fff; stroke: var(--ink); }
.zmap__lbl { font: 700 3.3px var(--f-body); fill: currentColor; paint-order: stroke; stroke: var(--white); stroke-width: .9px; stroke-linejoin: round; }
.section--paper .zmap__lbl { stroke: var(--paper); }
.section--dark .zmap__lbl { stroke: var(--ink); }
.zmap__pt:hover .zmap__dot, .zmap__pt:focus .zmap__dot, .zmap__pt.is-active .zmap__dot { fill: var(--red); r: 2.2; }
.zmap__pt:hover .zmap__lbl, .zmap__pt.is-active .zmap__lbl { fill: var(--red-t); }
.zmap__base { font: 900 3.8px var(--f-head); font-stretch: 115%; fill: var(--red-t); letter-spacing: .3px; paint-order: stroke; stroke: var(--white); stroke-width: .9px; }
.section--paper .zmap__base { stroke: var(--paper); }
.zmap__pulse { fill: var(--red); opacity: .35; transform-origin: center; transform-box: fill-box; animation: pulse 2.4s ease-out infinite; }
@media (max-width: 599px) { .zmap__lbl { font-size: 3.9px; } .zmap__dot { r: 1.9; } }
@keyframes pulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(2.4); opacity: 0; } }

/* ------------------------------------------------------------------ bloc zone d'intervention */
.zone { display: grid; gap: 24px; }
.zone > * { min-width: 0; }
.zone__head .sec-head { margin-bottom: 14px; }
.zone__text { color: var(--muted); }
.zone__map { margin-inline: -6px; }
.zperks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.zperks li {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 8px; text-align: center;
  padding: 14px 6px; border-radius: var(--r); background: var(--paper); border: 1px solid var(--line);
  font-weight: 700; font-size: .8rem; line-height: 1.25; color: var(--ink);
}
.section--paper .zperks li { background: #fff; }
.zperks .ic { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--red); color: #fff; }
.zone__label { margin: 24px 0 10px; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.zlist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.zlist a {
  display: flex; align-items: center; gap: 10px; height: 100%; min-height: 56px; padding: 9px 10px;
  border-radius: 12px; border: 1px solid var(--line); background: #fff; text-decoration: none;
  transition: border-color .2s, transform .2s var(--ease);
}
.zlist a:hover { border-color: var(--red); transform: translateY(-2px); }
.zlist__n { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; font-size: .78rem; font-weight: 800; }
.zlist__txt { display: flex; flex-direction: column; min-width: 0; line-height: 1.2; }
.zlist__txt strong { font-size: .9rem; color: var(--ink); overflow-wrap: anywhere; }
.zlist__txt small { margin-top: 2px; font-size: .74rem; color: var(--muted); }
.zone__cta { margin-top: 22px; }
@media (max-width: 599px) { .zone__cta .btn { width: 100%; } }
@media (min-width: 900px) {
  .zone { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-areas: "head map" "body map"; column-gap: clamp(40px, 5vw, 72px); row-gap: 0; align-items: start; }
  .zone__head { grid-area: head; }
  .zone__map { grid-area: map; align-self: center; margin: 0; }
  .zone__body { grid-area: body; margin-top: 28px; }
  .zlist__n { display: none; }
}

/* carte numérotée : sur mobile, pastilles numérotées à la place des noms */
.zmap__num { display: none; }
.zmap__num circle { fill: var(--ink); stroke: #fff; stroke-width: .7; }
.zmap__num text { font: 800 4px var(--f-body); fill: #fff; }
.zmap__pt:hover .zmap__num circle, .zmap__pt:focus .zmap__num circle { fill: var(--red); }
@media (max-width: 899px) {
  .zmap--num .zmap__lbl, .zmap--num .zmap__dot { display: none; }
  .zmap--num .zmap__num { display: inline; }
  .zmap--num .zmap__base { font-size: 4.6px; }
  .zmap--num .zmap__ring { font-size: 3.2px; }
  .zmap--num .zmap__dept { font-size: 3.6px; opacity: .3; }
}

/* ------------------------------------------------------------------ avant / après */
.ba-wrap { max-width: 1000px; margin-inline: auto; }
.ba {
  position: relative; aspect-ratio: 3 / 2; border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink-3); user-select: none; -webkit-user-select: none; touch-action: pan-y; cursor: ew-resize;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 40px 90px -40px rgba(0,0,0,.8);
}
.ba__img { position: absolute; inset: 0; }
.ba__img picture, .ba__img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__img--before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__tag {
  position: absolute; top: 14px; padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; background: rgba(14,15,17,.78); color: #fff; pointer-events: none;
}
.ba__tag--l { left: 14px; }
.ba__tag--r { right: 14px; background: var(--red); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: #fff; pointer-events: none; box-shadow: 0 0 20px rgba(0,0,0,.4); }
.ba__handle > span {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%; display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: #fff; box-shadow: var(--glow), 0 0 0 4px rgba(255,255,255,.9);
}
.ba__chev { width: 18px; height: 18px; stroke-width: 2.6; }
.ba__chev--l { rotate: 90deg; margin-right: -3px; }
.ba__chev--r { rotate: -90deg; margin-left: -3px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; pointer-events: none; }
.ba:focus-within { outline: 3px solid var(--red-td); outline-offset: 4px; }

.pair-row { display: grid; gap: 24px; margin-top: 28px; }
@media (min-width: 900px) { .pair-row { grid-template-columns: 1fr 1fr; } }
.pair-single { max-width: 1000px; margin-inline: auto; }
.pair-row .pair__item { aspect-ratio: 1; }
.pair-row .pair__item picture, .pair-row .pair__item img { width: 100%; height: 100%; object-fit: cover; }
.pair { margin: 0; }
.pair__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pair__item { position: relative; border-radius: var(--r); overflow: hidden; background: var(--ink-3); }
.pair__item img { width: 100%; }
.pair__tag { position: absolute; top: 10px; left: 10px; z-index: 1; padding: 5px 10px; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: rgba(14,15,17,.78); color: #fff; }
.pair__tag--after { background: var(--red); }
.pair figcaption, .single figcaption { margin-top: 12px; font-size: .9rem; color: var(--muted); }
.section--dark .pair figcaption, .section--dark .single figcaption { color: var(--muted-d); }
.single { max-width: 1000px; margin: 28px auto 0; }

/* ------------------------------------------------------------------ pourquoi / étapes / cartes */
.why-grid { display: grid; gap: 18px; }
@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.why { padding: 28px 24px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.section--paper .why { background: #fff; }
.why:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(14,15,17,.3); }
.why > .ic { width: 48px; height: 48px; padding: 11px; border-radius: 14px; background: rgba(225,37,27,.1); color: var(--red-t); margin-bottom: 18px; }
.why p { margin-top: 8px; color: var(--muted); font-size: .95rem; }

.steps { display: grid; gap: 18px; counter-reset: s; }
@media (min-width: 600px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.step { position: relative; padding: 26px 24px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); overflow: hidden; }
.step__n { display: block; font-family: var(--f-head); font-stretch: 120%; font-weight: 900; font-size: 2.6rem; line-height: 1; color: var(--red); margin-bottom: 14px; }
.step p { margin-top: 8px; color: var(--muted); font-size: .95rem; }
.step::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--red), transparent); }

.cards3 { display: grid; gap: 18px; }
@media (min-width: 900px) { .cards3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card { padding: 28px 24px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.card p { margin-top: 10px; color: var(--muted); }
.card__n { display: inline-block; font-family: var(--f-head); font-weight: 900; font-stretch: 120%; color: var(--red); font-size: 1rem; margin-bottom: 10px; letter-spacing: .05em; }
.card--dark { background: rgba(255,255,255,.04); border-color: var(--line-d); }
.card--dark h3 { color: #fff; }
.card--dark h3::before { content: ""; display: block; width: 32px; height: 3px; background: var(--red); margin-bottom: 14px; border-radius: 2px; }

.callout { margin-top: 28px; padding: 24px; border-radius: var(--r-lg); background: var(--paper); border-left: 4px solid var(--red); }
.callout__t { font-family: var(--f-head); font-stretch: 108%; font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.callout .checks { margin-top: 14px; }

.info-card { padding: 24px; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); }
.info-card__t { display: flex; align-items: center; gap: 8px; font-family: var(--f-head); font-weight: 800; font-stretch: 108%; color: var(--ink); margin-bottom: 6px; }
.info-card__t .ic { color: var(--red-t); }
.info-card .chips { margin-top: 12px; }

.contact-ways { display: grid; gap: 10px; margin-top: 24px; }
.contact-ways { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.contact-ways a { display: flex; gap: 12px; align-items: center; height: 100%; padding: 14px; border-radius: var(--r); border: 1px solid var(--line); text-decoration: none; transition: border-color .2s, background .2s; min-width: 0; }
.contact-ways a:hover { border-color: var(--red); background: var(--paper); }
.contact-ways .ic { width: 40px; height: 40px; padding: 10px; border-radius: 12px; background: var(--ink); color: #fff; }
.contact-ways span { min-width: 0; font-size: .86rem; color: var(--muted); overflow-wrap: anywhere; }
.contact-ways strong { display: block; color: var(--ink); font-size: .95rem; }

/* ------------------------------------------------------------------ avis */
.reviews__grid { display: grid; gap: 20px; max-width: 1000px; margin-inline: auto; }
@media (min-width: 900px) { .reviews__grid { grid-template-columns: minmax(0, .42fr) minmax(0, 1fr); align-items: stretch; } }
.rating { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 32px 24px; border-radius: var(--r-lg); background: var(--ink); color: #fff; text-align: center; }
.rating__score { font-family: var(--f-head); font-stretch: 120%; font-weight: 900; font-size: 4rem; line-height: 1; }
.rating__src { color: var(--muted-d); font-size: .92rem; }
.rating .btn { margin-top: 8px; --bg: var(--red); }
.review { position: relative; margin: 0; padding: clamp(24px, 4vw, 36px); border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); }
.review::before { content: "“"; position: absolute; right: 22px; top: -8px; font-family: Georgia, serif; font-size: 7rem; line-height: 1; color: var(--red); opacity: .18; }
.review blockquote { margin-top: 14px; font-size: 1.04rem; color: var(--text); }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review__avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; font-family: var(--f-head); flex: none; }
.review small { display: block; color: var(--muted); font-size: .84rem; }

/* ------------------------------------------------------------------ garanties */
.trust-grid { display: grid; gap: 18px; }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.trust { padding: 26px 24px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.trust > .ic { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--ink); color: #fff; margin-bottom: 14px; }
.trust__t { font-family: var(--f-head); font-stretch: 108%; font-weight: 800; color: var(--ink); font-size: 1.08rem; }
.trust p:not(.trust__t) { margin-top: 6px; color: var(--muted); font-size: .94rem; }

/* ------------------------------------------------------------------ FAQ */
.faq { display: grid; gap: 12px; }
.faq__item { border-radius: var(--r); background: var(--paper); border: 1px solid var(--line); overflow: hidden; }
.section--paper .faq__item { background: #fff; }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; cursor: pointer; list-style: none;
  font-family: var(--f-head); font-stretch: 106%; font-weight: 700; font-size: 1.04rem; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .ic { flex: none; width: 30px; height: 30px; padding: 6px; border-radius: 50%; background: var(--ink); color: #fff; transition: transform .3s var(--ease), background .2s; }
.faq__item[open] summary .ic { transform: rotate(180deg); background: var(--red); }
.faq__a { padding: 0 20px 20px; color: var(--muted); }

/* ------------------------------------------------------------------ zones */
.zones-grid { display: grid; gap: 18px; }
@media (min-width: 900px) { .zones-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.zone-col { padding: 28px 24px; border-radius: var(--r-lg); background: rgba(255,255,255,.04); border: 1px solid var(--line-d); }
.zone-col__t { display: flex; align-items: center; gap: 8px; font-family: var(--f-head); font-stretch: 110%; font-weight: 800; font-size: 1.2rem; color: #fff !important; }
.zone-col__t .ic { color: var(--red-td); }
.zone-col__main { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); gap: 6px 16px; margin: 16px 0; }
.zone-col__main a { display: inline-flex; min-height: 34px; align-items: center; color: #fff; font-weight: 700; text-decoration: none; border-bottom: 1px solid transparent; }
.zone-col__main a::before { content: "›"; color: var(--red-td); margin-right: 8px; font-weight: 900; }
.zone-col__main a:hover { color: var(--red-td); }
.zone-col__towns { font-size: .92rem; line-height: 1.8; }

.city-grid { display: grid; gap: 14px; }
@media (min-width: 600px) { .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.city-card {
  position: relative; display: grid; gap: 2px; padding: 20px 56px 20px 22px; border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--line); text-decoration: none; transition: transform .3s var(--ease), border-color .2s, box-shadow .3s;
}
.city-card:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: 0 20px 40px -26px rgba(14,15,17,.35); }
.city-card__km { font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red-t); }
.city-card__n { font-family: var(--f-head); font-stretch: 110%; font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.city-card__d { font-size: .88rem; color: var(--muted); }
.city-card > .ic { position: absolute; right: 20px; top: 50%; translate: 0 -50%; color: var(--red-t); }

.gallery { display: grid; gap: 16px; }
@media (min-width: 700px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery figure { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 10; background: var(--ink-3); }
.gallery picture, .gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 12px; border-radius: 999px; background: rgba(14,15,17,.8); color: #fff !important; font-size: .85rem; font-weight: 700; }

.facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 700px) { .facts { grid-template-columns: 1fr 1fr; } }
.facts div { background: #fff; padding: 16px 20px; min-width: 0; }
.facts dt { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin-top: 2px; font-weight: 700; color: var(--ink); overflow-wrap: anywhere; }

/* ------------------------------------------------------------------ page hero */
.phero { position: relative; isolation: isolate; background: var(--ink); color: #fff; overflow: hidden; }
.phero__bg { position: absolute; inset: 0; z-index: -2; }
.phero__bg picture, .phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.phero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(14,15,17,.95) 10%, rgba(14,15,17,.78) 60%, rgba(14,15,17,.6)); }
.phero--plain::after {
  background:
    radial-gradient(70% 90% at 100% 0%, rgba(225,37,27,.22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 18px);
}
.phero__in { padding-block: clamp(36px, 6vw, 80px) clamp(44px, 7vw, 96px); }
.phero__title { font-family: var(--f-head); font-stretch: 115%; font-weight: 900; font-size: clamp(1.95rem, 1.2rem + 3.6vw, 3.5rem); line-height: 1.05; letter-spacing: -.02em; max-width: 900px; text-wrap: balance; }
.phero__lead { margin-top: 18px; max-width: 700px; color: #cfd2d6; font-size: clamp(1rem, .95rem + .3vw, 1.15rem); }
.phero--legal .phero__in { padding-block: 32px 44px; }

.crumbs { margin-bottom: 18px; font-size: .85rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 4px 0; list-style: none; padding: 0; }
.crumbs li { display: inline-flex; align-items: center; color: #b9bcc0; }
.crumbs li + li::before { content: "/"; margin: 0 8px; opacity: .5; }
.crumbs a { color: #fff; text-decoration: none; }
.crumbs a:hover { color: var(--red-td); }

/* ------------------------------------------------------------------ contact */
.contact-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: start; } }
.contact-info { display: grid; gap: 12px; }
.contact-big { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); text-decoration: none; min-width: 0; transition: border-color .2s; }
a.contact-big:hover { border-color: var(--red); }
.contact-big > .ic { width: 48px; height: 48px; padding: 12px; border-radius: 14px; background: var(--red); color: #fff; }
.contact-big span { min-width: 0; }
.contact-big small { display: block; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-big strong { display: block; font-family: var(--f-head); font-stretch: 106%; font-size: 1.1rem; color: var(--ink); line-height: 1.3; }
.contact-big strong.break { font-size: clamp(.92rem, .7rem + 1.1vw, 1.1rem); font-stretch: 100%; }

/* ------------------------------------------------------------------ messages */
.msg { min-height: 50vh; display: grid; align-items: center; }
.msg__icon { display: inline-grid; place-items: center; width: 76px; height: 76px; border-radius: 50%; background: var(--red); color: #fff; margin-bottom: 22px; box-shadow: var(--glow); }
.msg__icon .ic { width: 38px; height: 38px; stroke-width: 2.4; }
.msg__code { font-family: var(--f-head); font-stretch: 125%; font-weight: 900; font-size: clamp(5rem, 3rem + 10vw, 9rem); line-height: 1; color: var(--red); }
.msg .sec-lead { margin-inline: auto; max-width: 560px; }

/* ------------------------------------------------------------------ légal */
.legal { max-width: 860px; }
.legal h2 { font-family: var(--f-head); font-stretch: 110%; font-weight: 800; font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem); color: var(--ink); margin: 2.2em 0 .7em; }
.legal h2:first-of-type { margin-top: 1.4em; }
.legal ul { padding-left: 1.2em; display: grid; gap: .45em; margin-top: .6em; }
.legal li::marker { color: var(--red); }
.legal p + ul, .legal ul + p { margin-top: 1em; }
.legal a { overflow-wrap: anywhere; }

/* ------------------------------------------------------------------ CTA final */
.cta-final { position: relative; background: linear-gradient(120deg, var(--red-2), var(--red) 55%, #f0453a); color: #fff; overflow: hidden; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 22px); pointer-events: none; }
.cta-final__in { position: relative; display: grid; gap: 24px; padding-block: clamp(40px, 6vw, 72px); }
@media (min-width: 1000px) { .cta-final__in { grid-template-columns: 1fr auto; align-items: center; gap: 48px; } }
.cta-final .kicker { color: #fff; opacity: .9; }
.cta-final__title { font-family: var(--f-head); font-stretch: 115%; font-weight: 900; font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.6rem); line-height: 1.1; text-wrap: balance; }
.cta-final__text { margin-top: 10px; max-width: 620px; color: rgba(255,255,255,.9); }
.cta-final__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-final .btn--red { --bg: var(--ink); box-shadow: 0 16px 40px -16px rgba(0,0,0,.6); }
.cta-final .btn--red:hover { --bg: #000; }
@media (max-width: 479px) { .cta-final__btns .btn { width: 100%; } }

/* ------------------------------------------------------------------ footer */
.ftr { background: #0a0b0c; color: #b9bcc0; font-size: .93rem; padding-top: clamp(48px, 7vw, 80px); }
.ftr__grid { display: grid; gap: 36px; }
@media (min-width: 700px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1.1fr 1fr; gap: 44px; } }
.ftr__logo img { width: 220px; height: auto; margin-bottom: 18px; }
.ftr__contact { display: grid; gap: 10px; margin-top: 20px; }
.ftr__contact li { display: flex; gap: 10px; align-items: flex-start; min-width: 0; }
.ftr__contact .ic { width: 18px; height: 18px; color: var(--red-td); margin-top: 3px; }
.ftr__contact a { color: #fff; text-decoration: none; overflow-wrap: anywhere; }
.ftr__social { display: flex; gap: 10px; margin-top: 20px; }
.ftr__social a, .social-big a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.07); color: #fff; transition: background .2s; }
.ftr__social a:hover, .social-big a:hover { background: var(--red); }
.ftr__social svg { width: 20px; height: 20px; }
.social-big { display: flex; justify-content: center; gap: 16px; }
.social-big a { width: 64px; height: 64px; background: var(--ink); }
.social-big svg { width: 28px; height: 28px; }
.ftr__h { font-family: var(--f-head); font-stretch: 112%; font-weight: 800; color: #fff; font-size: 1.02rem; margin-bottom: 14px; }
.ftr ul { list-style: none; padding: 0; }
.ftr__col ul { display: grid; gap: 4px; margin-bottom: 20px; }
@media (max-width: 699px) {
  .ftr__col ul { grid-template-columns: 1fr 1fr; gap: 0 16px; font-size: .88rem; }
  .ftr__col a:not(.btn) { min-height: 38px; }
}
.ftr__col a:not(.btn) { display: inline-flex; min-height: 32px; align-items: center; color: #b9bcc0; text-decoration: none; transition: color .2s; }
.ftr__col a:not(.btn):hover { color: #fff; }
.ftr__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 44px; padding-block: 22px; border-top: 1px solid var(--line-d); font-size: .84rem; color: #8d9197; }
.ftr__bottom a { color: #b9bcc0; }

/* ------------------------------------------------------------------ barre mobile */
.mbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: 1fr 1.25fr; gap: 8px;
  padding: 8px var(--gutter) calc(8px + env(safe-area-inset-bottom));
  background: rgba(14,15,17,.96); border-top: 1px solid var(--line-d);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .3s var(--ease);
}
.mbar.is-hidden { transform: translateY(110%); }
.mbar__btn { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 12px; font-family: var(--f-head); font-stretch: 108%; font-weight: 800; text-decoration: none; color: #fff; }
.mbar__btn .ic { width: 19px; height: 19px; }
.mbar__btn--call { background: rgba(255,255,255,.1); }
.mbar__btn--quote { background: var(--red); }
body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
@media (min-width: 900px) { .mbar { display: none; } body { padding-bottom: 0; } }

/* ------------------------------------------------------------------ animations */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
