/* ==========================================================================
   HP Couverture · landings Google Ads (Dordogne)
   Identité propre au projet : pierre blonde du Périgord, encre brou de noix,
   ocre de Sarlat. Newsreader (display + italiques d'accent) / Karla (texte).
   Aucun élément de charte repris d'un autre site de l'agence.
   ========================================================================== */

:root {
  --paper:      #F5F0E4;
  --paper-2:    #EDE5D4;
  --paper-3:    #E3D9C4;
  --white:      #FFFDF8;
  --ink:        #1B1714;
  --ink-2:      #2E2721;
  --ink-soft:   #4A4038;
  --muted:      #6E6055;
  --gold:       #B0812C;
  --gold-deep:  #8A621C;
  --gold-soft:  #E7D3A2;
  --brique:     #A33F22;
  --vert:       #4A6A48;
  --line:       rgba(27, 23, 20, .14);
  --line-soft:  rgba(27, 23, 20, .08);
  --line-light: rgba(245, 240, 228, .22);

  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans:  "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --shadow-card: 0 1px 2px rgba(27,23,20,.05), 0 12px 34px -18px rgba(27,23,20,.35);
  --shadow-lift: 0 2px 4px rgba(27,23,20,.06), 0 28px 60px -30px rgba(27,23,20,.45);
}

*, *::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;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
svg { flex: none; }

.wrap { width: min(100% - 44px, var(--wrap)); margin-inline: auto; }

/* ------------------------------------------------------------------ titres */

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.015em; text-wrap: balance; }

h1 {
  font-family: var(--sans);
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -.032em;
  font-weight: 700;
}
h1 em, .h2 em, .band-h em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.005em;
}

.h2 {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -.028em;
  font-weight: 700;
}

.lead {
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  color: var(--ink-soft);
  margin: 18px 0 0;
  max-width: 58ch;
}
.lead-light { color: rgba(245,240,228,.78); }

/* numéro de chapitre, composé au serif : l'accent typo du projet */
.chapno {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: .8;
  color: var(--gold);
  font-weight: 400;
  font-style: italic;
  display: block;
  margin-bottom: 14px;
}
.chapno-light { color: var(--gold-soft); }

.kicker {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
}
.kicker-light { color: var(--gold-soft); }

/* ------------------------------------------------------------------ boutons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: -.008em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn svg { width: 19px; height: 19px; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 28px; font-size: 1.03rem; }
.btn-sm { padding: 10px 16px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #000; }

.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 10px 26px -16px rgba(138,98,28,.9); }
.btn-gold:hover { background: var(--gold-deep); }

.btn-brique { background: var(--brique); color: #fff; }
.btn-brique:hover { background: #8B3319; }

.btn-line { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-line:hover { background: rgba(27,23,20,.05); border-color: rgba(27,23,20,.3); }

.btn-cream { background: var(--paper); color: var(--ink); }
.btn-cream:hover { background: #fff; }

.btn-glass {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.18); }

/* ------------------------------------------------------------------ topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245,240,228,.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; color: var(--ink); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.12; }
.brand-txt b { font-size: 1.06rem; font-weight: 700; letter-spacing: -.025em; }
.brand-txt .bd { font-size: .76rem; color: var(--muted); letter-spacing: .04em; }

.topbar-cta { display: flex; align-items: center; gap: 12px; }
.topbar-note {
  font-size: .82rem;
  color: var(--muted);
  padding-right: 14px;
  border-right: 1px solid var(--line);
}
.topbar-note b { color: var(--ink); font-weight: 600; }

/* ------------------------------------------------------------------ hero */

.hero { padding: 46px 0 0; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background:
    radial-gradient(1100px 420px at 78% -8%, rgba(176,129,44,.13), transparent 62%),
    linear-gradient(180deg, var(--paper-2), var(--paper) 62%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 54px;
  align-items: start;
  padding-bottom: 52px;
}

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255,253,248,.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px 7px 12px;
  margin-bottom: 22px;
}
.hero-loc svg { width: 15px; height: 15px; color: var(--gold-deep); }

.hero-copy h1 { margin-bottom: 18px; }
.hero-sub { font-size: clamp(1.04rem, 1.45vw, 1.2rem); color: var(--ink-soft); margin: 0 0 26px; max-width: 46ch; }

.hero-points { list-style: none; margin: 0 0 30px; padding: 0; border-top: 1px solid var(--line-soft); }
.hero-points li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .97rem;
  color: var(--ink-soft);
}
.hero-points li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
  transform: translateY(-1px);
}
.hero-points b { color: var(--ink); font-weight: 700; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-micro { margin: 16px 0 0; font-size: .87rem; color: var(--muted); }
.hero-micro b { color: var(--ink-soft); }

/* carte formulaire */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-lift);
  padding: 26px 26px 24px;
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft) 55%, var(--gold-deep));
  border-radius: 6px 6px 0 0;
}
.form-head h2 { font-size: 1.42rem; letter-spacing: -.028em; font-weight: 700; }
.form-head p { margin: 8px 0 20px; font-size: .92rem; color: var(--muted); }

.field { margin-bottom: 13px; }
.field label { display: block; font-size: .83rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.req { color: var(--brique); }
.opt { color: var(--muted); font-weight: 400; }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 13px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
input::placeholder, textarea::placeholder { color: #9C8E80; }
input:focus, select:focus, textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,129,44,.18);
}
textarea { resize: vertical; min-height: 62px; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 14px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
select { padding-right: 36px; }

.consent { display: flex; gap: 10px; align-items: flex-start; margin: 14px 0 16px; font-size: .82rem; color: var(--muted); line-height: 1.45; }
.consent input { margin: 2px 0 0; accent-color: var(--gold); width: 16px; height: 16px; flex: none; }

.form-note { margin: 12px 0 0; text-align: center; font-size: .8rem; color: var(--muted); }
.form-success, .form-error { display: none; margin-top: 14px; padding: 13px 15px; border-radius: 4px; font-size: .92rem; }
.form-success { background: rgba(74,106,72,.1); border: 1px solid rgba(74,106,72,.32); color: #33502F; }
.form-error { background: rgba(163,63,34,.09); border: 1px solid rgba(163,63,34,.3); color: #8B3319; }
form.is-sent .field, form.is-sent .consent, form.is-sent button { display: none; }

/* bandeau photo cinéma sous le pli */
.hero-band { position: relative; }
.hero-band img { width: 100%; height: clamp(230px, 34vw, 430px); object-fit: cover; }
.hero-band-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(15,12,10,0), rgba(15,12,10,.82) 70%);
  padding: 60px 0 18px;
  pointer-events: none;
}
.hero-band-cap .wrap { display: flex; flex-wrap: wrap; gap: 8px 26px; align-items: baseline; }
.hero-band-cap p { margin: 0; color: rgba(255,253,248,.9); font-size: .92rem; }
.hero-band-cap b { color: #fff; font-weight: 700; }

/* ------------------------------------------------------------------ réassurance */

.trust { background: var(--ink); color: var(--paper); }
.trust-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 26px 26px;
  border-right: 1px solid var(--line-light);
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; padding-right: 0; }
.trust-item .ic { width: 26px; height: 26px; color: var(--gold-soft); flex: none; }
.trust-item .ic svg { width: 100%; height: 100%; }
.trust-item b { display: block; font-size: .96rem; font-weight: 700; letter-spacing: -.01em; }
.trust-item span span { display: block; font-size: .84rem; color: rgba(245,240,228,.62); line-height: 1.45; margin-top: 3px; }

/* ------------------------------------------------------------------ sections */

.section { padding: clamp(58px, 7vw, 96px) 0; }
.section-tint { background: var(--paper-2); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark .lead { color: rgba(245,240,228,.76); }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(34px, 5vw, 76px); align-items: start; }
.split-tight { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); }
.split-rev > .split-visual { order: -1; }

.split-visual { margin: 0; }
.split-visual img { width: 100%; border-radius: 4px; aspect-ratio: 4 / 5; object-fit: cover; }
.split-visual.wide img { aspect-ratio: 4 / 3; }
.split-visual figcaption { margin-top: 10px; font-size: .8rem; color: var(--muted); }
.section-dark .split-visual figcaption { color: rgba(245,240,228,.5); }

.sec-head { max-width: 60ch; }
.sec-head .h2 { margin-top: 4px; }

/* enjeu : lignes numérotées, pas de cartes */
.risks { margin-top: 34px; border-top: 1px solid var(--line-light); }
.risk { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.risk .n { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold-soft); line-height: 1.1; }
.risk h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: -.015em; }
.risk p { margin: 5px 0 0; font-size: .95rem; color: rgba(245,240,228,.7); }
.risks-cta { margin-top: 30px; }

/* étapes */
.steps { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { padding: 26px 24px 28px; border-right: 1px solid var(--line); }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step:last-child { border-right: 0; }
.step .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.04rem; font-weight: 700; letter-spacing: -.018em; }
.step p { margin: 7px 0 0; font-size: .93rem; color: var(--ink-soft); }

.incl { margin-top: 42px; display: grid; grid-template-columns: minmax(0, .34fr) minmax(0, .66fr); gap: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.incl-title { margin: 0; font-family: var(--serif); font-size: 1.24rem; font-style: italic; color: var(--ink-2); }
.incl-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 34px; font-size: .95rem; color: var(--ink-soft); }
.incl-list li { padding: 5px 0 5px 22px; position: relative; break-inside: avoid; }
.incl-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 11px; height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ------------------------------------------------------------------ avant / après */

.ba-wrap { margin-top: 38px; }
.compare {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .after-clip { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); will-change: clip-path; }
.compare .tag {
  position: absolute;
  top: 14px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  background: rgba(15,12,10,.7);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.compare .tag-before { right: 14px; }
.compare .tag-after { left: 14px; background: rgba(74,106,72,.88); }
.compare .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,253,248,.95);
  transform: translateX(-1px);
  pointer-events: none;
}
.compare .handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(15,12,10,.4);
}
.compare .handle::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 10px;
  transform: translate(-50%, -50%);
  z-index: 2;
  background:
    linear-gradient(to right, var(--ink) 0 2px, transparent 2px 6px, var(--ink) 6px 8px) no-repeat left center / 8px 10px,
    linear-gradient(to right, var(--ink) 0 2px, transparent 2px 6px, var(--ink) 6px 8px) no-repeat right center / 8px 10px;
  clip-path: polygon(0 50%, 35% 0, 35% 100%, 65% 0, 65% 100%, 100% 50%);
}
.ba-note { margin: 14px 0 0; font-size: .82rem; color: var(--muted); }
.ba-legend { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 16px; font-size: .93rem; color: var(--ink-soft); }
.ba-legend span { display: inline-flex; align-items: center; gap: 9px; }
.ba-legend i { width: 9px; height: 9px; border-radius: 50%; background: var(--brique); }
.ba-legend span + span i { background: var(--vert); }

/* ------------------------------------------------------------------ budget */

.price-side {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.price-side h3 { font-size: 1.12rem; letter-spacing: -.02em; margin-bottom: 14px; }
.tick { list-style: none; margin: 0 0 22px; padding: 0; }
.tick li { position: relative; padding: 8px 0 8px 24px; font-size: .95rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.tick li:last-child { border-bottom: 0; }
.tick li::before {
  content: "";
  position: absolute;
  left: 2px; top: 16px;
  width: 10px; height: 2px;
  background: var(--gold);
}
.price-side-note { margin: 12px 0 0; font-size: .8rem; color: var(--muted); text-align: center; }

.quote-lines { margin-top: 30px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.quote-line { display: grid; grid-template-columns: minmax(0, .38fr) minmax(0, .62fr); gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.quote-line b { font-size: 1rem; font-weight: 700; letter-spacing: -.015em; }
.quote-line p { margin: 0; font-size: .94rem; color: var(--ink-soft); }
.quote-line .val { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 1.06rem; }

/* ------------------------------------------------------------------ bande CTA */

.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band-in {
  position: relative;
  background: linear-gradient(105deg, rgba(15,12,10,.9) 0%, rgba(15,12,10,.72) 46%, rgba(15,12,10,.1) 82%);
  padding: clamp(56px, 7vw, 92px) 0;
}
.band-h { font-size: clamp(1.6rem, 2.8vw, 2.3rem); line-height: 1.14; letter-spacing: -.026em; font-weight: 700; max-width: 20ch; }
.cta-band p { margin: 16px 0 26px; color: rgba(255,253,248,.82); max-width: 46ch; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ------------------------------------------------------------------ avis */

.reviews { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.review { margin: 0; padding: 26px 26px; border-right: 1px solid var(--line); }
.review:first-child { padding-left: 0; }
.review:last-child { border-right: 0; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: .95rem; }
.review blockquote { margin: 12px 0 14px; font-family: var(--serif); font-size: 1.1rem; line-height: 1.5; color: var(--ink-2); }
.review figcaption { font-size: .85rem; color: var(--muted); }

/* ------------------------------------------------------------------ zone */

.zone-grid { margin-top: 34px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 4vw, 60px); align-items: start; }
.zone-cols { columns: 3; column-gap: 26px; font-size: .96rem; }
.zone-cols span { display: block; padding: 6px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink-soft); break-inside: avoid; }
.zone-cols span b { color: var(--ink); font-weight: 700; }
.zone-visual img { border-radius: 4px; aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.zone-visual figcaption { margin-top: 10px; font-size: .8rem; color: var(--muted); }
.zones-note { margin: 24px 0 0; font-size: .93rem; color: var(--ink-soft); }

/* ------------------------------------------------------------------ FAQ */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 44px 18px 0;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -.015em;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after,
.faq summary::before {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  background: var(--gold);
  transition: transform .2s ease, opacity .2s ease;
}
.faq summary::after { width: 14px; height: 2px; transform: translateY(-50%); }
.faq summary::before { width: 2px; height: 14px; transform: translate(-6px, -50%); }
.faq details[open] summary::before { opacity: 0; transform: translate(-6px, -50%) rotate(90deg); }
.faq .ans { padding: 0 40px 20px 0; font-size: .97rem; color: var(--ink-soft); }
.faq .ans p { margin: 0 0 10px; }
.faq .ans p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ final */

.final { background: var(--paper-2); }
.final-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .78fr); gap: clamp(34px, 5vw, 70px); align-items: start; }
.final-contacts { margin-top: 30px; border-top: 1px solid var(--line); }
.fc { display: flex; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.fc .ic { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }
.fc .ic svg { width: 100%; height: 100%; }
.fc .l { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.fc .v { display: block; font-size: 1.12rem; font-weight: 700; letter-spacing: -.02em; }
.fc .v.small { font-size: .97rem; font-weight: 500; letter-spacing: -.01em; }

/* ------------------------------------------------------------------ footer */

.footer { background: var(--ink); color: rgba(245,240,228,.72); padding: 46px 0 32px; font-size: .9rem; }
.footer b { color: var(--paper); font-size: 1.04rem; letter-spacing: -.02em; }
.footer p { margin: 10px 0 0; max-width: 62ch; line-height: 1.6; }
.footer a { color: var(--gold-soft); text-decoration: none; border-bottom: 1px solid rgba(231,211,162,.3); }
.footer a:hover { color: #fff; }
.footer-legal {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: .8rem;
  color: rgba(245,240,228,.5);
}

/* ------------------------------------------------------------------ callbar mobile */

.callbar { display: none; }

/* ------------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .form-card { max-width: 560px; }
  .split, .split-tight, .final-in, .zone-grid { grid-template-columns: 1fr; }
  .split-rev > .split-visual { order: 0; }
  .split-visual img { aspect-ratio: 16 / 10; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-bottom: 1px solid var(--line); padding-right: 22px; }
  .step:nth-child(2n) { border-right: 0; }
  .trust-in { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 20px 20px 20px 0; }
  .trust-item:nth-child(2n) { border-right: 0; padding-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line-light); }
  .reviews { grid-template-columns: 1fr; }
  .review { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; }
  .incl { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .topbar-note { display: none; }
  /* la barre d'action fixe en bas porte déjà le double CTA : on allège l'en-tête */
  .topbar-cta .btn-gold { display: none; }
  .topbar-cta .btn-ink { white-space: nowrap; padding: 10px 13px; font-size: .88rem; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-txt b { font-size: .98rem; }
  .brand-txt .bd { font-size: .72rem; }
  .hero { padding-top: 30px; }
  .hero-grid { padding-bottom: 34px; }
  .zone-cols { columns: 2; column-gap: 18px; }
  .incl-list { columns: 1; }
  .quote-line { grid-template-columns: 1fr; gap: 6px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; padding-right: 0; }
  .compare { aspect-ratio: 4 / 3; }
  .hero-cta .btn { flex: 1 1 100%; }
  main { padding-bottom: 76px; }

  .callbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(245,240,228,.94);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--line);
  }
  .callbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: .98rem;
    text-decoration: none;
  }
  .callbar svg { width: 18px; height: 18px; }
  .callbar .call { background: var(--ink); color: var(--paper); }
  .callbar .quote { background: var(--gold); color: #fff; }
}

@media print { .topbar, .callbar, .cta-band { display: none; } }
