/* =====================================================================
   LOUÉPART — feuille de style unique du site vitrine.
   Aucune dépendance externe : les polices sont celles du système et
   toutes les illustrations sont du SVG en ligne. C'est volontaire —
   un site qui ne charge rien depuis un tiers ne dépose aucun cookie
   et n'a besoin d'aucun bandeau de consentement.
   ===================================================================== */

/* ---------- Police de la marque ----------
   Archivo 700, celle du lockup officiel, auto-hébergée : le site ne
   charge rien depuis un domaine tiers et la CSP l'interdit de toute
   façon. Sous-ensemble latin uniquement (14 Ko). */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/archivo-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2013-2014, U+2018-201A, U+201C-201E, U+20AC;
}

/* ---------- Jetons de design ---------- */
:root {
  /* Palette dérivée du logo : encre #1a1918, ambre #c2601c, crème #f5f2ec */
  --ink:        #1a1918;
  --ink-soft:   #45413b;
  --ink-mute:   #6e6960;
  --paper:      #ffffff;
  --paper-2:    #f5f2ec;
  --paper-3:    #ebe6dd;
  --line:       #e2ddd3;
  --accent:     #c2601c;
  --accent-dk:  #a04d13;
  --accent-lt:  #f8ece0;
  --green:      #0f7b56;
  --green-lt:   #e8f6f0;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 2px rgba(26, 25, 24, .06), 0 2px 8px rgba(26, 25, 24, .04);
  --shadow-md:  0 4px 12px rgba(26, 25, 24, .07), 0 12px 32px rgba(26, 25, 24, .06);
  --shadow-lg:  0 12px 28px rgba(26, 25, 24, .10), 0 32px 64px rgba(26, 25, 24, .10);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;

  --wrap: 1140px;
  --gut: 24px;
}

/* ---------- Réinitialisation ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', var(--sans);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.021em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.15rem, 1.35rem + 3.1vw, 3.6rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.7rem, 1.25rem + 1.7vw, 2.5rem); letter-spacing: -.028em; }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }
a  { color: var(--accent-dk); text-decoration-thickness: 1px; text-underline-offset: 2px; }
img, svg { max-width: 100%; }
ul { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: .35em; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- En-tête ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.hdr.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 12px rgba(26,25,24,.05); }
.hdr__in { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: inline-flex; align-items: flex-end; gap: .45em; font-size: 1.16rem; text-decoration: none; color: var(--ink); }
.brand__mark { flex: none; display: block; height: 1.17em; width: auto; }
.brand__name { font: 700 1em/1 'Archivo', var(--sans); letter-spacing: -.02em; }
.ftr .brand__name { color: #f5f2ec; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink-soft); text-decoration: none; font-size: .95rem; font-weight: 500;
  padding: 8px 12px; border-radius: 9px;
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.hdr .btn { margin-left: 8px; }
.hdr__tel { font-weight: 600; color: var(--ink); white-space: nowrap; }

.burger {
  display: none; margin-left: auto; width: 42px; height: 42px;
  border: 1px solid var(--line); background: var(--paper); border-radius: 10px;
  align-items: center; justify-content: center; cursor: pointer;
}

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed; inset: 68px 0 auto 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px var(--gut) 20px; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .18s, transform .18s;
  }
  .nav[data-open="true"] { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 12px; font-size: 1.05rem; }
  .hdr .btn { margin: 10px 0 0; justify-content: center; }
  .hdr__tel { display: none; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 11px; border: 1px solid transparent;
  font: inherit; font-weight: 650; font-size: .98rem; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .12s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 1px 2px rgba(194,96,28,.3), 0 8px 20px rgba(194,96,28,.24); }
.btn--primary:hover { background: var(--accent-dk); }
.btn--ghost { background: var(--paper); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--ink-mute); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--lg { padding: 16px 28px; font-size: 1.03rem; }
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .55; cursor: progress; }

/* ---------- Sections ---------- */
section { padding: clamp(56px, 7vw, 104px) 0; }
.sec-head { max-width: 660px; margin-bottom: 44px; }
.sec-head p { font-size: 1.08rem; color: var(--ink-mute); margin-bottom: 0; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-dk); margin-bottom: 12px;
}
.band { background: var(--paper-2); border-block: 1px solid var(--line); }
.band--ink { background: var(--ink); border-color: #33302b; }
.band--ink h2, .band--ink h3 { color: #f5f2ec; }
.band--ink { color: #c9c2b6; }

/* ---------- Héros ---------- */
.hero { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(48px, 6vw, 88px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .u {
  background-image: linear-gradient(transparent 64%, rgba(194,96,28,.28) 64%);
  background-repeat: no-repeat;
}
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 34em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 26px; }

.pricetag {
  display: inline-flex; align-items: baseline; gap: 9px;
  background: var(--accent-lt); border: 1px solid #ecd3ba;
  color: var(--ink); border-radius: 999px; padding: 7px 16px 7px 14px;
  font-size: .95rem; font-weight: 600; margin-bottom: 20px;
}
.pricetag b { font-size: 1.22rem; font-weight: 800; letter-spacing: -.02em; }
.pricetag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; align-self: center; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 0; margin: 0; list-style: none; font-size: .93rem; }
.hero__trust li { display: flex; align-items: center; gap: 7px; color: var(--ink-soft); margin: 0; }
.hero__trust svg { color: var(--green); flex: none; }

.hero__art {
  /* Le bas du cadre est laissé libre : la vignette « suivi GPS » s'y pose
     sans recouvrir l'avant du fourgon. */
  position: relative; border-radius: var(--radius-lg); padding: 22px 22px 78px;
  background:
    radial-gradient(120% 110% at 82% 8%, #f6e3d0 0%, transparent 58%),
    linear-gradient(160deg, #faf8f4 0%, #efeae1 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.hero__art::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 60%, #000 20%, transparent 100%);
          mask-image: radial-gradient(80% 70% at 50% 60%, #000 20%, transparent 100%);
  opacity: .55;
}
.hero__art svg { position: relative; display: block; }
.hero__badge {
  position: absolute; right: 22px; bottom: 18px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 14px; box-shadow: var(--shadow-md); font-size: .86rem; font-weight: 600; color: var(--ink);
}
.hero__badge span { display: block; font-weight: 500; color: var(--ink-mute); font-size: .79rem; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(15,123,86,.45); animation: pulse 2.4s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 11px rgba(15,123,86,0); } 100% { box-shadow: 0 0 0 0 rgba(15,123,86,0); } }
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; padding: 14px 14px 74px; }
}

/* ---------- Bandeau de chiffres ---------- */
.statsband { background: var(--paper-2); border-block: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats > div { padding: 26px 24px 26px 0; }
.stats > div + div { border-left: 1px solid var(--line); padding-left: 24px; }
.stats b { display: block; color: var(--ink); font-size: 1.75rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.stats span { font-size: .9rem; color: var(--ink-mute); }
@media (max-width: 780px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats > div { padding: 20px 16px; border-top: 1px solid var(--line); }
  .stats > div:nth-child(-n+2) { border-top: 0; }
  .stats > div + div { border-left: 0; padding-left: 16px; }
  .stats > div:nth-child(2n) { border-left: 1px solid var(--line); }
  .stats b { font-size: 1.45rem; }
}

/* ---------- Grilles de cartes ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 940px) { .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 660px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card__ico {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent-lt); color: var(--accent-dk); margin-bottom: 16px;
}

/* ---------- Véhicules ---------- */
.veh { display: flex; flex-direction: column; overflow: hidden; padding: 0; transition: box-shadow .2s, transform .2s; }
.veh:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.veh__art { background: linear-gradient(165deg, #f7f9fb, #e8edf2); border-bottom: 1px solid var(--line); padding: 18px 18px 6px; }
.veh__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.veh__tag {
  align-self: flex-start; font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--green); background: var(--green-lt); border-radius: 999px; padding: 4px 10px; margin-bottom: 12px;
}
.veh__tag--soon { color: #8a6100; background: #fff5e0; }
.veh__specs { list-style: none; padding: 0; margin: 0 0 18px; font-size: .94rem; }
.veh__specs li { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 7px; }
.veh__specs svg { color: var(--ink-mute); flex: none; margin-top: 3px; }
.veh__price { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 6px; }
.veh__price b { font-size: 1.5rem; color: var(--ink); font-weight: 800; letter-spacing: -.03em; }
.veh__price span { font-size: .9rem; color: var(--ink-mute); }

/* ---------- Tarifs ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.plan { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.plan--best { border-color: var(--accent); box-shadow: var(--shadow-lg); padding-top: 34px; }
.plan__flag {
  position: absolute; top: -13px; left: 28px; background: var(--accent); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 7px;
}
.plan__name { font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.plan__amt { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 4px; }
.plan__amt b { font-size: 2.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.plan__amt span { color: var(--ink-mute); font-size: .95rem; }
.plan__note { font-size: .87rem; color: var(--ink-mute); margin-bottom: 20px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; font-size: .95rem; }
.plan li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 9px; }
.plan li svg { color: var(--green); flex: none; margin-top: 4px; }
.plan li.is-off { color: var(--ink-mute); }
.plan li.is-off svg { color: var(--ink-mute); opacity: .6; }

.fineprint { margin-top: 28px; font-size: .87rem; color: var(--ink-mute); }
.fineprint strong { color: var(--ink-soft); }

/* ---------- Étapes ---------- */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 52px; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: 0; left: 0; width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 1rem;
  color: var(--accent-dk); background: var(--accent-lt); border: 1px solid #ecd3ba;
}
.band--ink .step::before { background: rgba(194,96,28,.16); border-color: rgba(194,96,28,.4); color: #e78c3c; }
.step h3 { font-size: 1.05rem; }
.step p { font-size: .95rem; margin: 0; }
.band--ink .step p { color: #a39b90; }

/* ---------- Devis ---------- */
.quote__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 28px; align-items: start; }
@media (max-width: 940px) { .quote__grid { grid-template-columns: 1fr; } }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-md); }
.fset { border: 0; padding: 0; margin: 0 0 26px; }
.fset:last-of-type { margin-bottom: 20px; }
.fset__lg {
  padding: 0; margin: 0 0 16px; font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-mute);
}
.row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 620px) { .row, .row--3 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.row .field { margin-bottom: 0; }
.field > label { font-size: .89rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field .hint { font-size: .8rem; color: var(--ink-mute); margin-top: 6px; }
.req { color: var(--accent); }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], select, textarea {
  font: inherit; font-size: .97rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); width: 100%; transition: border-color .15s, box-shadow .15s;
}
input:hover, select:hover, textarea:hover { border-color: #c9c2b6; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(194,96,28,.14);
}
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: #d13c1f; background: #fff8f6; }
textarea { min-height: 108px; resize: vertical; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236e6960' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.err { font-size: .82rem; color: #c1341a; margin-top: 6px; display: none; }
.err.is-on { display: block; }

.checks { display: grid; gap: 10px; }
.check { display: flex; gap: 11px; align-items: flex-start; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; transition: border-color .15s, background-color .15s; }
.check:hover { border-color: #c9c2b6; background: var(--paper-2); }
.check input { margin: 3px 0 0; width: 17px; height: 17px; accent-color: var(--accent); flex: none; }
.check span { font-size: .93rem; }
.check span b { display: block; color: var(--ink); font-weight: 600; }
.check span i { font-style: normal; color: var(--ink-mute); font-size: .87rem; }
.check--rgpd { border-style: dashed; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formfoot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.formfoot .btn { flex: 1 1 220px; justify-content: center; }
.formfoot small { color: var(--ink-mute); font-size: .84rem; }

.alert { border-radius: 11px; padding: 15px 17px; font-size: .93rem; margin-bottom: 20px; display: none; }
.alert.is-on { display: block; }
.alert--ok { background: var(--green-lt); border: 1px solid #bce3d3; color: #0b5b40; }
.alert--ko { background: #fff3f0; border: 1px solid #ffcfc2; color: #a53314; }
.alert b { display: block; margin-bottom: 3px; color: inherit; }

/* ---------- Estimation ---------- */
.est { position: sticky; top: 88px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--paper); }
@media (max-width: 940px) { .est { position: static; } }
.est__head { background: var(--ink); color: #f5f2ec; padding: 20px 24px; }
.est__head h3 { color: #fff; font-size: 1.05rem; margin: 0; }
.est__head p { margin: 4px 0 0; font-size: .86rem; color: #a39b90; }
.est__body { padding: 22px 24px 24px; }
.est__empty { color: var(--ink-mute); font-size: .93rem; }
.est__line { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; font-size: .94rem; border-bottom: 1px dashed var(--line); }
.est__line span:last-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.est__line--sub { color: var(--ink-mute); font-size: .87rem; }
.est__total { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--ink); }
.est__total b { font-size: 1.9rem; font-weight: 800; color: var(--ink); letter-spacing: -.035em; }
.est__ttc { font-size: .86rem; color: var(--ink-mute); text-align: right; margin-top: 4px; }
.est__note { margin-top: 18px; padding: 13px 15px; background: var(--paper-2); border-radius: 10px; font-size: .84rem; color: var(--ink-mute); }
.est__note strong { color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative;
  font-weight: 650; color: var(--ink); font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--ink-mute); border-bottom: 2px solid var(--ink-mute);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(225deg); }
.faq summary:hover { color: var(--accent-dk); }
.faq .ans { padding: 0 40px 22px 0; font-size: .98rem; }
.faq .ans p:last-child { margin-bottom: 0; }

/* ---------- Appel final ---------- */
.cta {
  background: linear-gradient(150deg, #14120f 0%, #232019 55%, #3a2410 100%);
  border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); color: #b6c0cc; text-align: center;
}
.cta h2 { color: #f5f2ec; }
.cta p { max-width: 46ch; margin-inline: auto; font-size: 1.05rem; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* ---------- Pied de page ---------- */
.ftr { background: var(--ink); color: #a39b90; padding: 56px 0 28px; font-size: .93rem; }
.ftr a { color: #d6cfc4; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ftr__grid { grid-template-columns: 1fr; } }
.ftr h4 { color: #fff; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 14px; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 9px; }
.ftr .brand__name { color: #fff; }
.ftr__legal { margin-top: 42px; padding-top: 22px; border-top: 1px solid #33302b; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; font-size: .86rem; }

/* ---------- Pages légales ---------- */
.doc { max-width: 760px; padding-top: 48px; }
.doc h1 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem); margin-bottom: .2em; }
.doc .updated { color: var(--ink-mute); font-size: .9rem; margin-bottom: 40px; }
.doc h2 { font-size: 1.35rem; margin-top: 2.2em; }
.doc h3 { font-size: 1.05rem; margin-top: 1.8em; }
.doc dl { margin: 0 0 1.4em; }
.doc dt { font-weight: 650; color: var(--ink); margin-top: .8em; }
.doc dd { margin: 2px 0 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 0 0 1.6em; font-size: .95rem; }
.doc th, .doc td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc th { color: var(--ink); font-weight: 650; background: var(--paper-2); }
.todo { background: #fff8e6; border: 1px dashed #e0b84a; border-radius: 10px; padding: 14px 16px; font-size: .9rem; color: #7a5c10; }

/* ---------- Apparition au défilement ----------
   Le masquage est conditionne a la classe « js » posee par boot.js :
   si le script ne s'execute pas, rien n'est cache. */
.js .rise { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.js .rise.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .rise { opacity: 1; transform: none; transition: none; } }

/* ---------- Impression ---------- */
@media print {
  .hdr, .nav, .cta, .btn, .hero__art { display: none !important; }
  body { font-size: 12pt; color: #000; }
}

/* ---------- Villes de retrait (puces) ---------- */
.cities { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 6px; }
.cities li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px; font-size: .9rem; font-weight: 600;
  color: var(--ink); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.cities li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none;
}

/* ---------- L'offre : liste + carte de prix ---------- */
.offer__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 28px; align-items: start; }
@media (max-width: 900px) { .offer__grid { grid-template-columns: 1fr; } }

.offer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.offer__list > li {
  display: flex; gap: 16px; align-items: flex-start; margin: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-sm); font-size: .96rem;
}
.offer__list b { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: 2px; }
.offer__ico {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; background: var(--accent-lt); color: var(--accent-dk);
}

.pricecard {
  position: sticky; top: 88px;
  background: var(--paper); border: 2px solid var(--accent); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) { .pricecard { position: static; } }
.pricecard__head { padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.pricecard__label { font-size: .86rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-mute); }
.pricecard__amt { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }
.pricecard__amt b { font-size: 3rem; font-weight: 800; color: var(--ink); letter-spacing: -.045em; line-height: 1; }
.pricecard__amt span { color: var(--ink-mute); font-size: 1rem; }
.pricecard__ttc { display: block; margin-top: 6px; font-size: .88rem; color: var(--ink-mute); }
.pricecard ul { list-style: none; padding: 0; margin: 0 0 22px; font-size: .95rem; }
.pricecard li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.pricecard li svg { color: var(--green); flex: none; margin-top: 4px; }
.pricecard__call { margin: 12px 0 0; text-align: center; font-size: .92rem; color: var(--ink-mute); }
.pricecard__call a { color: var(--ink); font-weight: 700; text-decoration: none; }
.pricecard__call a:hover { color: var(--accent-dk); }

/* ---------- Variantes ---------- */
.steps--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps--3 { grid-template-columns: 1fr; } }

.cta--slim { margin-top: clamp(40px, 5vw, 64px); padding: clamp(28px, 4vw, 44px); }
.cta--slim h2 { margin-bottom: 4px; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.9rem); }
