/* ==========================================================================
   ELECINFO40 — Feuille de style
   Direction artistique : « poster landais » (héritée des sites yoga)
     - Typographie : Fraunces (titres) + Manrope (corps)
     - Palette : crème, sable, bleu nuit, ambre électrique, bleu océan
     - Priorité absolue : le bouton d'appel, visible sans scroller, partout
   ========================================================================== */

:root {
  --c-cream:   #FAF4E8;
  --c-sand:    #F2E4CB;
  --c-sand-2:  #E9D6AE;
  --c-ink:     #1D2C3C;
  --c-ink-2:   #24384D;
  --c-ink-soft:#4B5A6C;
  --c-line:    rgba(29,44,60,.12);
  --c-white:   #FFFFFF;
  --c-amber:   #E4731E;   /* bouton d'appel */
  --c-amber-2: #C85F12;
  --c-amber-soft: #FBE7D3;
  --c-sun:     #F2B441;
  --c-ocean:   #2A5D67;
  --c-ocean-2: #1F4850;
  --c-sky:     #D6E6EA;
  --c-ok:      #2E7D5B;
  --c-err:     #B23A2C;

  --f-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-s: 10px; --r-m: 18px; --r-l: 28px; --r-xl: 40px;
  --shadow-soft: 0 10px 40px -20px rgba(29,44,60,.28);
  --shadow-lift: 0 24px 60px -28px rgba(29,44,60,.38);
  --shadow-call: 0 12px 28px -10px rgba(228,115,30,.55);
  --max-w: 1180px;
  --gutter: clamp(18px, 4vw, 48px);
  --ease: cubic-bezier(.22,1,.36,1);
  --header-h: 68px;
}

/* --- Reset doux ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--f-body); font-size: 17px; line-height: 1.6;
  color: var(--c-ink); background: var(--c-cream);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--c-amber); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--c-ink); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 999; }
.skip:focus { left: 8px; }
.ico { flex-shrink: 0; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.08; letter-spacing: -.012em; color: var(--c-ink); margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 5.6vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.5rem); }
h1 em, h2 em { font-style: italic; color: var(--c-amber-2); }
p { margin: 0 0 1em; }
strong { font-weight: 700; }
.lead { font-size: 1.12rem; color: var(--c-ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em;
  color: var(--c-amber-2); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow-light { color: var(--c-sun); }

/* --- Layout -------------------------------------------------------------- */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 820px; }
.section { position: relative; padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-cream { background: var(--c-cream); }
.bg-sand  { background: var(--c-sand); }
.bg-white { background: var(--c-white); }
.bg-sky   { background: var(--c-sky); }
.bg-ink   { background: var(--c-ink); color: #F3EEE3; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink h2 em { color: var(--c-sun); }
.bg-ocean { background: var(--c-ocean); color: #F3EEE3; }
.bg-ocean h2, .bg-ocean h3 { color: #fff; }
.bg-ocean .eyebrow { color: var(--c-sun); }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { color: var(--c-ink-soft); font-size: 1.08rem; }
.bg-ink .section-head p, .bg-ocean .section-head p { color: rgba(255,255,255,.78); }

/* --- Boutons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1.02rem; line-height: 1.1; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-call { background: var(--c-amber); color: #fff; box-shadow: var(--shadow-call); font-size: 1.1rem; padding: 17px 24px; }
.btn-call:hover { background: var(--c-amber-2); transform: translateY(-2px); }
.btn-sms { background: transparent; color: var(--c-ink); border-color: var(--c-ink); }
.btn-sms:hover { background: var(--c-ink); color: #fff; }
.bg-ink .btn-sms, .bg-ocean .btn-sms { color: #fff; border-color: rgba(255,255,255,.7); }
.bg-ink .btn-sms:hover, .bg-ocean .btn-sms:hover { background: #fff; color: var(--c-ink); }
.btn-ghost { background: transparent; color: var(--c-ink); padding: 10px 4px; border-radius: 6px; font-weight: 700; gap: 8px; }
.btn-ghost:hover { color: var(--c-amber-2); }
.btn-ghost .ico { transition: transform .25s var(--ease); }
.btn-ghost:hover .ico { transform: translateX(4px); }
.btn-ink { background: var(--c-ink); color: #fff; }
.btn-ink:hover { background: var(--c-ink-2); transform: translateY(-2px); }
.btn-sm { padding: 10px 16px; font-size: .92rem; box-shadow: none; }
.btn-block { width: 100%; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
@media (max-width: 640px) {
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
}

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; padding: 12px 0;
  background: rgba(250,244,232,.85); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(29,44,60,.06); transition: box-shadow .3s, padding .3s;
}
.site-header.is-scrolled { box-shadow: 0 1px 30px -12px rgba(29,44,60,.2); padding: 8px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { width: 42px; height: 42px; border-radius: 12px; background: var(--c-ink); color: var(--c-sun); display: grid; place-items: center; flex-shrink: 0; transform: rotate(-4deg); transition: transform .3s var(--ease); }
.brand:hover .brand-mark { transform: rotate(4deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--f-display); font-size: 1.28rem; font-weight: 600; font-style: italic; letter-spacing: -.01em; }
.brand-sub { font-size: .7rem; font-weight: 600; color: var(--c-ink-soft); letter-spacing: .02em; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; }
.nav-links a { padding: 8px 11px; border-radius: 8px; font-weight: 600; font-size: .93rem; color: var(--c-ink-soft); transition: background .2s, color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current] { color: var(--c-ink); background: rgba(29,44,60,.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-call { white-space: nowrap; }
.nav-foot { display: none; }
.nav-call-word { display: none; }
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 10px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1180px) { .nav-links a { padding: 8px 9px; font-size: .89rem; } }
@media (max-width: 1060px) { .nav-call-num { display: none; } .nav-call-word { display: inline; } }
@media (max-width: 1000px) { .nav-links a { padding: 8px 7px; font-size: .84rem; } .brand-sub { display: none; } }
@media (max-width: 940px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--c-cream); flex-direction: column; align-items: stretch; gap: 4px; padding: 20px var(--gutter) 120px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; overflow-y: auto; z-index: 90;
  }
  .nav-open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { font-size: 1.15rem; padding: 14px 12px; border-bottom: 1px solid var(--c-line); border-radius: 0; }
  .brand-sub { display: none; }
  .nav-call span, .nav-call-word { display: none; }
  .nav-call { padding: 10px 12px; }
  .nav-open .site-header.is-scrolled { padding: 12px 0; }
  /* le flou du header crée un bloc conteneur qui enfermait le menu fixe : on le neutralise à l'ouverture */
  .nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--c-cream); }
  .nav-links { background: var(--c-cream); box-shadow: 0 12px 30px -18px rgba(29,44,60,.35); }
  .nav-foot { display: block; margin-top: 22px; }
  .nav-foot .btn { width: 100%; justify-content: center; }
  .nav-foot p { margin: 12px 0 0; text-align: center; font-size: .9rem; color: var(--c-ink-soft); }
}
@media (max-width: 940px) { .nav-open { overflow: hidden; } }

/* --- Hero ---------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(28px, 5vw, 80px) 0 clamp(40px, 6vw, 80px); }
.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none; }
.hero::before { width: 46vw; height: 46vw; max-width: 560px; max-height: 560px; background: var(--c-sun); top: -20%; right: -10%; }
.hero::after { width: 40vw; height: 40vw; max-width: 460px; max-height: 460px; background: var(--c-sky); bottom: -30%; left: -10%; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 10px; border-radius: 999px;
  background: rgba(255,255,255,.7); border: 1px solid var(--c-line); font-size: .82rem; font-weight: 700; color: var(--c-ink); margin-bottom: 18px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-ok); box-shadow: 0 0 0 4px rgba(46,125,91,.18); }
.hero h1 { margin-bottom: 14px; }
.hero-sub { font-size: 1.12rem; color: var(--c-ink-soft); max-width: 560px; margin-bottom: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; font-size: .92rem; color: var(--c-ink-soft); margin: 0; }
.trust strong { color: var(--c-ink); }
.trust-stars { color: var(--c-sun); letter-spacing: 1px; font-size: 1rem; }
.trust .sep { opacity: .5; }
.hero-figure { position: relative; margin: 0; }
.hero-figure img { border-radius: var(--r-l); box-shadow: var(--shadow-lift); transform: rotate(2deg); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.hero-figure figcaption {
  position: absolute; left: -10px; bottom: -14px; background: var(--c-ink); color: #fff; padding: 12px 16px; border-radius: 14px;
  font-size: .85rem; font-weight: 600; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 10px; transform: rotate(-2deg);
}
.hero-figure figcaption strong { font-family: var(--f-display); font-size: 1.4rem; color: var(--c-sun); font-weight: 600; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.stat { background: rgba(255,255,255,.75); border: 1px solid var(--c-line); border-radius: 14px; padding: 10px 16px; min-width: 120px; flex: 1 1 0; }
.stat b { display: block; font-family: var(--f-display); font-size: 1.5rem; line-height: 1; color: var(--c-ink); }
.stat span { font-size: .78rem; color: var(--c-ink-soft); font-weight: 600; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 420px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 22px; }
  .hero h1 { font-size: clamp(1.9rem, 8.4vw, 2.4rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 8px; }
  .stat { flex: 1 1 calc(50% - 8px); min-width: 0; padding: 10px 12px; }
}

/* --- Page hero (pages internes) ------------------------------------------ */
.page-hero { position: relative; overflow: hidden; padding: clamp(24px, 4vw, 56px) 0 clamp(36px, 5vw, 64px); background: var(--c-sand); }
.page-hero::after { content: ''; position: absolute; width: 50vw; height: 50vw; max-width: 520px; max-height: 520px; border-radius: 50%; background: var(--c-sun); filter: blur(70px); opacity: .35; top: -30%; right: -10%; pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero .hero-sub { margin-bottom: 20px; }
.page-hero-figure { margin: 0; }
.page-hero-figure img { border-radius: var(--r-l); box-shadow: var(--shadow-lift); transform: rotate(-2deg); aspect-ratio: 3/2; object-fit: cover; width: 100%; }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } .page-hero-figure { display: none; } }
@media (max-width: 640px) { .page-hero .hero-actions { flex-direction: column; } .page-hero .hero-actions .btn { width: 100%; } }

/* --- Héro mobile : photo pleine largeur + carte flottante par-dessus ------ */
@media (max-width: 900px) {
  .hero, .page-hero { padding-top: 0; }
  .hero-grid, .page-hero-grid { gap: 0; }
  .hero-figure, .page-hero-figure {
    display: block; order: -1; max-width: none; position: relative;
    margin-inline: calc(-1 * var(--gutter));
  }
  .hero-figure img, .page-hero-figure img {
    display: block; width: 100%; height: clamp(175px, 26vh, 290px);
    aspect-ratio: auto; object-fit: cover; object-position: center top;
    transform: none; border-radius: 0; box-shadow: none;
  }
  .hero-figure figcaption {
    left: var(--gutter); bottom: calc(3.6rem + 12px); transform: none;
    border-radius: 12px; padding: 8px 12px; font-size: .8rem;
  }
  .hero-card {
    position: relative; z-index: 2; margin-top: -3.6rem;
    padding: 20px 18px 20px;
    border-radius: 18px;
    box-shadow: 0 18px 44px -22px rgba(29,44,60,.6);
  }
  .hero .hero-card { background: var(--c-cream); }
  .page-hero .hero-card { background: var(--c-sand); }
  .page-hero .crumb { margin-bottom: 8px; }
  .hero-card .hero-stats { margin-top: 18px; }
  .hero-card .hero-stats .stat:nth-child(3) { display: none; }   /* déjà dit dans le badge */
  .hero-card .eyebrow { margin-bottom: 6px; }
  .hero-card h1 { margin-bottom: 10px; }
  .hero-card .hero-sub { margin-bottom: 16px; }
}
.crumb { font-size: .82rem; color: var(--c-ink-soft); margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.crumb a:hover { color: var(--c-amber-2); text-decoration: underline; }
.crumb span[aria-current] { color: var(--c-ink); font-weight: 600; }

/* --- Cartes -------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: var(--c-white); border-radius: var(--r-m); padding: 26px; border: 1px solid var(--c-line); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 10px; position: relative; transition: transform .3s var(--ease), box-shadow .3s; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-num { font-family: var(--f-display); font-size: 1.1rem; color: var(--c-amber-2); font-weight: 600; letter-spacing: .04em; }
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--c-amber-soft); color: var(--c-amber-2); display: grid; place-items: center; }
.card h3 { margin: 4px 0 0; }
.card p { margin: 0; color: var(--c-ink-soft); font-size: .98rem; }
.card .btn-ghost { margin-top: auto; align-self: flex-start; }
.bg-sand .card { border-color: transparent; }
.card-dark { background: var(--c-ink); color: #F3EEE3; border: 0; }
.card-dark h3 { color: #fff; }
.card-dark p { color: rgba(255,255,255,.75); }
.card-dark .card-icon { background: rgba(242,180,65,.15); color: var(--c-sun); }

/* --- « Que se passe-t-il ? » : symptômes ---------------------------------- */
.symptoms { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: start; }
@media (min-width: 700px) { .symptoms { grid-template-columns: 1fr 1fr; } }
.symptom { background: var(--c-white); border-radius: var(--r-m); border: 1px solid var(--c-line); box-shadow: var(--shadow-soft); overflow: hidden; }
.symptom summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 20px 22px; font-weight: 800; font-size: 1.08rem; }
.symptom summary::-webkit-details-marker { display: none; }
.symptom summary .card-icon { width: 44px; height: 44px; }
.symptom summary::after { content: '+'; margin-left: auto; font-family: var(--f-display); font-size: 1.6rem; color: var(--c-amber-2); transition: transform .3s var(--ease); }
.symptom[open] summary::after { transform: rotate(45deg); }
.symptom-body { padding: 0 22px 22px; color: var(--c-ink-soft); font-size: .97rem; }
.symptom-body p { margin: 0 0 10px; }
.symptom-body .tag { display: inline-block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--c-ink); margin-bottom: 4px; }
.symptom-body .warn { background: var(--c-amber-soft); border-left: 3px solid var(--c-amber); padding: 10px 14px; border-radius: 0 10px 10px 0; color: var(--c-ink); margin-bottom: 14px; }
.symptom-body .btn { margin-top: 4px; }

/* --- Étapes -------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 24px 22px 22px; background: var(--c-white); border-radius: var(--r-m); border: 1px solid var(--c-line); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--f-display); font-size: 2rem; color: var(--c-amber-2); line-height: 1; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { margin: 0; color: var(--c-ink-soft); font-size: .96rem; }
.bg-ink .step { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.bg-ink .step h3 { color: #fff; }
.bg-ink .step p { color: rgba(255,255,255,.75); }
.bg-ink .step::before { color: var(--c-sun); }

/* --- Garanties / réassurance -------------------------------------------- */
.guarantees { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.guarantee { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,.6); border: 1px solid var(--c-line); border-radius: 14px; padding: 16px; }
.guarantee .ico { color: var(--c-ok); margin-top: 2px; }
.guarantee b { display: block; font-size: .98rem; }
.guarantee span { font-size: .88rem; color: var(--c-ink-soft); }

/* --- Villes -------------------------------------------------------------- */
.cities { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.city { display: flex; flex-direction: column; gap: 2px; padding: 16px 18px; background: var(--c-white); border: 1px solid var(--c-line); border-radius: 14px; position: relative; transition: transform .25s var(--ease), box-shadow .25s; }
.city:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.city .ico { position: absolute; right: 16px; top: 18px; color: var(--c-amber-2); }
.city-name { font-weight: 800; font-size: 1.05rem; }
.city-meta { font-size: .85rem; color: var(--c-ink-soft); }
.city.is-current { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.city.is-current .city-meta { color: rgba(255,255,255,.7); }
.city.is-current .ico { color: var(--c-sun); }

/* --- Avis ---------------------------------------------------------------- */
.rating-box { display: inline-flex; align-items: center; gap: 14px; background: var(--c-white); border: 1px solid var(--c-line); border-radius: 16px; padding: 14px 20px; margin-bottom: 26px; box-shadow: var(--shadow-soft); }
.rating-box .big { font-family: var(--f-display); font-size: 2.4rem; line-height: 1; color: var(--c-ink); }
.rating-box .stars { color: var(--c-sun); font-size: 1.1rem; letter-spacing: 1px; }
.rating-box small { display: block; color: var(--c-ink-soft); font-size: .82rem; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.review { margin: 0; background: var(--c-white); border-radius: var(--r-m); padding: 22px 22px 18px; border: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 8px; position: relative; }
.review::before { content: '“'; position: absolute; right: 18px; top: 4px; font-family: var(--f-display); font-size: 4rem; color: var(--c-sand-2); line-height: 1; }
.review-stars { color: var(--c-sun); letter-spacing: 2px; }
.review blockquote { margin: 0; font-size: 1rem; line-height: 1.55; }
.review figcaption { font-size: .85rem; font-weight: 800; }
.review figcaption span { font-weight: 500; color: var(--c-ink-soft); }
.bg-sand .review { border-color: transparent; }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; }
.faq-title { margin-bottom: 20px; }
.faq-item { border-top: 1px solid var(--c-line); }
.faq-item:last-of-type { border-bottom: 1px solid var(--c-line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 44px 18px 0; font-weight: 800; font-size: 1.04rem; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--f-display); font-size: 1.6rem; color: var(--c-amber-2); transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 0 18px; color: var(--c-ink-soft); font-size: .98rem; }
.faq-body p { margin: 0; }
.faq-body a { color: var(--c-amber-2); font-weight: 700; }

/* --- Bloc CTA intermédiaire --------------------------------------------- */
.cta { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; background: var(--c-ink); color: #fff; border-radius: var(--r-l); padding: clamp(24px, 4vw, 44px); margin: clamp(32px, 5vw, 56px) 0 0; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: var(--c-ocean); filter: blur(60px); opacity: .7; right: -80px; top: -120px; pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta p { margin: 0; color: rgba(255,255,255,.75); font-size: .96rem; }
.cta .cta-actions { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 760px) { .cta { grid-template-columns: 1fr; } }

.cta-final { text-align: center; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; width: 60vw; height: 60vw; max-width: 700px; max-height: 700px; border-radius: 50%; background: var(--c-ocean); filter: blur(90px); opacity: .55; left: 50%; top: 50%; transform: translate(-50%,-40%); pointer-events: none; }
.cta-final .container { position: relative; }
.cta-final h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.cta-final-sub { color: rgba(255,255,255,.78); margin-bottom: 24px; }
.cta-final .cta-actions { justify-content: center; flex-direction: row; }
.cta-final-note { margin-top: 20px; font-size: .9rem; color: rgba(255,255,255,.6); }
.cta-final-note a { text-decoration: underline; color: #fff; }
@media (max-width: 640px) { .cta-final .cta-actions { flex-direction: column; } }

/* --- Prose (pages contenu) ---------------------------------------------- */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; font-size: 1.28rem; }
.prose p, .prose li { color: var(--c-ink-soft); font-size: 1.02rem; }
.prose li { margin-bottom: .45em; }
.prose ul { padding-left: 1.2em; }
.prose strong { color: var(--c-ink); }
.prose a { color: var(--c-amber-2); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.prose .note { background: var(--c-sky); border-radius: 14px; padding: 16px 20px; color: var(--c-ink); }
.prose .note p { color: var(--c-ink); margin: 0; }
.prose .warn { background: var(--c-amber-soft); border-left: 4px solid var(--c-amber); border-radius: 0 14px 14px 0; padding: 14px 18px; }
.prose .warn p { margin: 0; color: var(--c-ink); }
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist .ico { color: var(--c-ok); margin-top: 4px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.aside-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-m); padding: 24px; box-shadow: var(--shadow-soft); position: sticky; top: 90px; }
.aside-card h3 { font-size: 1.2rem; }
.aside-card .btn { width: 100%; margin-top: 10px; }
.aside-card ul { padding-left: 1.1em; color: var(--c-ink-soft); font-size: .94rem; }
.figure-round img { border-radius: var(--r-m); box-shadow: var(--shadow-soft); }
.figure-round figcaption { font-size: .85rem; color: var(--c-ink-soft); margin-top: 8px; }
.table { width: 100%; border-collapse: collapse; background: var(--c-white); border-radius: 14px; overflow: hidden; }
.table th, .table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--c-line); font-size: .96rem; }
.table th { background: var(--c-sand); font-weight: 800; }

/* --- Formulaire ---------------------------------------------------------- */
.form-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r-l); padding: clamp(20px, 3vw, 34px); box-shadow: var(--shadow-soft); }
.form-card h2 { font-size: 1.6rem; }
.field { margin-bottom: 16px; }
.field label, .field .lbl { display: block; font-weight: 800; font-size: .92rem; margin-bottom: 6px; }
.field label small, .field .lbl small { font-weight: 500; color: var(--c-ink-soft); }
.field input[type=text], .field input[type=tel], .field input[type=email], .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--c-line); border-radius: 12px; font: inherit; font-size: 1.02rem; background: var(--c-cream); color: var(--c-ink); transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-amber); background: #fff; }
.field input[type=tel] { font-size: 1.15rem; font-weight: 700; letter-spacing: .04em; }
.field textarea { min-height: 110px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; width: 0; height: 0; }
.chips span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border-radius: 999px; border: 2px solid var(--c-line); background: var(--c-cream); font-weight: 700; font-size: .94rem; transition: all .2s; }
.chips input:checked + span { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.chips input:focus-visible + span { outline: 3px solid var(--c-amber); outline-offset: 2px; }
.chips.urgent input:checked + span { background: var(--c-amber); border-color: var(--c-amber); }
.file-drop { border: 2px dashed var(--c-line); border-radius: 12px; padding: 14px 16px; background: var(--c-cream); font-size: .92rem; color: var(--c-ink-soft); }
.file-drop input { display: block; margin-top: 8px; font-size: .9rem; }
.form-note { font-size: .92rem; color: var(--c-ink-soft); display: flex; gap: 8px; align-items: flex-start; }
.form-note .ico { color: var(--c-ok); margin-top: 3px; }
.form-msg { border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; font-weight: 600; }
.form-msg.err { background: #FBE3DF; color: var(--c-err); }
.form-msg.ok { background: #DDF2E6; color: var(--c-ok); }
.hp { position: absolute; left: -9999px; top: -9999px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-side .btn { width: 100%; }
.contact-list { list-style: none; padding: 0; margin: 20px 0; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--c-line); }
.contact-list .ico { color: var(--c-amber-2); margin-top: 3px; }
.contact-list b { display: block; }
.contact-list span { color: var(--c-ink-soft); font-size: .95rem; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: #15212E; color: rgba(255,255,255,.72); padding: 56px 0 110px; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .brand-name, .footer-brand .brand-sub { color: #fff; }
.footer-brand .brand-sub { color: rgba(255,255,255,.6); }
.footer-brand p { margin: 14px 0; max-width: 360px; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; line-height: 1.9; }
.footer-title { font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin: 6px 0 12px; }
.site-footer a { display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--c-sun); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.5); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
@media (min-width: 861px) { .site-footer { padding-bottom: 56px; } }

/* --- Moins d'actions concurrentes sur mobile ----------------------------- */
@media (max-width: 860px) {
  /* texte secondaire du héro : masqué sur mobile, conservé dans le HTML pour le référencement */
  .mob-hide { display: none; }
  /* la barre fixe du bas porte déjà Appeler / SMS / Devis */
  .nav-cta .nav-call { display: none; }
  .hero .hero-actions .btn-sms, .page-hero .hero-actions .btn-sms { display: none; }
  .hero .hero-actions, .page-hero .hero-actions { margin-bottom: 14px; }
}

/* --- Barre d'action fixe mobile ----------------------------------------- */
.mobile-bar { display: none; }
@media (max-width: 860px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr auto auto; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(250,244,232,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--c-line); box-shadow: 0 -8px 30px -12px rgba(29,44,60,.25);
  }
  .mobile-bar a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 10px; border-radius: 999px; font-weight: 800; font-size: .9rem; white-space: nowrap; }
  .mb-call { background: var(--c-amber); color: #fff; box-shadow: var(--shadow-call); }
  .mb-sms, .mb-devis { width: 46px; padding: 13px 0; background: transparent; border: 1.5px solid var(--c-line-2, rgba(29,44,60,.22)); color: var(--c-ink); }
  .mb-sms span, .mb-devis span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

/* --- Animations ---------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}

/* --- Utilitaires --------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.muted { color: var(--c-ink-soft); }
.small { font-size: .88rem; }
.pill { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--c-sand); font-size: .78rem; font-weight: 800; letter-spacing: .04em; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --- Correctifs contextuels ---------------------------------------------- */
.prose a.card { text-decoration: none; color: inherit; font-weight: inherit; }
.prose a.card h3 { margin-top: 0; font-size: 1.15rem; }
.prose a.card p { color: var(--c-ink-soft); font-size: .93rem; }
.prose .cards { margin: 1em 0 1.6em; }
.cta .btn-sms { color: #fff; border-color: rgba(255,255,255,.7); }
.cta .btn-sms:hover { background: #fff; color: var(--c-ink); }
fieldset.field { border: 0; padding: 0; margin: 0 0 16px; min-width: 0; }
fieldset.field legend { padding: 0; margin-bottom: 6px; }
.two-col > *, .contact-grid > *, .hero-grid > *, .page-hero-grid > * { min-width: 0; }
.prose { max-width: 100%; }
@media (min-width: 801px) { .prose { max-width: 780px; } }
.btn-ghost { white-space: normal; text-align: left; }

/* --- Images : cartes illustrées, villes en affiches, figures ------------- */
.card.has-img { padding: 0; overflow: hidden; }
.card.has-img > .card-img { aspect-ratio: 16/10; width: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
a.card.has-img:hover > .card-img { transform: scale(1.04); }
.card.has-img .card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card.has-img .card-body .card-icon { margin-top: -44px; position: relative; background: var(--c-white); box-shadow: var(--shadow-soft); border: 3px solid var(--c-white); }

.cities { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.city { padding: 0; overflow: hidden; }
.city .city-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.city:hover .city-img { transform: scale(1.05); }
.city .city-name, .city .city-meta { padding-inline: 14px; }
.city .city-name { padding-top: 12px; }
.city .city-meta { padding-bottom: 14px; }
.city .ico { top: auto; bottom: 16px; right: 14px; }
.city.is-current .city-img { filter: saturate(1.1); }

.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mosaic figure { margin: 0; position: relative; border-radius: var(--r-m); overflow: hidden; box-shadow: var(--shadow-soft); }
.mosaic img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.mosaic figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; font-size: .84rem; font-weight: 700; color: #fff; background: linear-gradient(to top, rgba(29,44,60,.85), rgba(29,44,60,0)); }
.mosaic figure:first-child { grid-row: span 2; }
.mosaic figure:first-child img { aspect-ratio: auto; height: 100%; }
@media (max-width: 700px) {
  .mosaic { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: none; }
  .mosaic::-webkit-scrollbar { display: none; }
  .mosaic figure { flex: 0 0 78%; scroll-snap-align: start; }
  .mosaic figure:first-child img { aspect-ratio: 4/3; height: auto; }
}

.figure-band { margin: 0; position: relative; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-lift); }
.figure-band img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.figure-band figcaption { position: absolute; left: 14px; bottom: 14px; background: var(--c-ink); color: #fff; padding: 10px 14px; border-radius: 12px; font-size: .85rem; font-weight: 700; max-width: calc(100% - 28px); }
.figure-band figcaption strong { color: var(--c-sun); }
.prose .figure-band { margin: 1.6em 0; }
.prose .figure-band figcaption { color: #fff; }

.about-figure { margin: 0 0 22px; }
.about-figure img { border-radius: var(--r-l); box-shadow: var(--shadow-soft); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-mobile-strip { display: none; }
@media (max-width: 640px) {
  .hero-mobile-strip { display: flex; gap: 8px; margin-top: 18px; }
  .hero-mobile-strip img { flex: 1; min-width: 0; aspect-ratio: 3/2; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-soft); }
  .hero-mobile-strip img:nth-child(2) { transform: translateY(8px); }
}

/* ==========================================================================
   V4 — mise en page éditoriale : lignes de prestations, frise d'étapes, splits
   ========================================================================== */
/* Lignes de prestations (remplace les cartes-images) */
.svc-list { display: flex; flex-direction: column; border-top: 1px solid var(--c-line); }
.svc-row { display: grid; grid-template-columns: 56px 220px 1fr auto; gap: 28px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--c-line); transition: background .25s; }
a.svc-row:hover { background: rgba(255,255,255,.45); }
.svc-num { font-family: var(--f-display); font-size: 1.6rem; color: var(--c-amber-2); line-height: 1; }
.svc-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 14px; display: block; transition: transform .5s var(--ease); }
a.svc-row:hover .svc-img { transform: scale(1.03); }
.svc-noimg { width: 100%; aspect-ratio: 3/2; border-radius: 14px; background: var(--c-sand); display: grid; place-items: center; color: var(--c-amber-2); }
.svc-body h3 { margin: 0 0 6px; font-size: 1.35rem; }
.svc-body p { margin: 0; color: var(--c-ink-soft); font-size: 1rem; max-width: 60ch; }
.svc-cta { color: var(--c-amber-2); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--c-amber-2); transition: background .25s, color .25s; }
a.svc-row:hover .svc-cta { background: var(--c-amber-2); color: #fff; }
.svc-list.compact .svc-row { grid-template-columns: 56px 1fr auto; }
@media (max-width: 760px) {
  .svc-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .svc-num { font-size: 1.1rem; }
  .svc-img, .svc-noimg { aspect-ratio: 16/9; }
  .svc-cta { display: none; }
}

/* Frise d'étapes (remplace les boîtes .steps) */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; counter-reset: step; max-width: 760px; }
.step { position: relative; padding: 22px 0 22px 88px; background: transparent; border: 0; border-bottom: 1px solid var(--c-line); border-radius: 0; }
.step:last-child { border-bottom: 0; }
.step::before { position: absolute; left: 0; top: 18px; margin: 0; font-size: 2.4rem; color: var(--c-amber-2); }
.step::after { content: ''; position: absolute; left: 66px; top: 26px; width: 10px; height: 10px; border-radius: 50%; background: var(--c-amber); box-shadow: 0 0 0 4px var(--c-amber-soft); }
.step h3 { font-size: 1.3rem; margin-bottom: 4px; }
.step p { font-size: 1rem; max-width: 60ch; }
.bg-ink .step { background: transparent; border-color: rgba(255,255,255,.12); }
.bg-ink .step::before { color: var(--c-sun); }
.bg-ink .step::after { background: var(--c-sun); box-shadow: 0 0 0 4px rgba(242,180,65,.2); }
@media (min-width: 900px) { .steps.two { grid-template-columns: 1fr 1fr; column-gap: 56px; max-width: none; } }
@media (max-width: 640px) { .step { padding-left: 64px; } .step::before { font-size: 1.8rem; top: 22px; } .step::after { left: 46px; } }

/* Split : image + texte côte à côte */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.reverse > figure { order: 2; }
.split figure { margin: 0; position: relative; }
.split figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r-l); box-shadow: var(--shadow-lift); display: block; }
.split figure figcaption { position: absolute; left: 16px; bottom: 16px; background: var(--c-ink); color: #fff; padding: 10px 14px; border-radius: 12px; font-size: .85rem; font-weight: 700; }
.split figure figcaption strong { color: var(--c-sun); }
.split .prose { max-width: none; }
.split .prose h2:first-child { margin-top: 0; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse > figure { order: 0; } .split figure img { aspect-ratio: 16/10; } }

/* Article : texte + colonne latérale (texte seul, pas d'images dans la colonne) */
.article { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 5vw, 64px); align-items: start; }
.article .prose { max-width: 720px; }
@media (max-width: 900px) { .article { grid-template-columns: 1fr; } .aside-card { position: static; } }

/* Neutralise l'ancien rendu des cartes-images encore présentes */
.cards.has-rows { display: block; }

.guarantees { grid-template-columns: 1fr; gap: 0; }
.guarantee { background: transparent; border: 0; border-bottom: 1px solid var(--c-line); border-radius: 0; padding: 14px 0; }
.guarantee:last-child { border-bottom: 0; }
@media (min-width: 700px) { .guarantees { grid-template-columns: 1fr 1fr; column-gap: 40px; } }
.section-tight + .section { padding-top: 0; }
.prose .btn, .prose .btn:hover { text-decoration: none; font-weight: 700; }
.prose .btn-call { color: #fff; }
.prose .btn-sms { color: var(--c-ink); }
.prose .btn-sms:hover { color: #fff; }
.cities { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); }
.article > *, .split > * { min-width: 0; }

/* ===== V5 ===== */
/* Étapes — option A : rangée horizontale, numéro sur filet */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: none; counter-reset: step; }
.step { padding: 18px 0 0; border: 0; border-top: 2px solid var(--c-ink); border-radius: 0; background: transparent; }
.step::before { position: static; display: block; font-size: 2.2rem; margin-bottom: 8px; color: var(--c-amber-2); }
.step::after { display: none; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .97rem; max-width: none; }
.bg-ink .step { border-top-color: rgba(255,255,255,.35); }
.steps.two { grid-template-columns: repeat(4, 1fr); }
.steps.six { grid-template-columns: repeat(3, 1fr); row-gap: 44px; }
@media (max-width: 900px) { .steps, .steps.two, .steps.six { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 560px) { .steps, .steps.two, .steps.six { grid-template-columns: 1fr; } }
/* Étapes — option B : stepper vertical compact */
.steps.vertical { grid-template-columns: 1fr; gap: 0; max-width: 680px; }
.steps.vertical .step { border-top: 0; padding: 0 0 28px 64px; position: relative; }
.steps.vertical .step::before { position: absolute; left: 0; top: -4px; width: 44px; height: 44px; border-radius: 50%; background: var(--c-ink); color: var(--c-sun); font-size: 1.05rem; font-family: var(--f-body); font-weight: 800; display: grid; place-items: center; margin: 0; }
.steps.vertical .step::after { display: block; content: ''; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--c-line); box-shadow: none; border-radius: 0; }
.steps.vertical .step:last-child::after { display: none; }
.steps.vertical .step h3 { margin-bottom: 4px; }
.bg-ink .steps.vertical .step::before { background: var(--c-sun); color: var(--c-ink); }
.bg-ink .steps.vertical .step::after { background: rgba(255,255,255,.18); }

/* Villes — grille 4 x 2 avec commune mise en avant */
.cities { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city.is-current { grid-row: span 2; }
.city.is-current .city-img { aspect-ratio: auto; height: 100%; min-height: 220px; }
.city.is-current { display: grid; grid-template-rows: 1fr auto; }
.city.is-current .city-name { font-size: 1.3rem; padding-top: 14px; }
@media (max-width: 760px) { .cities { grid-template-columns: 1fr 1fr; gap: 10px; } .city.is-current { grid-row: auto; grid-column: span 2; } .city.is-current .city-img { aspect-ratio: 2/1; min-height: 0; height: auto; } }

