/* ============================================================
   PACO Service — landing.css (refonte "2a")
   Feuille DÉDIÉE à la page d'accueil (index.html).
   /offre/ et /devis/ continuent d'utiliser style.css (inchangé).
   Direction validée client : fond crème, ZÉRO rouge, tout ardoise,
   pas de kickers majuscules. Polices auto-hébergées (RGPD).
   ============================================================ */

/* ---------- Polices auto-hébergées ---------- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('assets/fonts/dmsans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('assets/fonts/dmsans-latinext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF,
                 U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
                 U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Dancing Script — touche manuscrite élégante (signature uniquement) */
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('assets/fonts/dancingscript-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F,
                 U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* ---------- Tokens 2a ---------- */
:root {
  --cream:      #FCFAF7;
  --cream-alt:  #F4EFE8;
  --ardoise:    #2C3B4D;
  --ardoise-h:  #233040;
  --sable:      #E4C6AA;
  --sable-lt:   #E9CDB0;
  --text:       #2E2A26;
  --text-2:     #4a453f;
  --muted:      #6a645c;
  --line:       #eadfce;
  --line-2:     #efe7db;
  --line-3:     #ece5db;
  --white:      #fff;
  --cuivre:     #C25135;   /* accent cuivre — utilisé uniquement sur le bouton d'appel du header */
  --cuivre-h:   #a8412a;
  --font: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --wrap: 1280px;
  --pad: 72px;
  --header-h: 86px;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }

/* Évite les coupures de ligne moches (mots seuls type « de », « la ») */
h1, h2, h3, .l-hero__lead, .o-hero__lead, .l-close__lead, .devis-head p { text-wrap: balance; }
p, li { text-wrap: pretty; }

/* Focus clavier visible partout (accessibilité — non négociable) */
:focus-visible {
  outline: 3px solid var(--ardoise);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Sur fond sombre (hero, footer), focus clair pour rester visible */
.l-hero :focus-visible,
.l-footer :focus-visible { outline-color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

.l-container { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; }
.skip-link:focus {
  left: 16px; top: 8px; background: var(--ardoise); color: #fff;
  padding: 10px 16px; border-radius: 8px;
}

/* ---------- Boutons ---------- */
.l-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px; border-radius: 8px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
}
.l-btn--primary { background: var(--ardoise); color: #fff; }
.l-btn--primary:hover { background: var(--ardoise-h); color: #fff; }
.l-btn--lg { min-height: 54px; padding: 0 30px; font-size: 18px; }
.l-btn--ghost {
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
}
.l-btn--ghost:hover { background: rgba(255,255,255,.26); color: #fff; }
/* Bouton clair, posé sur un fond ardoise (carte de clôture) */
.l-btn--onDark { background: #fff; color: var(--ardoise); }
.l-btn--onDark:hover { background: var(--sable); color: var(--ardoise); }

/* ---------- Header (sticky, 3 colonnes) ---------- */
.l-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream); border-bottom: 1px solid var(--line);
}
.l-header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 24px; padding-block: 14px;
}
/* CTA header = numéro de téléphone dans l'encadré CUIVRE (accent) */
.l-header__cta { justify-self: end; background: var(--cuivre); }
.l-header__cta:hover { background: var(--cuivre-h); }
.l-header__cta svg { width: 18px; height: 18px; fill: currentColor; }
.l-logo { justify-self: start; display: inline-flex; align-items: center; }
.l-logo img { height: 56px; width: auto; }
.l-nav { justify-self: center; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.l-nav a {
  padding: 9px 15px; border-radius: 8px; color: var(--text-2);
  font-weight: 500; font-size: 16px; text-decoration: none;
  transition: background .18s ease, color .18s ease;
}
.l-nav a:hover { background: rgba(44,59,77,.07); color: var(--ardoise); }
.l-actions { justify-self: end; display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.l-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ardoise); font-weight: 700; font-size: 17px; text-decoration: none;
}
.l-phone svg { width: 17px; height: 17px; fill: var(--ardoise); }
.l-phone:hover { color: var(--ardoise-h); }

/* ---------- Hero ---------- */
.l-hero { position: relative; height: 720px; overflow: hidden; background: #8b9379; }
.l-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.l-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,34,30,.30) 0%, rgba(38,34,30,.10) 42%, rgba(38,34,30,.60) 100%);
}
.l-hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 72px;
}
.l-hero__title {
  max-width: 24ch; color: #fff; font-weight: 900; font-size: 70px;
  line-height: 1.04; letter-spacing: -0.03em; text-shadow: 0 2px 30px rgba(0,0,0,.30);
}
.l-hero__title .hl { color: var(--sable-lt); }
.l-hero__title { text-wrap: pretty; }   /* wrap naturel (évite la ligne « fiable, » seule) */
.l-hero__lead {
  margin-top: 24px; max-width: 44ch; color: rgba(255,255,255,.9);
  font-size: 19px; line-height: 1.55; text-shadow: 0 1px 18px rgba(0,0,0,.35);
}
.l-hero__actions { display: flex; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.l-hero__trust {
  margin-top: 28px; color: rgba(255,255,255,.82); font-size: 15px;
  font-weight: 500; letter-spacing: .02em; text-shadow: 0 1px 12px rgba(0,0,0,.35);
}

/* ---------- Bandeau réassurance (chevauche le hero) ---------- */
.l-band { position: relative; z-index: 5; max-width: 1040px; margin: -54px auto 0; padding: 0 24px; }
.l-band__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: #fff; border-radius: 16px;
  box-shadow: 0 26px 60px rgba(44,59,77,.16); overflow: hidden;
}
.l-band__item { padding: 24px 30px; display: flex; gap: 15px; align-items: center; }
.l-band__item svg {
  width: 26px; height: 26px; flex-shrink: 0; fill: none;
  stroke: var(--ardoise); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.l-band__t { font-weight: 700; color: var(--text); font-size: 17px; }
.l-band__s { color: var(--muted); font-size: 15px; }

/* ---------- Intro éditoriale ---------- */
.l-intro { padding-block: 78px 88px; }
.l-intro__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }
.l-intro h2 { color: var(--text); font-weight: 900; font-size: 46px; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 26px; }
.l-intro__text p { color: var(--text-2); font-size: 19px; max-width: 62ch; }
.l-intro__text p + p { margin-top: 20px; }
.l-intro__text strong { color: var(--ardoise); font-weight: 800; }
.l-intro .l-sign { margin-top: 24px; margin-bottom: 0; max-width: none; font-family: 'Dancing Script', cursive; font-weight: 700; font-size: 38px; color: var(--ardoise); line-height: 1; }
.l-sign__role { display: block; font-family: var(--font); font-weight: 500; font-size: 15px; letter-spacing: .04em; color: var(--muted); margin-top: 8px; }

/* Cadre décalé (portrait + images services) */
.l-framed { position: relative; }
.l-framed__deco { position: absolute; inset: 22px -22px -22px 22px; background: var(--sable); border-radius: 20px; opacity: .6; }
.l-framed img { position: relative; width: 100%; height: 520px; border-radius: 18px; object-fit: cover; background: var(--sable); }

/* ---------- Services (rangées alternées) ---------- */
.l-services { padding-block: 88px 44px; }
.l-services__h2 { color: var(--text); font-weight: 900; font-size: 42px; letter-spacing: -0.02em; margin-bottom: 12px; }
.l-services__intro { color: var(--muted); max-width: 56ch; font-size: 19px; margin-bottom: 64px; }
.l-row { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; margin-bottom: 76px; }
.l-row:last-child { margin-bottom: 0; }
.l-row__media { position: relative; }
.l-row__media .l-framed__deco { inset: 22px -22px -22px 22px; border-radius: 18px; opacity: .55; }
.l-row__media img { position: relative; width: 100%; height: 440px; border-radius: 16px; object-fit: cover; background: var(--sable); }
/* rangée inversée : image à droite, cadre décalé de l'autre côté */
.l-row--rev .l-row__media { order: 2; }
.l-row--rev .l-row__text { order: 1; }
.l-row--rev .l-row__media .l-framed__deco { inset: 22px 22px -22px -22px; }
/* numéros : sable foncé (bronze doré) pour rester chaud MAIS passer WCAG AA (4.76:1 sur crème) */
.l-num { font-weight: 900; font-size: 34px; color: #8C6A38; line-height: 1; letter-spacing: -0.02em; margin-bottom: 10px; }
.l-row h3 { color: var(--text); font-weight: 700; font-size: 30px; line-height: 1.15; margin-bottom: 14px; }
.l-row__text > p { color: var(--text-2); margin-bottom: 20px; max-width: 52ch; }
.l-examples { margin-top: 8px; color: var(--muted); font-size: 16px; }

/* ---------- Comment ça se passe (timeline) ---------- */
.l-how { padding-block: 96px; }
.l-how__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; }
.l-how__h2 { color: var(--text); font-weight: 900; font-size: 42px; line-height: 1.08; letter-spacing: -0.02em; }
.l-steps { display: flex; flex-direction: column; }
.l-step { display: flex; gap: 28px; }
.l-step__rail { display: flex; flex-direction: column; align-items: center; }
.l-step__num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--ardoise); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 19px; flex-shrink: 0;
}
.l-step__line { width: 2px; flex: 1; background: #c9b79a; margin: 8px 0; }
.l-step__body { padding-bottom: 40px; }
.l-step:last-child .l-step__body { padding-bottom: 0; }
.l-step h3 { color: var(--text); font-weight: 700; font-size: 23px; margin: 4px 0 8px; }
.l-step p { color: var(--muted); max-width: 52ch; }

/* ---------- Clôture : tarif + contact réunis (carte ardoise "vendeuse") ---------- */
.l-close { padding-block: 88px 110px; background: var(--cream-alt); }
.l-close__card {
  max-width: 920px; margin-inline: auto; background: var(--ardoise); color: #fff;
  border-radius: 20px; padding: clamp(2.5rem, 5vw, 4rem); text-align: center;
  box-shadow: 0 26px 60px rgba(44,59,77,.20);
}
.l-close__card h2 { color: #fff; font-weight: 900; font-size: 40px; letter-spacing: -0.02em; }
.l-close__lead { color: rgba(255,255,255,.82); max-width: 52ch; margin: 16px auto 0; }
.l-close__price { font-weight: 900; font-size: 64px; line-height: 1; letter-spacing: -0.03em; margin-top: 28px; color: #fff; }
.l-close__price span { display: block; font-size: 18px; font-weight: 500; letter-spacing: 0; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.l-close__incl { color: rgba(255,255,255,.7); font-size: 16px; margin-top: 14px; }
.l-close__actions { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 32px; }
.l-close__phone { color: #fff; font-weight: 700; font-size: 18px; text-decoration: none; }
.l-close__phone:hover { color: var(--sable); text-decoration: underline; }

/* ---------- Footer ---------- */
.l-footer { background: var(--ardoise); color: rgba(255,255,255,.75); }
.l-footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 48px;
  padding-block: 56px 32px; border-bottom: 1px solid rgba(255,255,255,.16);
}
.l-footer__brand img { height: 56px; width: auto; filter: brightness(0) invert(1); }
.l-footer__tagline { margin-top: 14px; color: var(--sable); font-weight: 600; font-size: 17px; }
.l-footer__brand p { margin-top: 10px; font-size: 16px; max-width: 34ch; }
.l-footer__title { margin-bottom: 12px; text-transform: uppercase; letter-spacing: .1em; font-size: 13px; font-weight: 700; color: var(--sable); }
.l-footer__col p { margin-bottom: 4px; font-size: 15px; }
.l-footer a { color: rgba(255,255,255,.85); text-decoration: none; }
.l-footer a:hover { color: #fff; text-decoration: underline; }
.l-footer__bottom {
  display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap;
  padding-block: 22px; font-size: 14px; color: rgba(255,255,255,.55);
}
.link-button {
  color: rgba(255,255,255,.7); font: inherit; text-decoration: underline;
  text-underline-offset: 2px; padding: 0;
}
.link-button:hover { color: #fff; }
.l-footer__links { display: inline-flex; gap: 18px; flex-wrap: wrap; }

/* Mention "Crédit d'impôt / CESU" cliquable (ouvre la modale d'explication) */
.l-taxlink {
  color: inherit; font: inherit; padding: 0; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-thickness: 1px; text-decoration-color: rgba(255,255,255,.45);
  transition: color .15s, text-decoration-color .15s;
}
.l-taxlink:hover { color: #fff; text-decoration-color: #fff; }

/* ---------- Bouton d'appel sticky (mobile) ---------- */
.l-sticky-call {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; display: none;
  align-items: center; justify-content: center; gap: 8px; min-height: 54px;
  background: var(--ardoise); color: #fff; font-weight: 700; font-size: 18px;
  text-decoration: none; border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.l-sticky-call svg { width: 20px; height: 20px; fill: #fff; }
.l-sticky-call:hover { background: var(--ardoise-h); color: #fff; }

/* ---------- Modales légales (reprises, teintées ardoise) ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: 16px; background: rgba(44,59,77,.6);
}
.modal[hidden] { display: none; }
.modal__panel {
  position: relative; background: #fff; border-radius: 16px; padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 42rem; max-height: 85vh; overflow-y: auto; box-shadow: 0 26px 60px rgba(44,59,77,.16);
}
.modal__panel h2 { margin-bottom: 20px; padding-right: 2.5rem; color: var(--text); font-weight: 900; }
.modal__panel h3 { margin: 20px 0 4px; font-size: 1.0625rem; color: var(--ardoise); font-weight: 700; }
.modal__panel p { color: var(--text-2); font-size: 16px; }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; font-size: 1.75rem;
  line-height: 1; color: var(--muted); border-radius: 8px;
}
.modal__close:hover { color: var(--ardoise); background: var(--cream-alt); }

/* ============================================================
   RESPONSIVE (breakpoint 768px) — public senior : pas de burger,
   on garde un bouton devis + le bouton d'appel sticky.
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad: 20px; }

  .l-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .l-nav { display: none; }
  .l-logo img { height: 48px; }
  .l-header__cta { padding: 0 16px; font-size: 15px; min-height: 44px; }

  /* Hero mobile : hauteur adaptative + voile renforcé (lisibilité) + boutons refinés */
  .l-hero { height: auto; }
  .l-hero__veil { background: linear-gradient(180deg, rgba(38,34,30,.55) 0%, rgba(38,34,30,.42) 45%, rgba(38,34,30,.72) 100%); }
  .l-hero__content { position: relative; padding: 64px 20px 58px; }
  .l-hero__title { font-size: 33px; }
  .l-hero__lead { font-size: 16px; margin-top: 16px; }
  .l-hero__actions { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; max-width: 300px; margin-top: 26px; }
  .l-hero__actions .l-btn { width: 100%; }
  .l-btn--lg { min-height: 50px; font-size: 16px; padding: 0 22px; }
  .l-hero__trust { margin-top: 22px; }

  .l-band { margin-top: -36px; }
  .l-band__grid { grid-template-columns: 1fr; }

  .l-intro { padding-block: 48px 56px; }
  .l-intro__grid { grid-template-columns: 1fr; gap: 22px; }
  /* Mobile : d'abord le titre, puis la photo, puis le texte (le contexte avant l'image) */
  .l-intro__text { display: contents; }
  .l-intro h2 { font-size: 32px; order: 1; margin-bottom: 0; }
  .l-intro__media { order: 2; }
  .l-intro__text p { order: 3; }
  .l-intro__text p + p { margin-top: 16px; }
  .l-intro .l-sign { order: 3; font-size: 34px; }
  .l-framed img { height: 340px; }
  .l-framed__deco { inset: 12px -12px -12px 12px; }

  .l-services { padding-block: 56px 8px; }
  .l-services__h2 { font-size: 32px; }
  .l-services__intro { margin-bottom: 40px; }
  .l-row { grid-template-columns: 1fr; gap: 22px; margin-bottom: 56px; }
  /* Mobile : d'abord le titre, puis la photo, puis le descriptif (le contexte avant l'image) */
  .l-row__text, .l-row--rev .l-row__text { display: contents; }
  .l-row h3 { order: 1; margin-bottom: 0; }
  .l-row__media, .l-row--rev .l-row__media { order: 2; }
  .l-row__text > p { order: 3; margin-bottom: 0; }
  .l-row__text > .l-examples { order: 4; margin-top: 0; }
  .l-row__media img { height: 300px; }
  .l-row__media .l-framed__deco,
  .l-row--rev .l-row__media .l-framed__deco { inset: 12px -12px -12px 12px; }
  .l-row h3 { font-size: 26px; }
  .l-num { font-size: 30px; }

  .l-how { padding-block: 56px; }
  .l-how__grid { grid-template-columns: 1fr; gap: 28px; }
  .l-how__h2 { font-size: 32px; }

  .l-close { padding-block: 56px 72px; }
  .l-close__card { padding: 32px 22px; }
  .l-close__card h2 { font-size: 28px; }
  .l-close__price { font-size: 48px; }
  .l-close__actions { gap: 16px; }

  .l-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .l-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PAGE /offre/ en direction 2a (crème / ardoise / sable, zéro rouge)
   Réutilise les tokens et le header/footer de la landing.
   ============================================================ */
.o-hero { padding-block: 72px 36px; text-align: center; }
.o-hero h1 {
  font-size: 48px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.08;
  color: var(--text); max-width: 20ch; margin: 0 auto;
}
.o-hero__lead { color: var(--muted); max-width: 54ch; margin: 20px auto 0; font-size: 19px; }

.o-deal { padding-block: 24px 48px; }
.o-deal__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  max-width: 1040px; margin-inline: auto;
}
.o-card {
  background: var(--ardoise); color: #fff;
  border-radius: 20px; padding: clamp(2rem, 4vw, 3rem); text-align: center;
  box-shadow: 0 26px 60px rgba(44,59,77,.20);
}

/* Aside "ce que PACO peut faire" */
.o-aside {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(1.75rem, 3vw, 2.25rem); box-shadow: 0 12px 34px rgba(44,59,77,.08);
}
.o-aside h2 { font-size: 22px; font-weight: 900; letter-spacing: -0.01em; color: var(--text); margin-bottom: 18px; }
.o-aside__list { display: grid; gap: 16px; }
.o-aside__list li {
  position: relative; padding-left: 1.9rem; color: var(--muted); font-size: 16px;
}
.o-aside__list li strong { color: var(--text); font-weight: 700; }
.o-aside__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--ardoise); font-weight: 700;
}

/* Bande réassurance (légère, filets) */
.o-reassure { padding-block: 8px 40px; }
.o-reassure__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1040px; margin-inline: auto;
}
.o-reassure__item { padding: 8px 20px; display: flex; gap: 14px; align-items: center; justify-content: center; }
.o-reassure__item svg {
  width: 24px; height: 24px; flex-shrink: 0; fill: none; stroke: var(--ardoise);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.o-reassure__t { font-weight: 700; color: var(--text); font-size: 16px; }
.o-reassure__s { color: var(--muted); font-size: 14px; }
.o-card__badge {
  display: inline-block; background: var(--sable); color: var(--ardoise);
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 14px; border-radius: 999px;
}
.o-card__amount { font-size: clamp(64px, 14vw, 96px); font-weight: 900; line-height: 1; letter-spacing: -0.04em; margin: 14px 0 0; color: #fff; }
.o-card__text { color: rgba(255,255,255,.85); max-width: 36ch; margin: 16px auto 0; }
.o-card__actions { display: flex; justify-content: center; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.o-card__phone { color: #fff; font-weight: 700; text-decoration: none; }
.o-card__phone:hover { color: var(--sable); text-decoration: underline; }
.o-card__terms { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 22px; }

.o-how { padding-block: 40px 80px; }
.o-how h2 { text-align: center; font-size: 32px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 44px; }
.o-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 900px; margin-inline: auto; }
.o-step { text-align: center; }
.o-step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 50%; background: var(--ardoise); color: #fff; font-weight: 900; font-size: 19px; margin-bottom: 16px;
}
.o-step h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.o-step p { color: var(--muted); font-size: 16px; margin-inline: auto; }
.o-back { text-align: center; padding-bottom: 64px; }
.o-back a { color: var(--ardoise); font-weight: 600; text-decoration: none; }
.o-back a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .o-hero { padding-block: 48px 24px; }
  .o-hero h1 { font-size: 34px; }
  .o-deal__grid { grid-template-columns: 1fr; gap: 28px; }
  .o-reassure__grid { grid-template-columns: 1fr; gap: 16px; }
  .o-steps { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   PAGE /devis/ en 2a — formulaire conservé, recoloré ardoise, simplifié
   (le JS cible .quote-form / .form-field / .form-consent — classes gardées)
   ============================================================ */
.devis-page { background: var(--cream); padding-block: clamp(36px, 6vw, 64px); }
.devis-back-top {
  display: inline-flex; align-items: center; gap: 6px; color: var(--ardoise);
  font-weight: 600; text-decoration: none;
}
.devis-back-top:hover { text-decoration: underline; }
.devis-head { max-width: 660px; margin: 20px auto clamp(22px, 4vw, 32px); text-align: center; }
.devis-head h1 { font-size: clamp(32px, 5vw, 44px); font-weight: 900; letter-spacing: -0.02em; color: var(--text); }
.devis-head p { color: var(--muted); margin-top: 12px; font-size: 18px; }

.quote-form {
  max-width: 660px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: 0 12px 34px rgba(44,59,77,.08);
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-field label { font-weight: 600; font-size: 16px; color: var(--text); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; font-size: 17px; background: #fff; color: var(--text);
  border: 1.5px solid #d8cfc2; border-radius: 10px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--ardoise); box-shadow: 0 0 0 3px rgba(44,59,77,.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 15px; color: var(--muted); margin-top: 2px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; margin: 18px 0 22px; }
.form-consent input { margin-top: 4px; width: 1.15rem; height: 1.15rem; flex-shrink: 0; accent-color: var(--ardoise); }
.form-consent label { font-size: 15px; color: var(--muted); }
.form-consent .link-button { color: var(--ardoise); }
.quote-form__submit { width: 100%; }
.quote-form__status { margin-top: 18px; padding: 16px; border-radius: 10px; font-weight: 600; }
.quote-form__status[data-state="success"] { background: #e8f1ea; color: #1f5132; }
.quote-form__status[data-state="error"] { background: #fbe8e3; color: #8f3520; }
.quote-form__status:focus { outline: none; }
.field-error { display: block; margin-top: 6px; color: #b23b21; font-size: 15px; font-weight: 600; }
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] { border-color: #b23b21; }
.quote-form.is-sent > *:not(.quote-form__status) { display: none; }
.quote-form.is-sent .quote-form__status { font-size: 19px; text-align: center; }
.devis-back { text-align: center; margin-top: 28px; }
.devis-back a { color: var(--ardoise); font-weight: 600; text-decoration: none; }
.devis-back a:hover { text-decoration: underline; }

@media (min-width: 620px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .quote-form__submit { width: auto; min-width: 260px; }
}
