/* ============================================
   CARROSSERIE DES FOURNELS
   Interface claire façon iOS récent : fond gris système, cartes blanches à
   grands rayons, barres en verre, une seule couleur d'accent. Les valeurs de
   base (fond, séparateurs, rayons, ombres) sont celles d'iOS pour que les
   proportions sonnent juste.
   ============================================ */

:root {
    --bg:        #F2F2F7;            /* systemGroupedBackground */
    --card:      #FFFFFF;
    --ink:       #1D1D1F;
    --ink-2:     rgba(60, 60, 67, .74);
    --ink-3:     rgba(60, 60, 67, .45);
    --sep:       rgba(60, 60, 67, .13);
    --fill:      rgba(120, 120, 128, .12);   /* systemFill */
    --fill-2:    rgba(120, 120, 128, .18);
    --accent:    #FF3B30;            /* systemRed */
    --accent-2:  #E22C22;

    --r-card:    22px;
    --r-lg:      26px;
    --r-field:   13px;
    --r-pill:    999px;

    --shadow:    0 1px 2px rgba(0, 0, 0, .04), 0 10px 30px rgba(0, 0, 0, .05);
    --shadow-nav: 0 6px 24px rgba(0, 0, 0, .07);
    --ease:      cubic-bezier(.22, .61, .36, 1);
    --wrap:      1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { letter-spacing: -.035em; line-height: 1.1; font-weight: 700; }
a { color: inherit; text-decoration: none; }
/* Les attributs width/height des images servent à réserver la place avant le
   chargement (pas de saut de page). `height: auto` est donc indispensable :
   sans lui, la hauteur écrite dans l'attribut s'applique telle quelle et
   déforme toutes les images redimensionnées en CSS. */
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
[hidden] { display: none !important; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ============ BOUTONS ============ */
/* Au survol, le libellé roule vers le haut pendant que son double arrive par le
   bas, et un reflet traverse le bouton. Le duplicata est écrit par le CSS
   (attr(data-text)) : rien à maintenir dans le HTML. */
.btn, .cta, .nav-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn-text {
    display: block;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    transition: transform .42s cubic-bezier(.76, 0, .24, 1);
}
.btn-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0; top: 2.8em;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}
.btn:hover .btn-text,
.cta:hover .btn-text,
.nav-cta:hover .btn-text { transform: translateY(-2.8em); }

@media (prefers-reduced-motion: reduce) {
    .btn-text { transition: none; }
    .btn:hover .btn-text, .cta:hover .btn-text { transform: none; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: -.01em;
    transition: background .18s var(--ease), transform .12s var(--ease), color .18s var(--ease);
}
.btn:active, .cta:active { transform: scale(.97); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.btn-primary:disabled { opacity: .5; cursor: default; transform: none; }
.btn-soft { background: var(--fill); color: var(--ink); }
.btn-soft:hover { background: var(--fill-2); }

/* Lien d'évitement : invisible à la souris, il apparaît à la première
   tabulation pour sauter la navigation. */
.saut {
    position: absolute;
    top: -60px; left: 14px;
    z-index: 400;
    padding: 12px 20px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-pill);
    font-size: .9rem;
    font-weight: 500;
    transition: top .18s var(--ease);
}
.saut:focus { top: 14px; }

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    display: grid;
    /* Colonnes latérales égales mais jamais plus étroites que leur contenu :
       sinon le numéro de téléphone se casse en deux lignes. */
    grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
    align-items: center;
    gap: 18px;
    width: min(calc(100% - 28px), var(--wrap));
    padding: 9px 9px 9px 20px;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: var(--r-pill);
    box-shadow:
        0 .2px .3px rgba(0, 0, 0, .014),
        0 .5px .7px rgba(0, 0, 0, .018),
        0 1.1px 1.4px rgba(0, 0, 0, .02),
        0 2px 2.6px rgba(0, 0, 0, .022),
        0 3.5px 4.4px rgba(0, 0, 0, .024),
        0 5.8px 7.3px rgba(0, 0, 0, .026),
        0 9.6px 12px rgba(0, 0, 0, .028),
        0 16px 20px rgba(0, 0, 0, .03),
        0 28px 35px rgba(0, 0, 0, .034);
    transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled {
    background: rgba(255, 255, 255, .92);
    box-shadow:
        0 .2px .3px rgba(0, 0, 0, .02),
        0 .5px .7px rgba(0, 0, 0, .03),
        0 1.1px 1.4px rgba(0, 0, 0, .02),
        0 2px 2.6px rgba(0, 0, 0, .036),
        0 3.5px 4.4px rgba(0, 0, 0, .03),
        0 5.8px 7.3px rgba(0, 0, 0, .032),
        0 9.6px 12px rgba(0, 0, 0, .036),
        0 16px 20px rgba(0, 0, 0, .03),
        0 28px 35px rgba(0, 0, 0, .046);
}
.nav-menu { display: contents; }
.nav-brand { justify-self: start; display: flex; align-items: center; }
.nav-brand img { height: 26px; width: auto; }
.nav-links { justify-self: center; display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.nav-links > li > a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: .9rem;
    color: var(--ink-2);
    transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-links > li > a:hover { background: var(--fill); color: var(--ink); }
.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    border-radius: var(--r-pill);
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink);
    background: var(--fill);
    transition: background .18s var(--ease);
}
.nav-call:hover { background: var(--fill-2); }
.nav-cta {
    /* Sorti de la liste, il n'hérite plus de son arrondi : on le pose ici. */
    border-radius: var(--r-pill);
    background: var(--accent);
    color: #fff !important;
    font-weight: 500;
    padding: 9px 18px !important;
}
.nav-cta:hover { background: var(--accent-2) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .22s var(--ease), opacity .18s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============ NAVBAR REPLIÉE ============ */
/* En dessous de 1000 px, logo + cinq liens + téléphone + bouton ne tiennent
   plus dans la pilule : la barre déborderait par la droite. On passe donc au
   menu replié bien avant le format téléphone. */
@media (max-width: 1000px) {
    .nav { display: flex; justify-content: space-between; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0; right: 0;
        display: none;
        padding: 8px;
        background: rgba(255, 255, 255, .9);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, .85);
        border-radius: 22px;
        box-shadow: var(--shadow-nav);
    }
    .nav-menu.open { display: block; }
    /* Le centrage ne vaut que sur grand écran : dans le panneau, les deux
       blocs reprennent toute la largeur. */
    .nav-links { justify-self: stretch; flex-direction: column; align-items: stretch; gap: 2px; }
    .nav-actions { justify-self: stretch; flex-direction: column; align-items: stretch; gap: 6px; margin-top: 6px; }
    .nav-links > li > a { padding: 12px 14px; }
    .nav-call { justify-content: center; }
    .nav-cta { text-align: center; }
}

/* ============ ACCUEIL : LA SCÈNE ============ */
/* Fond sombre, titre centré, deux actions. La photo est posée à cheval entre
   la scène et le blanc : c'est elle qui fait la jonction, pas un dégradé. */
.scene {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: max(520px, 66svh);
    padding-bottom: 150px;
    overflow: hidden;
    /* Un gris léger sous la barre, qui s'éclaircit vers le bas. Pas de couleur :
       le rouge du mot et du bouton suffisent. */
    background: linear-gradient(180deg, #E4E5EA 0%, #EDEEF2 34%, #FCFCFD 68%, #FFFFFF 86%, var(--bg) 100%);
    color: var(--ink);
    text-align: center;
}
/* Le fondu du bas : l'orange s'éteint dans le fond du site, sans arête. Une
   pointe de lumière chaude en haut à droite évite l'aplat parfaitement lisse. */
.scene-lueur {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: none;
}
.scene-corps {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: clamp(122px, 15vh, 170px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scene-titre {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -.04em;
    /* Les stickers dépassent de la ligne : sans cet interligne, celui du bas
       viendrait recouvrir le mot d'en dessous. */
    line-height: 1.24;
    max-width: 20ch;
    color: var(--ink);
}
/* Un seul mot en rouge, celui du logo. */
.scene-titre em { font-style: normal; color: var(--accent); }
.scene-titre > span { display: inline; }
.mot { white-space: nowrap; }
.emoji {
    display: inline-block;
    width: 1.5em;
    height: auto;
    vertical-align: -.32em;
    margin: 0 .04em;
}
.mot:nth-child(1) .emoji { transform: rotate(-9deg); }
.mot:nth-child(2) .emoji { transform: rotate(7deg); }
.scene-titre > span:last-child .emoji { transform: rotate(-5deg); }

.scene-lead {
    margin-top: 18px;
    max-width: 46ch;
    font-size: 1.05rem;
    color: var(--ink-2);
}
.scene-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: var(--r-pill);
    font-size: .98rem;
    font-weight: 500;
    background: var(--accent);
    color: #fff;
    transition: background .18s var(--ease), transform .12s var(--ease), color .18s var(--ease);
}
.cta:hover { background: var(--accent-2); }
.cta:active { transform: scale(.97); }
.cta-verre {
    color: var(--ink);
    background: var(--fill);
    border: none;
}
.cta-verre:hover { background: var(--fill-2); color: var(--ink); }

/* La photo remonte sur la scène : elle appartient aux deux. */
.vitrine { position: relative; z-index: 3; margin-top: -120px; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; list-style: none; }
.facts li { padding: 18px 20px; background: var(--card); border-radius: 18px; box-shadow: var(--shadow); }
.facts strong { display: block; font-size: .96rem; font-weight: 600; letter-spacing: -.02em; }
.facts span { display: block; margin-top: 4px; font-size: .89rem; color: var(--ink-3); }

/* ============ PHOTOS ============ */
.photo {
    position: relative;
    background: var(--card);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.photo > img:first-child { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.photo figcaption {
    position: absolute;
    left: 14px; bottom: 14px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-radius: var(--r-pill);
    font-size: .84rem;
    font-weight: 500;
}

.photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }

/* ============ COMPARATEUR AVANT / APRÈS ============ */
.compare {
    position: relative;
    margin: 26px 0 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: ew-resize;
    touch-action: none;      /* sinon le geste fait défiler la page au lieu de bouger la poignée */
    user-select: none;
}
.compare-img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; display: block; }

/* En tête de page, le comparateur remplace la photo d'atelier : il prend sa
   place exacte (pas de marge haute, l'ombre de la carte) et laisse le coin
   haut droit au sticker « devis gratuit », donc l'étiquette « Après » passe
   à gauche du sticker. */
.compare-hero { margin-top: 0; }
.compare-hero .compare-tag-d { right: clamp(84px, 9.5vw, 118px); }
.compare-hero .sticker-devis { z-index: 5; }
/* La photo « avant » est rognée, pas redimensionnée : les deux images gardent
   exactement le même cadrage, c'est ce qui rend la comparaison lisible. */
.compare-avant {
    position: absolute;
    inset: 0;
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare-avant .compare-img { height: 100%; }

.compare-poignee {
    position: absolute;
    top: 50%;
    left: var(--pos);
    z-index: 3;
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    margin: -23px 0 0 -23px;
    background: #fff;
    border-radius: 50%;
    color: var(--ink);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .28);
    pointer-events: none;
}
/* Le trait qui prolonge la poignée de haut en bas. */
.compare-poignee::before,
.compare-poignee::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 3px;
    margin-left: -1.5px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, .25);
}
.compare-poignee::before { bottom: 100%; height: 50vh; }
.compare-poignee::after { top: 100%; height: 50vh; }

.compare-tag {
    position: absolute;
    top: 16px;
    z-index: 2;
    padding: 6px 14px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-radius: var(--r-pill);
    font-size: .82rem;
    font-weight: 600;
}
.compare-tag-g { left: 16px; }
.compare-tag-d { right: 16px; }

/* Le curseur natif reste au-dessus : il donne le clavier et le tactile
   gratuitement, on le rend seulement invisible. */
.compare-range {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
    background: none;
}
.compare-range::-webkit-slider-thumb { -webkit-appearance: none; width: 46px; height: 100px; }
.compare-range:focus-visible ~ .compare-poignee { outline: 3px solid var(--accent); outline-offset: 3px; }

.compare figcaption {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 2;
    padding: 6px 14px;
    background: rgba(20, 20, 24, .55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--r-pill);
    font-size: .8rem;
    color: #fff;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}
.compare.touche figcaption { opacity: 0; }

/* ============ STICKERS ============ */
/* Autocollants posés sur la page : jamais cliquables, jamais indispensables à
   la compréhension, ils habillent. */
.sticker { position: absolute; pointer-events: none; user-select: none; z-index: 2; }
.sticker-devis { top: 12px; right: 12px; width: clamp(62px, 7.5vw, 94px); transform: rotate(7deg); }
.sticker-coche { right: 16px; bottom: 14px; width: 64px; }
.sticker-card { top: -18px; right: -10px; width: 86px; transform: rotate(-8deg); }
.sticker-card[src*="pare-brise"] { width: 132px; top: -26px; right: -14px; }
.card:has(.sticker-card) h3,
.card:has(.sticker-card) > p { padding-right: 84px; }
.sec-head-sticker { position: relative; padding-right: 130px; }
.sticker-marques { top: -14px; right: 0; width: 108px; transform: rotate(6deg); }
.card.card-hours { position: relative; overflow: visible; }
.sticker-lunel { top: -20px; right: 16px; width: 124px; transform: rotate(-5deg); }
.card { position: relative; }

/* ============ SECTIONS ============ */
.sec { padding: 60px 0; }

/* Section sur fond encre : le gris clair du site s'arrête, les cartes
   deviennent des surfaces posées sur du noir. */
.sec-ink {
    background: var(--ink);
    color: #fff;
    padding: 76px 0;
}
.sec-ink .sec-head h2 { color: #fff; }
.sec-ink .sec-head p { color: rgba(235, 235, 245, .66); }
.sec-ink .card {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: none;
}
.sec-ink .card h3 { color: #fff; }
.sec-ink .card > p { color: rgba(235, 235, 245, .6); }
.sec-head { max-width: 60ch; margin-bottom: 26px; }
.sec-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -.04em; }
.sec-head p { margin-top: 12px; font-size: 1.04rem; color: var(--ink-2); }

/* Les prestations sont présentées comme une petite grille tarifaire : une
   carte par famille, une ligne par prestation. On lit la liste d'un coup
   d'œil, et chaque ligne ouvre la demande de rendez-vous déjà cochée. */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; align-items: start; }

.offre {
    padding: 22px 22px 16px;
    background: #fff;
    border: 1px solid var(--sep);
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 8px 22px rgba(0, 0, 0, .04);
}
/* Hauteur fixe : une famille sans autocollant garde son titre aligné sur
   celui des autres cartes. */
.offre-tete { display: flex; align-items: center; gap: 12px; min-height: 34px; margin-bottom: 14px; }
.offre-sticker { width: 34px; height: auto; flex: none; }
.offre-tete h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }

.offre-liste { list-style: none; }
.offre-liste li + li { border-top: 1px solid var(--sep); }
.offre-ligne {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    padding: 11px 10px 11px 2px;
    border-radius: 10px;
    font-size: .93rem;
    color: var(--ink);
    text-align: left;
    transition: background .16s var(--ease), padding-left .16s var(--ease);
}
.offre-ligne svg { flex: none; color: var(--muted); opacity: 0; transform: translateX(-4px); transition: opacity .16s var(--ease), transform .16s var(--ease), color .16s var(--ease); }
.offre-ligne:hover { background: var(--fill); padding-left: 10px; }
.offre-ligne:hover svg { opacity: 1; transform: none; color: var(--accent); }
.offre-ligne:active { transform: scale(.995); }

.offre-tout {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    padding: 9px 2px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--accent);
    transition: gap .16s var(--ease);
}
.offre-tout:hover { gap: 11px; }

/* Sur le fond encre de la section mécanique, la carte s'inverse. */
.sec-ink .offre {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .1);
    box-shadow: none;
}
.sec-ink .offre-tete h3 { color: #fff; }
.sec-ink .offre-liste li + li { border-top-color: rgba(255, 255, 255, .1); }
.sec-ink .offre-ligne { color: rgba(255, 255, 255, .88); }
.sec-ink .offre-ligne:hover { background: rgba(255, 255, 255, .08); }
.sec-ink .offre-ligne svg { color: rgba(255, 255, 255, .5); }
.sec-ink .offre-ligne:hover svg { color: var(--accent); }

.card {
    padding: 24px;
    background: var(--card);
    border-radius: var(--r-card);
    box-shadow: var(--shadow);
}
.card h3 { font-size: 1.06rem; font-weight: 600; letter-spacing: -.025em; }
.card > p { margin-top: 8px; font-size: .94rem; color: var(--ink-2); }
.card-flush { padding: 0; overflow: hidden; }
.card-head {
    padding: 18px 20px 10px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.card-foot { padding: 12px 20px 18px; font-size: .82rem; color: var(--ink-3); }

/* Liste interne façon « inset grouped » : séparateurs alignés sur le texte. */
.rows { list-style: none; margin-top: 16px; }
.rows li { padding: 11px 0; font-size: .95rem; color: var(--ink-2); border-top: .5px solid var(--sep); }
.rows li:first-child { border-top: none; padding-top: 4px; }

.row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 20px;
    border-top: .5px solid var(--sep);
    transition: background .15s var(--ease);
}
.row:first-child { border-top: none; }
a.row:hover { background: var(--fill); }
.row-label { color: var(--ink-3); font-size: .95rem; }
.row-value { margin-left: auto; font-size: .98rem; font-weight: 500; text-align: right; }
.chev { color: var(--ink-3); flex: none; }
.row-action { padding: 16px 20px 20px; }

/* ============ DÉROULEMENT ============ */
/* Toute la section est posée sur un aplat rouge : les étapes deviennent des
   cartes claires reliées par un tracé blanc, et le gris du site reprend après.
   C'est ce contraste de surface qui fait exister le parcours. */
.sec-rouge {
    background: linear-gradient(168deg, #E8382C 0%, #D8291F 100%);
    color: #fff;
    padding: 92px 0 84px;
}
.sec-sur {
    display: block;
    margin-bottom: 14px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    /* Par défaut sur fond clair ; la variante blanche est posée plus bas pour
       les sections en aplat rouge, où le sur-titre doit s'effacer. */
    color: var(--accent);
}
.sec-rouge .sec-sur, .sec-ink .sec-sur { color: rgba(255, 255, 255, .62); }
.sec-rouge .sec-head h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.sec-rouge .sec-head h2 em { font-style: normal; color: rgba(255, 255, 255, .6); }
.sec-rouge .sec-head p { color: rgba(255, 255, 255, .78); }
.sec-head-center { max-width: 56ch; margin-inline: auto; text-align: center; }

.etapes { position: relative; padding: 70px 0 70px; }
/* Le tracé passe derrière les cartes et se dessine à mesure qu'on descend. */
.etapes-trace {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 620px;
    height: 100%;
    transform: translateX(-50%);
    overflow: visible;
    pointer-events: none;
}
.etapes-trace path { fill: none; stroke-width: 3.5; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.trace-fond { stroke: rgba(255, 255, 255, .26); }
.trace-actif { stroke: #fff; stroke-dasharray: 4000; stroke-dashoffset: 4000; }
/* Pointe de flèche au bout du trait : on voit où il en est de sa descente. */
.trace-pointe { opacity: 0; transition: opacity .3s var(--ease); }
.trace-pointe path {
    fill: none;
    stroke: #fff;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}
.etapes.anim .trace-pointe.visible { opacity: 1; }

.etapes-liste { list-style: none; display: grid; gap: 520px; position: relative; z-index: 2; }
.etape { display: flex; }
.etape:nth-child(even) { justify-content: flex-end; }

/* Cartes en rose très clair sur le rouge : même principe que les cartes vert
   pâle sur fond vert de la référence. */
.etape-carte {
    width: min(52%, 600px);
    padding: 40px 40px 42px;
    background: #FFEDEA;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(120, 20, 14, .18);
}
/* L'icône est posée directement sur la carte rose, sans pastille derrière :
   la hauteur est fixe pour que les trois cartes s'alignent malgré des
   proportions très différentes (le calendrier est carré, la clé est haute). */
.etape-icone {
    display: block;
    width: auto;
    height: 46px;
    margin-bottom: 22px;
}
.etape-carte h3 { font-size: 2rem; font-weight: 700; line-height: 1.15; letter-spacing: -.03em; color: #B0231E; }
.etape-carte p { margin-top: 14px; font-size: 1.18rem; line-height: 1.55; color: #A85C54; }

/* État d'attente : posé seulement si le script tourne, pour que le contenu
   reste lisible sans JavaScript. */
.etapes.anim .etape {
    opacity: 0;
    transform: translateY(38px) scale(.97);
    transition: opacity .6s var(--ease), transform .7s cubic-bezier(.22, .61, .36, 1);
}
.etapes.anim .etape.vue { opacity: 1; transform: translateY(var(--retard, 0)); }

@media (prefers-reduced-motion: reduce) {
    .etapes.anim .etape { opacity: 1; transform: none; transition: none; }
    .trace-actif { stroke-dashoffset: 0 !important; }
}

/* L'autocollant du bloc « sinistre ». */
.callout-sticker { width: 58px; height: auto; flex: none; }

/* Le bloc « sinistre », posé juste après les étapes. */
.callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 64px;
    padding: 38px 40px;
    border-radius: var(--r-lg);
}
.callout h3 { font-size: 1.4rem; letter-spacing: -.03em; }
.callout p { margin-top: 10px; max-width: 62ch; font-size: 1rem; }
.callout .btn { flex: none; }

.callout-rouge { background: #fff; color: var(--ink); box-shadow: 0 20px 50px rgba(120, 20, 14, .16); }
.callout-rouge p { color: var(--ink-2); }

/* ============ AVIS ============ */
.sec-avis { padding-bottom: 70px; overflow: hidden; }
.note-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 18px;
    background: var(--card);
    border-radius: var(--r-pill);
    box-shadow: var(--shadow);
}
.logo-google { width: 20px; height: 20px; }
.note-google strong { font-size: 1.15rem; font-weight: 700; letter-spacing: -.02em; }
.etoiles { display: inline-flex; gap: 2px; }
.etoiles svg { width: 16px; height: 16px; fill: #FFB800; }
.note-compte { font-size: .9rem; color: var(--ink-2); }

/* Le mur : quatre colonnes qui défilent en sens alterné, posées en perspective.
   Aucune minuterie, aucun état : deux pistes identiques par colonne et une
   animation de translation. Le défilement ne s'arrête pas au survol — un mur
   qui se fige sous la souris passe pour un bug. */
.mur {
    position: relative;
    height: 560px;
    margin-top: 34px;
    overflow: hidden;
    perspective: 1000px;
}
.mur-scene {
    display: flex;
    justify-content: center;
    align-items: flex-start;   /* sinon les colonnes s'étirent et la boucle saute */
    gap: 16px;
    height: 100%;
    transform: rotateX(10deg) rotateZ(-5deg) scale(1.1);
    transform-origin: center;
}
.mur-colonne {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 300px;
    flex: none;
}
.mur-colonne[data-sens="bas"] { animation: mur-bas 64s linear infinite; }
.mur-colonne[data-sens="haut"] { animation: mur-haut 76s linear infinite; }
.mur-piste { display: flex; flex-direction: column; gap: 16px; }
@keyframes mur-bas  { from { transform: translateY(-50%); } to { transform: translateY(0); } }
@keyframes mur-haut { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@media (prefers-reduced-motion: reduce) {
    .mur-colonne { animation: none !important; }
}

.mur-fondu { position: absolute; left: 0; right: 0; height: 130px; pointer-events: none; }
.mur-fondu-haut { top: 0; background: linear-gradient(180deg, var(--bg) 10%, rgba(242, 242, 247, 0)); }
.mur-fondu-bas { bottom: 0; background: linear-gradient(0deg, var(--bg) 10%, rgba(242, 242, 247, 0)); }

.avis-carte {
    margin: 0;
    padding: 18px;
    background: var(--card);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.avis-tete { display: flex; align-items: center; gap: 10px; }
.avis-photo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex: none; }
.avis-tete figcaption { display: grid; line-height: 1.25; }
.avis-nom { font-size: .92rem; font-weight: 600; letter-spacing: -.01em; }
.avis-date { font-size: .8rem; color: var(--ink-3); }
.avis-google { width: 18px; height: 18px; margin-left: auto; flex: none; }
.avis-etoiles { display: flex; gap: 2px; margin: 12px 0 8px; }
.avis-etoiles svg { width: 14px; height: 14px; fill: #FFB800; }
.avis-texte {
    margin: 0;
    font-size: .92rem;
    line-height: 1.55;
    color: var(--ink-2);
    /* Les avis très longs sont coupés : une carte de mur doit se lire d'un
       coup d'œil pendant qu'elle défile. */
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.avis-pied { display: flex; justify-content: center; margin-top: 26px; }


/* ============ QUESTIONS FRÉQUENTES ============ */
/* Un <details> natif : ça s'ouvre sans JavaScript, le contenu reste dans la
   page pour les moteurs, et le clavier fonctionne tout seul. */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 10px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--sep);
    border-radius: 16px;
    overflow: hidden;
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    transition: background .16s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--fill); }
.faq-item summary svg { flex: none; color: var(--muted); transition: transform .2s var(--ease); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--accent); }
.faq-item p {
    padding: 0 20px 20px;
    font-size: .96rem;
    line-height: 1.65;
    color: var(--ink-2);
}

@media (max-width: 760px) {
    .faq-item summary { padding: 16px; font-size: .95rem; }
    .faq-item p { padding: 0 16px 16px; font-size: .92rem; }
}

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 16px; align-items: start; }
.contact-col { display: grid; gap: 16px; }

/* Formulaire de contact : mêmes champs que le tunnel, pour que l'ensemble du
   site n'ait qu'une seule façon de saisir. */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 4px 20px 22px; }
.contact-form .bk-field-full { grid-column: 1 / -1; }
.contact-send { grid-column: 1 / -1; margin-top: 4px; }
.contact-msg { grid-column: 1 / -1; margin: 0; }
.contact-ok {
    padding: 12px 15px;
    background: #E8F8EC;
    border-radius: var(--r-field);
    color: #1D7A3E;
    font-size: .92rem;
}
/* Champ leurre : hors écran plutôt que display:none, que certains robots
   savent détecter. */
.pot-de-miel {
    position: absolute !important;
    left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}
.hours { list-style: none; }
.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    font-size: .95rem;
    color: var(--ink-2);
    border-top: .5px solid var(--sep);
}
.hours-row:first-child { border-top: none; }
.hours-row.today { color: var(--ink); font-weight: 600; }
.map { margin-top: 16px; background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.map iframe { width: 100%; height: 340px; border: 0; display: block; }


/* ============ BLOG ============ */
/* Une colonne de lecture étroite : au-delà d'environ 70 caractères par ligne,
   l'œil perd le début de la ligne suivante. Le reste de la page respire
   autour. */
.art { padding: 130px 0 90px; }
.art-wrap { max-width: 720px; }

.fil-ariane {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    font-size: .84rem;
    color: var(--muted);
}
.fil-ariane a { color: var(--muted); transition: color .16s var(--ease); }
.fil-ariane a:hover { color: var(--accent); }

.art-tete { padding-bottom: 26px; border-bottom: 1px solid var(--sep); }
.art-theme, .post-theme, .suite-theme {
    display: inline-block;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    background: rgba(255, 59, 48, .1);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--accent-2);
}
.art-tete h1 {
    margin-top: 16px;
    font-size: clamp(1.9rem, 4.4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.04em;
}
.art-chapeau { margin-top: 16px; font-size: 1.15rem; line-height: 1.6; color: var(--ink-2); }
.art-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; font-size: .86rem; color: var(--muted); }

/* Le corps de l'article. Tout se règle ici : le reste des pages n'a pas de
   styles de prose, et c'est voulu — la lecture longue n'existe que dans le
   blog. */
.art-corps { padding-top: 30px; font-size: 1.06rem; line-height: 1.75; color: var(--ink-2); }
.art-corps > p { margin-bottom: 22px; }
.art-corps strong { color: var(--ink); font-weight: 600; }
.art-corps em { font-style: italic; }
.art-corps h2 {
    margin: 44px 0 16px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--ink);
}
.art-corps h3 {
    margin: 30px 0 10px;
    font-size: 1.12rem;
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--ink);
}
.art-corps ul, .art-corps ol { margin: 0 0 24px; padding-left: 24px; }
.art-corps li { margin-bottom: 10px; }
.art-corps li::marker { color: var(--accent); }
.art-corps a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* L'encadré : ce qu'on dirait en levant les yeux du capot. */
.art-note {
    margin: 30px 0;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--sep);
    border-left: 3px solid var(--accent);
    border-radius: 16px;
    font-size: 1rem;
    line-height: 1.65;
}
.art-note strong { color: var(--ink); }

.art-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 54px;
    padding: 28px 30px;
    background: var(--ink);
    border-radius: var(--r-card);
    color: #fff;
}
.art-cta h2 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.03em; }
.art-cta p { margin-top: 6px; font-size: .96rem; color: rgba(235, 235, 245, .66); }
.art-cta-boutons { display: flex; flex-wrap: wrap; gap: 10px; }
.art-cta .btn-soft { background: rgba(255, 255, 255, .12); color: #fff; }
.art-cta .btn-soft:hover { background: rgba(255, 255, 255, .2); }

.art-suite { margin-top: 56px; }
.art-suite h2 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.03em; margin-bottom: 16px; }
.suite-grille { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.suite-carte {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid var(--sep);
    border-radius: 18px;
    transition: transform .18s var(--ease), border-color .18s var(--ease);
}
.suite-carte:hover { transform: translateY(-2px); border-color: var(--ink-3); }
.suite-carte strong { font-size: 1.02rem; font-weight: 600; line-height: 1.3; letter-spacing: -.02em; }
.suite-theme { justify-self: start; }
.suite-lire { font-size: .86rem; font-weight: 500; color: var(--accent); }

/* -- Index du blog -- */
.blog-tete { max-width: 640px; padding-bottom: 34px; }
.blog-tete h1 {
    margin-top: 12px;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.04em;
}
.blog-tete h1 em { font-style: italic; color: var(--accent); }
.blog-tete p { margin-top: 16px; font-size: 1.06rem; line-height: 1.6; color: var(--ink-2); }

.posts { display: grid; gap: 14px; }
.post > a {
    display: grid;
    gap: 12px;
    padding: 26px 28px;
    background: #fff;
    border: 1px solid var(--sep);
    border-radius: 20px;
    transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.post > a:hover {
    transform: translateY(-2px);
    border-color: var(--ink-3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}
.post-theme { justify-self: start; }
.post h2 { font-size: 1.35rem; font-weight: 700; line-height: 1.22; letter-spacing: -.03em; }
.post p { font-size: 1rem; line-height: 1.6; color: var(--ink-2); }
.post-meta { font-size: .84rem; color: var(--muted); }

@media (max-width: 760px) {
    .art { padding: 100px 0 60px; }
    .art-corps { font-size: 1.02rem; }
    .art-corps h2 { font-size: 1.32rem; margin-top: 36px; }
    .art-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
    .art-cta-boutons { width: 100%; }
    .art-cta-boutons .btn { flex: 1; }
    .post > a { padding: 22px; }
    .post h2 { font-size: 1.2rem; }
}

/* ============ PIED DE PAGE ============ */
.footer { padding: 54px 0 60px; background: var(--ink); color: rgba(235, 235, 245, .5); }
.footer-inner { display: grid; gap: 18px; }
.footer-inner strong { display: block; color: #fff; font-size: .98rem; font-weight: 600; letter-spacing: -.02em; }
.footer-logo { height: 30px; width: auto; margin-bottom: 12px; }
.footer-inner span { font-size: .9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; font-size: .9rem; }
.footer-nav a:hover { color: #fff; }
.footer-legal { font-size: .82rem; }

/* ════════════════════════════════════════════
   TUNNEL DE RÉSERVATION
   ════════════════════════════════════════════ */
.bk-page {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
    flex-direction: column;
    background: var(--bg);
    overflow-y: auto;
    /* La feuille monte depuis le bas, à la façon d'une modale iOS. La courbe
       part vite et se pose doucement : c'est elle qui donne la sensation de
       poids, pas la durée. */
    transform: translateY(100%);
    opacity: .4;
    transition: transform .46s cubic-bezier(.32, .72, 0, 1), opacity .3s ease;
}
.bk-page.active { display: flex; }
.bk-page.bk-in { transform: none; opacity: 1; }

/* Le contenu se pose juste après la feuille, en cascade. */
.bk-page .bk-topbar,
.bk-page .bk-steps,
.bk-page .bk-main,
.bk-page .bk-summary {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .42s ease, transform .52s cubic-bezier(.22, .61, .36, 1);
}
.bk-page.bk-in .bk-topbar,
.bk-page.bk-in .bk-steps,
.bk-page.bk-in .bk-main,
.bk-page.bk-in .bk-summary { opacity: 1; transform: none; }
.bk-page.bk-in .bk-topbar { transition-delay: .04s; }
.bk-page.bk-in .bk-steps { transition-delay: .1s; }
.bk-page.bk-in .bk-main { transition-delay: .16s; }
.bk-page.bk-in .bk-summary { transition-delay: .22s; }

/* Le bouton qui a lancé l'ouverture s'efface une fraction de seconde : le
   mouvement paraît partir de lui. */
.cdf-launching { opacity: .35; transform: scale(.96); transition: opacity .2s ease, transform .2s ease; }

@media (prefers-reduced-motion: reduce) {
    .bk-page,
    .bk-page .bk-topbar, .bk-page .bk-steps, .bk-page .bk-main, .bk-page .bk-summary {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* Barre de navigation façon iOS : action à gauche, titre centré, action à droite. */
.bk-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    flex: none;
    display: grid;
    /* Colonnes latérales égales mais jamais plus étroites que leur contenu :
       sinon le numéro de téléphone se casse en deux lignes. */
    grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(242, 242, 247, .82);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-bottom: .5px solid var(--sep);
}
.bk-back-home { display: inline-flex; align-items: center; gap: 2px; font-size: .96rem; color: var(--accent); }
.bk-topbar-title { display: flex; align-items: center; justify-content: center; gap: 9px; text-align: center; font-size: 1rem; font-weight: 600; letter-spacing: -.02em; }
.bk-topbar-logo { height: 20px; width: auto; }
.bk-quit { justify-self: end; font-size: .96rem; color: var(--accent); }

/* Fil d'étapes : contrôle segmenté. */
.bk-steps {
    flex: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: min(calc(100% - 40px), 620px);
    margin: 22px auto 0;
    padding: 2px;
    background: var(--fill);
    border-radius: 12px;
}
.bk-step-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: .86rem;
    color: var(--ink-2);
    cursor: default;
    transition: background .2s var(--ease), box-shadow .2s var(--ease);
}
.bk-step-dot span { font-weight: 600; color: var(--ink-3); }
.bk-step-dot em { font-style: normal; }
.bk-step-dot.active { background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .1); color: var(--ink); font-weight: 500; }
.bk-step-dot.active span { color: var(--accent); }
.bk-step-dot.done { cursor: pointer; }
.bk-step-dot.done:hover { background: rgba(255, 255, 255, .6); }

.bk-layout {
    flex: none;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 16px;
    align-items: start;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 22px 20px 60px;
}
.bk-main { background: var(--card); border-radius: var(--r-card); box-shadow: var(--shadow); overflow: hidden; }
.bk-body { padding: 28px 30px; }
.bk-panel { display: none; }
.bk-panel.active { display: block; }

.bk-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -.035em; }
.bk-lead { margin: 10px 0 24px; color: var(--ink-2); font-size: .96rem; }
.bk-opt { color: var(--ink-3); font-weight: 400; }

/* -- Étape 1 : prestations -- */
.bk-services { display: grid; gap: 22px; }
.bk-svc-grouphead {
    margin-bottom: 10px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.bk-svc-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 8px; }
.bk-svc {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    background: var(--bg);
    border: 1.5px solid transparent;
    border-radius: 14px;
    text-align: left;
    font-size: .94rem;
    transition: background .15s var(--ease), border-color .15s var(--ease);
}
.bk-svc:hover { background: var(--fill-2); }
.bk-svc-check {
    display: grid; place-items: center;
    width: 21px; height: 21px;
    border: 1.5px solid var(--ink-3);
    border-radius: 50%;
    flex: none;
    transition: background .15s var(--ease), border-color .15s var(--ease);
}
.bk-svc.selected { border-color: var(--accent); background: #fff; font-weight: 500; }
.bk-svc.selected .bk-svc-check { background: var(--accent); border-color: var(--accent); }
.bk-svc.selected .bk-svc-check::after {
    content: '';
    width: 9px; height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
}

/* -- Champs -- */
.bk-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bk-field { position: relative; display: flex; flex-direction: column; gap: 7px; }

/* Liste de suggestions du champ Marque : une carte du site, pas la liste du
   système. */
.bk-suggest {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 30;
    margin-top: 6px;
    max-height: 264px;
    overflow-y: auto;
    padding: 6px;
    background: var(--card);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 14px 40px rgba(0, 0, 0, .14);
}
.bk-suggest button {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    text-align: left;
    font-size: .95rem;
    color: var(--ink);
    transition: background .12s var(--ease);
}
.bk-suggest button:hover,
.bk-suggest button.active { background: var(--fill); }
.bk-field-full { grid-column: 1 / -1; }
.bk-field label, .bk-field-label { font-size: .86rem; font-weight: 500; color: var(--ink-2); }
.bk-field input, .bk-field textarea {
    width: 100%;
    padding: 13px 14px;
    background: var(--bg);
    border: 1.5px solid transparent;
    border-radius: var(--r-field);
    font-family: inherit;
    font-size: .96rem;
    color: var(--ink);
    transition: border-color .15s var(--ease), background .15s var(--ease);
}
.bk-field input::placeholder, .bk-field textarea::placeholder { color: var(--ink-3); }
.bk-field input:focus, .bk-field textarea:focus { outline: none; background: #fff; border-color: var(--accent); }
.bk-field textarea { resize: vertical; min-height: 92px; }
.bk-field.has-error input, .bk-field.has-error textarea { border-color: var(--accent); background: #FFF5F5; }
.bk-field-error { font-size: .84rem; color: var(--accent); }
#bkPlate { text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

.bk-choice { display: flex; flex-wrap: wrap; gap: 8px; }
.bk-choice-btn {
    padding: 11px 18px;
    background: var(--bg);
    border: 1.5px solid transparent;
    border-radius: var(--r-pill);
    font-size: .93rem;
    transition: background .15s var(--ease), border-color .15s var(--ease);
}
.bk-choice-btn:hover { background: var(--fill-2); }
.bk-choice-btn.selected { border-color: var(--accent); background: #fff; color: var(--accent); font-weight: 500; }

.bk-insurance { margin-top: 26px; padding-top: 22px; border-top: .5px solid var(--sep); }
.bk-insurance h3 { font-size: 1rem; font-weight: 600; }
.bk-insurance > p { margin: 6px 0 16px; font-size: .89rem; color: var(--ink-3); }

/* -- Étape 3 : calendrier -- */
.bk-booking { display: grid; grid-template-columns: 1fr 236px; gap: 20px; align-items: start; }
.booking-cal { padding: 16px; background: var(--bg); border-radius: 18px; }
.booking-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.booking-month { font-weight: 600; letter-spacing: -.02em; }
.booking-nav {
    display: grid; place-items: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    color: var(--accent);
    transition: background .15s var(--ease);
}
.booking-nav:hover:not(:disabled) { background: var(--fill); }
.booking-nav:disabled { opacity: .3; cursor: default; }
.booking-weekdays, .booking-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.booking-weekdays span { text-align: center; padding-bottom: 8px; font-size: .74rem; color: var(--ink-3); }
.booking-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 50%;
    font-size: .93rem;
    transition: background .15s var(--ease);
}
.booking-day.empty { background: none; }
.booking-day:not(.disabled):not(.selected):hover { background: var(--fill-2); }
.booking-day.disabled { color: var(--ink-3); opacity: .5; cursor: default; }
.booking-day.selected { background: var(--accent); color: #fff; font-weight: 600; }
.bk-tag { font-size: .52rem; text-transform: uppercase; letter-spacing: .02em; color: var(--ink-3); }
.booking-day.selected .bk-tag { color: rgba(255, 255, 255, .8); }

.booking-slots { padding: 16px; background: var(--bg); border-radius: 18px; min-height: 200px; }
.booking-hint { font-size: .92rem; color: var(--ink-3); }
.booking-slots-title { margin-bottom: 12px; font-weight: 600; font-size: .93rem; }
.booking-slots-title::first-letter { text-transform: uppercase; }
.booking-slots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.booking-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 11px 6px;
    background: #fff;
    border: 1.5px solid transparent;
    border-radius: 12px;
    font-size: .94rem;
    font-weight: 500;
    transition: border-color .15s var(--ease), background .15s var(--ease);
}
.booking-slot span { font-size: .68rem; font-weight: 400; color: var(--ink-3); }
.booking-slot:not(.disabled):not(.selected):hover { border-color: var(--ink-3); }
.booking-slot.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.booking-slot.selected span { color: rgba(255, 255, 255, .8); }
.booking-slot.disabled { opacity: .4; cursor: default; text-decoration: line-through; }

/* -- Confirmation -- */
.bk-done { padding: 14px 0 6px; }
.bk-done-mark {
    display: grid; place-items: center;
    width: 62px; height: 62px;
    margin-bottom: 22px;
    background: #E8F8EC;
    border-radius: 50%;
    color: #34C759;
}
.bk-done-text { max-width: 50ch; margin: 12px 0 26px; color: var(--ink-2); }

/* -- Pied du tunnel -- */
.bk-foot { padding: 18px 30px 26px; border-top: .5px solid var(--sep); }
.bk-error {
    margin-bottom: 14px;
    padding: 12px 15px;
    background: #FFF0EF;
    border-radius: var(--r-field);
    color: var(--accent-2);
    font-size: .92rem;
}
.bk-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bk-btn-back { padding: 12px 20px; border-radius: var(--r-pill); font-size: .95rem; color: var(--ink-2); }
.bk-btn-back:hover { background: var(--fill); color: var(--ink); }
.bk-btn-next { margin-left: auto; min-width: 180px; }

/* -- Récapitulatif -- */
.bk-summary { position: sticky; top: 96px; }
.bk-summary-inner { background: var(--card); border-radius: var(--r-card); box-shadow: var(--shadow); overflow: hidden; }
.bk-sum-block { padding: 14px 20px; border-top: .5px solid var(--sep); }
.bk-sum-block:first-child { border-top: none; }
.bk-sum-label { display: block; margin-bottom: 5px; font-size: .78rem; color: var(--ink-3); }
.bk-sum-block strong { display: block; font-size: .96rem; font-weight: 500; }
.bk-sum-muted { display: block; font-size: .9rem; color: var(--ink-3); }
.bk-sum-chips { display: grid; gap: 3px; }
.bk-sum-chip { font-size: .92rem; }
.bk-sum-plate {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 9px;
    background: var(--fill);
    border-radius: 7px;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .06em;
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 980px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; }
    /* Sur téléphone, le tracé devient un fil vertical calé à gauche et chaque
       carte reçoit un jalon en face : le serpentin, ramené à 60 px de large,
       n'était plus lisible et passait sous les cartes. */
    .sec-rouge { padding: 64px 0 60px; }
    .etapes { padding: 40px 0 30px; }
    .etapes-liste { gap: 300px; }
    .etapes-trace { left: 10px; width: 60px; transform: none; }
    .etape, .etape:nth-child(even) { justify-content: flex-end; }
    .etape-carte { position: relative; width: calc(100% - 58px); padding: 28px 24px 30px; }
    .etape-carte h3 { font-size: 1.55rem; }
    .etape-carte p { font-size: 1.05rem; }
    .etape-icone { height: 38px; margin-bottom: 18px; }

    /* Le jalon : un point posé sur le fil. */
    .etape-carte::before {
        content: '';
        position: absolute;
        left: -35px;
        top: 38px;
        width: 13px; height: 13px;
        border-radius: 50%;
        background: rgba(216, 41, 31, .9);
        box-shadow: 0 0 0 3px currentColor;
        transition: background .4s var(--ease);
    }
    .etape-rouge .etape-carte::before { color: var(--accent); }
    .etape-encre .etape-carte::before { color: var(--ink); }
    .etape-clair .etape-carte::before { color: var(--ink-3); }
    .etape.vue .etape-carte::before { background: currentColor; }
    .facts { grid-template-columns: 1fr; }
    .bk-layout { grid-template-columns: 1fr; }
    .bk-summary { position: static; order: -1; }
    .bk-page[data-step="1"] .bk-summary { display: none; }
    .bk-booking { grid-template-columns: 1fr; }
    .booking-slots-grid { grid-template-columns: repeat(3, 1fr); }
    .callout { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 760px) {
    .nav { top: 10px; padding: 9px 9px 9px 16px; }
    .nav-toggle { display: flex; }
    .nav-brand img { height: 22px; }
    .bk-topbar-logo { display: none; }

    .scene { min-height: 0; padding-bottom: 120px; }
    .scene-corps { padding-top: 108px; }
    .scene-titre { max-width: 100%; font-size: clamp(1.75rem, 8.4vw, 2.4rem); }
    .scene-actions { width: 100%; flex-direction: column; }
    .cta { width: 100%; }
    .vitrine { margin-top: -100px; }
    .photo-row { grid-template-columns: 1fr; }
    /* Le mur sur téléphone est réglé plus bas, avec le reste des avis. */
    .sticker-marques { width: 78px; top: -8px; }
    .sec-head-sticker { padding-right: 90px; }
    .offre { padding: 18px 18px 12px; }
    .offre-sticker { width: 30px; }
    .offre-ligne { font-size: .9rem; padding: 12px 8px 12px 2px; }
    .sticker-lunel { width: 92px; }
    .sec { padding: 44px 0; }

    .bk-topbar { padding: 11px 16px; }
    .bk-topbar-title { font-size: .95rem; }
    .bk-steps { width: calc(100% - 32px); margin-top: 16px; }
    .bk-step-dot em { display: none; }
    .bk-layout { padding: 16px 16px 44px; }
    .bk-body { padding: 22px 18px; }
    .bk-foot { padding: 16px 18px 22px; }
    .bk-fields { grid-template-columns: 1fr; }
    .bk-svc-list { grid-template-columns: 1fr; }
    .booking-slots-grid { grid-template-columns: repeat(2, 1fr); }
    .bk-btn-next { flex: 1; min-width: 0; }
}

/* ============ CONFETTIS DE CONFIRMATION ============
   Créé et retiré par le script à l'écran « Demande envoyée ». Au-dessus du
   tunnel (z-index 500), mais transparent aux clics : le bouton « Retour au
   site » reste utilisable pendant que ça tombe. */
.confettis {
    position: fixed;
    inset: 0;
    z-index: 600;
    pointer-events: none;
}

/* ============ LE MUR D'AVIS SUR TÉLÉPHONE ============
   Sur grand écran, quatre colonnes défilent en perspective. Telle quelle, la
   scène ne laissait voir qu'une colonne rognée des deux côtés sur un téléphone,
   avec des cartes tronquées : on perdait l'effet de mur qui fait tout l'intérêt.
   On garde donc le même principe — plusieurs colonnes qui défilent en sens
   opposés — mais à l'échelle de l'écran : deux colonnes, moins d'inclinaison,
   des cartes plus compactes. */
@media (max-width: 780px) {
    .mur { height: 470px; }
    .mur-scene {
        gap: 10px;
        /* Presque de face : à cette largeur, l'inclinaison du grand écran
           rendait le texte des bords illisible. */
        transform: rotateX(6deg) rotateZ(-1.5deg);
    }
    /* Largeur fixe plutôt qu'en pourcentage : deux colonnes de 205 px
       dépassent un peu l'écran et sont rognées par le cadre — c'est ce que fait
       déjà la version grand écran, dont les colonnes latérales sont coupées.
       Une carte reste lisible, et le mur ne ressemble pas à une liste. */
    .mur-colonne { width: 185px; gap: 10px; }
    .mur-piste { gap: 10px; }
    /* Deux colonnes, pas une : c'est ce qui fait la différence entre un mur et
       une simple liste. Les suivantes déborderaient. */
    .mur-colonne { display: flex; }
    .mur-colonne:nth-of-type(n+3) { display: none; }

    .avis-carte { padding: 13px; border-radius: 16px; }
    .avis-tete { gap: 8px; }
    .avis-photo { width: 30px; height: 30px; }
    .avis-nom { font-size: .82rem; }
    .avis-date { font-size: .72rem; }
    .avis-google { width: 15px; height: 15px; }
    .avis-etoiles { margin: 9px 0 6px; }
    .avis-etoiles svg { width: 12px; height: 12px; }
    .avis-texte { font-size: .82rem; line-height: 1.5; -webkit-line-clamp: 6; }
    .mur-fondu { height: 95px; }
}
