/* ==========================================================
   Calendrier de réservation des ateliers — Entre Deux
   Utilise les variables de couleur déjà définies par chaque page.
   ========================================================== */

/* 72 px de retrait faisaient de ce bloc l'exception du site : additionnés aux
   42 px de la section voisine, ils creusaient près de 150 px de vide de part et
   d'autre du calendrier. Même respiration que les autres sections désormais. */
.resa-section {
    padding: 42px 0;
    background: var(--cream);
}

.resa {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.resa__head {
    text-align: center;
    margin-bottom: 34px;
}

/* Sur les pages d'atelier, l'en-tete est suivi du seul #resaCalendrier, qui n'est
   qu'un point d'ancrage : le script y ecrit la fenetre du calendrier puis la
   deplace sur <body>. Ses 34 px ne separaient donc plus rien et s'ajoutaient au
   retrait de la section, soit 54 px de blanc pour finir la page au telephone.
   Sur /ateliers, un bouton suit l'en-tete : la marge y garde tout son sens. */
.resa__head:has(+ #resaCalendrier) {
    margin-bottom: 0;
}

/* Pages atelier : plus d'en-tête ni de bouton — seulement l'ancre #calendrier.
   Le gabarit part sur <body> : sans ça, 40–60 px de crème vide avant le footer. */
.resa-section:has(> .resa > #resaCalendrier:only-child) {
    padding: 0;
    min-height: 0;
}
.resa-section:has(> .resa > #resaCalendrier:only-child) > .resa {
    padding: 0;
    max-width: none;
}
.resa-section:has(> .resa > #resaCalendrier:only-child) #resaCalendrier {
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* 2–3 prochaines dates libres en clair (hors popup calendrier). */
.resa-rapides {
    max-width: 720px;
    margin: 0 auto 28px;
    padding: 0 24px;
}
.resa-rapides__list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}
.resa-rapides__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px 20px;
    align-items: center;
    padding: 16px 18px;
    background: var(--white, #fff);
    border: 1px solid rgba(90, 62, 62, 0.08);
    border-radius: var(--radius, 14px);
}
.resa-rapides__quand {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 8.5em;
}
/* En français le mois reste en minuscules : « Dim. 16 août », pas « 16 Août ».
   D'où ::first-letter plutôt que capitalize, qui frappe chaque mot. */
.resa-rapides__quand b {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brown);
}
.resa-rapides__quand b::first-letter {
    text-transform: uppercase;
}
.resa-rapides__quand span {
    font-size: .84rem;
    color: var(--sage-dark, #6b7f5e);
    font-weight: 600;
}
/* Ce qu'on obtient d'abord, ce qu'on paie ensuite. */
.resa-rapides__nom {
    margin: 0 0 2px;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--brown);
}
.resa-rapides__meta {
    margin: 0;
    font-size: .88rem;
    line-height: 1.45;
    color: var(--brown);
}
/* Dit une fois au-dessus des dates : l'autre atelier existe aux mêmes créneaux,
   sans disputer la lecture à la date elle-même. */
.resa-rapides__note {
    margin: 0 0 12px;
    font-size: .85rem;
    line-height: 1.5;
    color: var(--brown-soft, #7a6a60);
}
/* Les capitales d'origine hurlaient sur trois lignes identiques. Casse normale,
   et seule la date la plus proche garde le bouton plein. Sélecteur doublé : les
   pages déclarent `.btn` dans un <style> posé après cette feuille. */
.resa-rapides .resa-rapides__btn {
    text-transform: none;
    letter-spacing: .2px;
    font-size: .82rem;
    padding: 11px 22px;
    white-space: nowrap;
}
.resa-rapides__chargement {
    text-align: center;
    font-size: .9rem;
    color: var(--brown-soft);
    margin: 0;
}
@media (max-width: 640px) {
    .resa-rapides__item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6px;
    }
    .resa-rapides__quand { align-items: center; min-width: 0; }
    .resa-rapides__item .btn { width: 100%; justify-content: center; margin-top: 6px; }
}

.resa__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 14px;
}

.resa__eyebrow::before,
.resa__eyebrow::after {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--sage);
    opacity: .5;
}

.resa__title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 500;
    color: var(--brown);
    line-height: 1.2;
    margin: 0 0 12px;
}

.resa__intro {
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--brown-soft);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ---------- Teaser + popup agenda ----------
   Le calendrier ne reste plus inline : un bandeau ouvre la modale. */

.resa__teaser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px 24px;
    flex-wrap: wrap;
    padding: 22px 26px;
    background: linear-gradient(135deg, #fdf8f4 0%, #f7efe8 100%);
    border: 1px solid rgba(196, 142, 142, .22);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.resa__teaser-titre {
    font-family: var(--serif);
    font-size: 1.28rem;
    color: var(--brown);
    margin: 0 0 6px;
}

.resa__teaser-info {
    font-family: var(--sans);
    font-size: .9rem;
    color: var(--brown-soft);
    line-height: 1.55;
    margin: 0;
}

.resa__teaser-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 22px;
    border: none;
    border-radius: 999px;
    background: var(--sage);
    color: #fff;
    font-family: var(--sans);
    font-size: .92rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.resa__teaser-btn:hover {
    background: var(--sage-dark);
    transform: translateY(-1px);
}

.resa-agenda {
    position: fixed;
    inset: 0;
    z-index: 9400;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 16px;
    overflow-y: auto;
    background: rgba(58, 40, 40, .55);
    backdrop-filter: blur(4px);
}

.resa-agenda.is-open {
    display: flex;
}

.resa-agenda__box {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(58, 40, 40, .3);
    overflow: hidden;
    animation: resaRise .35s ease;
}

.resa-agenda__kicker {
    margin: 0;
    padding: 18px 56px 0 28px;
    font-family: var(--sans);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--rose-dark);
}

/* ---------- En-tête de la popup ----------
   Avant de demander quoi que ce soit, l'écran dit ce qui se réserve ici : une
   date entière, pour un seul groupe, en trois étapes. Sans cette annonce, la
   visiteuse arrive sur un calendrier et un choix de formule sans savoir à quoi
   l'engage un clic. */

.resa-agenda__titre {
    margin: 4px 0 0;
    padding: 0 56px 0 28px;
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--brown);
}


.resa-etapes {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0;
    padding: 0 28px;
}

.resa-etapes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fbf7f3;
    border-radius: 12px;
    font-family: var(--sans);
    font-size: .8rem;
    line-height: 1.35;
    color: var(--brown-soft);
}

.resa-etapes__num {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 700;
}

.resa-agenda__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(156, 175, 143, .35);
    color: var(--brown-soft);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.resa-agenda__close:hover {
    background: var(--sage);
    color: #fff;
    border-color: var(--sage);
}

.resa-agenda .resa__panel {
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.resa__day--confirm {
    color: #a9663c;
    background: #fdf1e6;
    border-color: rgba(192, 121, 79, .4);
    font-weight: 700;
    cursor: pointer;
}

.resa__day--confirm:hover {
    background: #f6ddc4;
    border-color: #c0794f;
}

/* ---------- Cadre principal ---------- */

.resa__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(196, 142, 142, .2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.resa__cal {
    padding: 28px 30px 32px;
}

.resa__side {
    padding: 28px 30px 32px;
    background: linear-gradient(160deg, #fdf8f4 0%, var(--card) 100%);
    border-left: 1px solid rgba(196, 142, 142, .18);
}

/* ---------- En-tête du mois ---------- */

.resa__month {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.resa__month-label {
    font-family: var(--serif);
    font-size: 1.32rem;
    color: var(--brown);
    text-transform: capitalize;
}

.resa__nav {
    display: flex;
    gap: 7px;
}

.resa__nav button {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(196, 142, 142, .3);
    color: var(--rose-dark);
    cursor: pointer;
    font-size: .8rem;
    transition: var(--transition);
}

.resa__nav button:hover:not(:disabled) {
    background: var(--rose);
    border-color: var(--rose);
    color: #fff;
}

.resa__nav button:disabled {
    opacity: .32;
    cursor: not-allowed;
}

/* ---------- Grille des jours ---------- */

.resa__weekdays,
.resa__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.resa__weekdays {
    margin-bottom: 8px;
}

/* La consigne se lit avant la grille, pas dans la légende qui la suit. */
.resa__cal-aide {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    font-family: var(--sans);
    font-size: .78rem;
    color: var(--sage-dark);
}

.resa__weekdays span {
    text-align: center;
    font-family: var(--sans);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--muted);
}

.resa__day {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: none;
    font-family: var(--sans);
    font-size: .92rem;
    color: var(--muted);
    cursor: default;
}

.resa__day--empty {
    border: none;
}

/* Les ateliers n'ont lieu que le week-end : on teinte les deux dernières
   colonnes pour que l'œil sache où chercher, même sur un mois sans séance. */
.resa__day--we {
    background: #fbf5ef;
}

.resa__day-bars {
    display: flex;
    gap: 3px;
    height: 3px;
}

.resa__day-bars i {
    width: 9px;
    height: 3px;
    border-radius: 2px;
}

/* Vert = la date est libre, votre groupe peut la prendre. C'est le seul repère
   de disponibilité, le rose restant réservé aux actions du site. */
.resa__day--free {
    color: var(--brown);
    background: #eef3e9;
    border-color: rgba(156, 175, 143, .55);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.resa__day--free:hover {
    background: var(--sage);
    border-color: var(--sage-dark);
    color: #fff;
    transform: translateY(-1px);
}

.resa__day--selected {
    background: var(--sage-dark) !important;
    border-color: var(--sage-dark) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(135, 155, 123, .38);
}

.resa__day--free:hover .resa__day-bars i,
.resa__day--selected .resa__day-bars i {
    background: rgba(255, 255, 255, .92) !important;
}

/* Ambre = c'est la dernière date libre du mois. Ni le vert rassurant, ni le gris
   des dates prises : l'entre-deux qui invite à ne pas attendre. */
.resa__day--last {
    color: #a9663c;
    background: #fdf1e6;
    border-color: rgba(192, 121, 79, .4);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.resa__day--last:hover {
    background: #f6ddc4;
    border-color: #c0794f;
}

/* Ambre = un paiement est en cours sur cette date : elle n'est pas à prendre,
   mais elle peut redevenir libre. Ni le vert, ni le gris définitif. */
.resa__day--attente {
    color: #a9663c;
    background: #fdf1e6;
    border-color: rgba(192, 121, 79, .4);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.resa__day--attente:hover {
    background: #f6ddc4;
    border-color: #c0794f;
}

.resa__day--full {
    background: #f4efeb;
    border-color: rgba(155, 138, 128, .28);
    opacity: .85;
}

.resa__day--full .resa__day-num {
    text-decoration: line-through;
}

.resa__day--full .resa__day-bars i {
    background: #ded4cd !important;
}

/* Aujourd'hui : un simple repère, il ne doit pas ressembler à un jour d'atelier. */
.resa__day--today {
    box-shadow: inset 0 0 0 1px rgba(196, 142, 142, .38);
}

.resa__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 20px;
    font-family: var(--sans);
    font-size: .72rem;
    color: var(--muted);
}

.resa__legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.resa__legend i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.resa__legend-we {
    border-radius: 3px !important;
    background: #fbf5ef;
    border: 1px solid rgba(196, 142, 142, .3);
}

/* ---------- Créneaux du jour choisi ---------- */

.resa__side-title {
    font-family: var(--serif);
    font-size: 1.18rem;
    color: var(--brown);
    margin: 0 0 4px;
}

/* « vendredi 7 août » devient « Vendredi 7 août » : on ne capitalise que
   la première lettre, pas le nom du mois. */
.resa__side-title::first-letter {
    text-transform: uppercase;
}

.resa__side-hint {
    font-family: var(--sans);
    font-size: .82rem;
    color: var(--muted);
    margin: 0 0 20px;
    line-height: 1.6;
}

.resa__slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---------- Liste des prochaines dates ----------
   Vue par défaut du panneau : sans avoir à deviner quel jour cliquer, on voit
   les séances qui ont encore des places et on entre dans la réservation. */

.resa__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 0;
    padding: 0 0 12px;
    font-family: var(--sans);
    font-size: .76rem;
    font-weight: 700;
    color: var(--rose-dark);
    cursor: pointer;
    transition: var(--transition);
}

.resa__back:hover {
    color: var(--brown);
}

.resa__next {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    background: var(--white);
    border: 1px solid rgba(196, 142, 142, .24);
    border-left: 3px solid var(--atelier, var(--rose));
    border-radius: var(--radius);
    padding: 13px 15px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.resa__next:hover {
    transform: translateY(-2px);
    border-color: var(--rose);
    box-shadow: 0 10px 22px rgba(120, 90, 70, .14);
}

.resa__next-when {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 74px;
    padding-right: 13px;
    border-right: 1px solid rgba(196, 142, 142, .22);
}

.resa__next-when b {
    font-family: var(--sans);
    font-size: .78rem;
    font-weight: 700;
    color: var(--brown);
    white-space: nowrap;
}

/* « sam. 8 août » : seule la première lettre prend la majuscule. */
.resa__next-when b::first-letter {
    text-transform: uppercase;
}

.resa__next-when span {
    font-family: var(--serif);
    font-size: 1.12rem;
    color: var(--rose-dark);
}

.resa__next-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.resa__next-name {
    font-family: var(--sans);
    font-size: .9rem;
    color: var(--brown);
}

.resa__next-meta {
    font-family: var(--sans);
    font-size: .76rem;
    color: var(--muted);
}

.resa__next-go {
    color: var(--rose);
    font-size: .78rem;
}

.resa__next-more {
    font-family: var(--sans);
    font-size: .78rem;
    color: var(--muted);
    text-align: center;
    margin: 4px 0 0;
}

.resa__slot {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(196, 142, 142, .24);
    border-left: 3px solid var(--atelier, var(--rose));
    border-radius: var(--radius);
    padding: 16px 18px;
    box-shadow: var(--shadow-sm);
}

.resa__slot-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.resa__slot-hour {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--brown);
    font-weight: 600;
}

/* Disponibilité : une pastille, pas une phrase. C'est un repère qu'on balaie du
   regard avant de lire la carte, pas une information à lire. */
.resa__slot-etat {
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
    color: var(--sage-dark);
    background: #eef3e9;
    border-radius: 999px;
    padding: 4px 11px;
    white-space: nowrap;
}

.resa__slot-etat--pris {
    color: var(--muted);
    background: #f4efeb;
}

/* Le choix de l'atelier se fait ici, pas à l'écran suivant : sans lui, la carte
   annoncerait deux prix et deux heures de fin pour une seule décision. */
.resa__choix {
    margin: 0 0 14px;
}

.resa__choix-titre {
    margin: 0 0 7px;
    font-family: var(--sans);
    font-size: .76rem;
    font-weight: 600;
    color: var(--brown-soft);
}

.resa__choix-liste {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.resa__choix-btn {
    display: grid;
    gap: 2px;
    text-align: left;
    font-family: var(--sans);
    background: var(--cream, #fdf9f6);
    border: 1px solid rgba(196, 142, 142, .28);
    border-radius: 12px;
    padding: 9px 12px;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.resa__choix-btn:hover {
    border-color: var(--atelier, var(--rose));
}

.resa__choix-btn.is-on {
    background: #fff;
    border-color: var(--atelier, var(--rose));
    box-shadow: inset 0 0 0 1px var(--atelier, var(--rose));
}

.resa__choix-nom {
    font-size: .82rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1.3;
}

.resa__choix-prix {
    font-size: .74rem;
    color: var(--brown-soft);
}

.resa__slot-name {
    font-family: var(--serif);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--brown);
    margin: 0 0 3px;
    line-height: 1.3;
}

/* Le prix et l'heure de fin sur une seule ligne : les deux chiffres qu'on note
   avant de dire oui. */
.resa__slot-quand {
    margin: 0 0 11px;
    font-family: var(--sans);
    font-size: .84rem;
    color: var(--brown-soft);
}

.resa__slot-quand b {
    color: var(--rose-dark);
    font-weight: 700;
}

/* Conditions communes à la journée, annoncées une fois avant les créneaux :
   le groupe, et ce qu'on règle aujourd'hui. */
.resa__conditions {
    margin: 0 0 4px;
    padding: 12px 15px;
    background: #eef3e9;
    border-radius: 12px;
}

.resa__conditions p {
    margin: 0;
    font-family: var(--sans);
    font-size: .8rem;
    line-height: 1.6;
    color: var(--brown-soft);
}

.resa__conditions p + p {
    margin-top: 6px;
}

/* Deux phrases, pas cinq puces : la page au-dessus a déjà tout raconté. */
.resa__slot-texte {
    margin: 0 0 9px;
    font-family: var(--sans);
    font-size: .8rem;
    line-height: 1.6;
    color: var(--brown-soft);
}

.resa__slot .resa__slot-btn {
    margin-top: 6px;
}

/* Sous le bouton : ce qui arrive à l'écran suivant, pour qu'aucun clic ne soit
   un saut dans le vide. */
.resa__slot-apres {
    margin: 9px 0 0;
    font-family: var(--sans);
    font-size: .73rem;
    line-height: 1.5;
    text-align: center;
    color: var(--muted);
}

.resa-formule {
    display: grid;
    gap: 8px;
}
.resa-formule__btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    text-align: left;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1.5px solid rgba(90, 62, 62, .12);
    background: #fdfaf7;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.resa-formule__btn b {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brown);
}
.resa-formule__btn span {
    font-family: var(--sans);
    font-size: .76rem;
    color: var(--brown-soft);
}
.resa-formule__btn:hover {
    border-color: rgba(156, 175, 143, .55);
}
.resa-formule__btn.is-on {
    border-color: var(--accent, var(--sage));
    background: rgba(156, 175, 143, .1);
    box-shadow: inset 3px 0 0 var(--accent, var(--sage));
}
.resa-formule__btn:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}
/* Le libellé est déclaré en bloc plus haut : sans cette règle, l'attribut
   `hidden` posé par le script reste sans effet. */
.resa-field label[hidden] {
    display: none;
}
.resa-rapides__note a {
    color: var(--brown);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.resa-rapides__note a:hover {
    color: var(--sage-dark, #879b7b);
}

/* Dans la liste des prochaines dates, la rareté se voit sur le liseré. */
.resa__next--last {
    border-color: rgba(192, 121, 79, .45);
    background: #fffcf8;
}

.resa__slot-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .4px;
    color: #fff;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border: none;
    border-radius: 999px;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.resa__slot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(156, 175, 143, .36);
}

.resa__slot--full {
    opacity: .72;
}

.resa__slot--full .resa__slot-btn {
    background: #e6ddd6;
    color: var(--muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Solutions de repli proposées sous une séance complète */
.resa__alt {
    margin-top: 14px;
    padding-top: 13px;
    border-top: 1px dashed rgba(196, 142, 142, .35);
}

.resa__alt p {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--sans);
    font-size: .78rem;
    color: var(--brown-soft);
    line-height: 1.55;
    margin: 0 0 10px;
}

.resa__alt p i {
    color: var(--sage-dark);
}

.resa__alt-link {
    display: block;
    width: 100%;
    text-align: left;
    font-family: var(--sans);
    font-size: .82rem;
    font-weight: 700;
    color: var(--sage-dark);
    background: #eef3e9;
    border: 1px solid rgba(156, 175, 143, .45);
    border-radius: 999px;
    padding: 9px 16px;
    margin-bottom: 7px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.resa__alt-link:last-child {
    margin-bottom: 0;
}

.resa__alt-link:hover {
    background: var(--sage);
    border-color: var(--sage-dark);
    color: #fff;
}

.resa__alt-link::first-letter {
    text-transform: uppercase;
}

/* ---------- États vides / secours ---------- */

.resa__empty {
    text-align: center;
    padding: 26px 8px;
}

.resa__empty > i {
    font-size: 1.5rem;
    color: var(--rose);
    opacity: .55;
}

.resa__empty p {
    font-family: var(--sans);
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 12px 0 0;
}

/* Les ateliers se traitent par e-mail : le vert de WhatsApp reste à la page
   du bain d'enveloppement. */
.resa__mail {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    font-family: var(--sans);
    font-size: .84rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    border-radius: 999px;
    padding: 12px 22px;
    text-decoration: none;
    transition: var(--transition);
}

.resa__mail i {
    color: #fff;
    opacity: 1;
    font-size: 1em;
}

.resa__mail:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 24px rgba(196, 142, 142, .34);
}

.resa__empty-note {
    font-family: var(--sans);
    font-size: .76rem !important;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 14px !important;
}

.resa__skeleton {
    height: 74px;
    border-radius: var(--radius);
    background: linear-gradient(90deg, #f4ece6 25%, #fbf5f1 50%, #f4ece6 75%);
    background-size: 200% 100%;
    animation: resaShimmer 1.4s infinite;
}

@keyframes resaShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================
   Fenêtre de réservation
   ========================================================== */

.resa-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 16px;
    overflow-y: auto;
    background: rgba(58, 40, 40, .55);
    backdrop-filter: blur(4px);
}

.resa-modal.is-open {
    display: flex;
}

.resa-modal__box {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(58, 40, 40, .3);
    overflow: hidden;
    animation: resaRise .35s ease;
}

@keyframes resaRise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.resa-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(156, 175, 143, .35);
    color: var(--brown-soft);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.resa-modal__close:hover {
    background: var(--sage);
    color: #fff;
    border-color: var(--sage);
}

.resa-modal__head {
    padding: 30px 32px 24px;
    background: linear-gradient(135deg, #eef3e9 0%, #e2ead9 100%);
    text-align: center;
}

.resa-modal__kicker {
    font-family: var(--sans);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin: 0 0 8px;
}

.resa-modal__title {
    font-family: var(--serif);
    font-size: 1.55rem;
    color: var(--brown);
    margin: 0 0 8px;
    line-height: 1.25;
}

.resa-modal__when {
    font-family: var(--sans);
    font-size: .88rem;
    color: var(--brown-soft);
    margin: 0;
}

.resa-modal__when i {
    margin-right: 6px;
    color: var(--sage-dark);
}

.resa-modal__body {
    padding: 26px 32px 30px;
}

.resa-modal__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.resa-modal__steps b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: var(--sans);
    font-size: .7rem;
    background: #e8efe3;
    color: var(--muted);
    transition: var(--transition);
}

.resa-modal__steps b.is-on {
    background: var(--sage);
    color: #fff;
}

.resa-modal__steps i {
    width: 26px;
    height: 1px;
    background: rgba(156, 175, 143, .4);
}

.resa-field {
    margin-bottom: 15px;
}

.resa-field label {
    display: block;
    font-family: var(--sans);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--brown-soft);
    margin-bottom: 6px;
}

.resa-field input,
.resa-field select,
.resa-field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: .95rem;
    color: var(--brown);
    background: #fafbf7;
    border: 1px solid rgba(156, 175, 143, .35);
    border-radius: var(--radius);
    padding: 12px 14px;
    transition: var(--transition);
}

.resa-field input:focus,
.resa-field select:focus,
.resa-field textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(156, 175, 143, .2);
}

.resa-field input::placeholder,
.resa-field textarea::placeholder {
    color: rgba(138, 127, 122, .42);
}

.resa-field textarea {
    resize: vertical;
    min-height: 78px;
}

.resa-hint {
    display: block;
    font-family: var(--sans);
    font-size: .72rem;
    color: var(--muted);
    margin-top: 6px;
}

.resa-hint.is-ok {
    color: var(--sage-dark);
}

/* ---------- Taille du groupe ----------
   Cinq possibilités : une rangée de touches plutôt qu'une liste déroulante, et
   l'invitation offerte s'annonce sur la dernière. On voit tout d'un coup d'œil,
   et le doigt suffit sur un téléphone. */

.resa-groupe {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
}

.resa-groupe__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 58px;
    padding: 8px 4px;
    background: #fafbf7;
    border: 1px solid rgba(156, 175, 143, .35);
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.resa-groupe__btn b {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brown);
    line-height: 1;
}

.resa-groupe__btn span {
    font-family: var(--sans);
    font-size: .58rem;
    line-height: 1.2;
    text-align: center;
    color: var(--sage-dark);
}

.resa-groupe__btn:hover {
    border-color: var(--sage);
    transform: translateY(-1px);
}

.resa-groupe__btn.is-on {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border-color: var(--sage-dark);
    box-shadow: 0 8px 20px rgba(156, 175, 143, .32);
}

.resa-groupe__btn.is-on b,
.resa-groupe__btn.is-on span {
    color: #fff;
}

.resa-groupe__btn:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}

/* Le geste offert, dit au moment où il fait grandir le groupe. */
.resa-astuce {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 10px 0 0;
    padding: 10px 13px;
    background: #eef3e9;
    border-radius: 12px;
    font-family: var(--sans);
    font-size: .78rem;
    line-height: 1.55;
    color: var(--sage-dark);
}

.resa-astuce[hidden] {
    display: none;
}

/* Le montant, dès le premier écran : le découvrir à l'étape du paiement est la
   meilleure façon de faire renoncer un groupe. */
.resa-total {
    display: grid;
    gap: 2px;
    margin: 0 0 14px;
    padding: 13px 16px;
    background: #eef3e9;
    border-radius: var(--radius);
    font-family: var(--sans);
    font-size: .84rem;
    line-height: 1.5;
    color: var(--brown-soft);
    text-align: center;
}

.resa-total[hidden] {
    display: none;
}

.resa-total b {
    font-size: 1.06rem;
    color: var(--brown);
}

.resa-total span {
    font-size: .76rem;
    color: var(--muted);
}

.resa-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.resa-recap {
    background: var(--card);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 20px;
}

.resa-recap__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--sans);
    font-size: .86rem;
    color: var(--brown-soft);
    padding: 5px 0;
}

.resa-recap__row strong {
    color: var(--brown);
    text-align: right;
}

.resa-recap__row strong small {
    display: block;
    font-size: .72rem;
    font-weight: 400;
    color: var(--sage-dark);
}

.resa-recap__row span small {
    color: var(--muted);
    margin-left: 5px;
}

.resa-recap__row--total {
    border-top: 1px dashed rgba(156, 175, 143, .45);
    margin-top: 6px;
    padding-top: 11px;
}

.resa-recap__row--total strong {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--sage-dark);
}

.resa-note {
    font-family: var(--sans);
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 18px;
}

.resa-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    border: none;
    border-radius: 999px;
    padding: 15px 24px;
    cursor: pointer;
    transition: var(--transition);
}

.resa-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(156, 175, 143, .36);
}

.resa-btn:disabled {
    opacity: .65;
    cursor: wait;
}

.resa-btn--ghost {
    background: none;
    color: var(--brown-soft);
    border: 1px solid rgba(156, 175, 143, .4);
    margin-top: 10px;
}

.resa-btn--ghost:hover {
    background: #eef3e9;
    box-shadow: none;
    transform: none;
}

.resa-error {
    font-family: var(--sans);
    font-size: .84rem;
    color: #c0392b;
    background: #fdeeec;
    border-radius: 10px;
    padding: 11px 14px;
    margin-bottom: 14px;
    line-height: 1.55;
}

.resa-error:empty {
    display: none;
}

.resa-pay {
    min-height: 60px;
    margin-bottom: 18px;
}

.resa-pay__mount {
    background: #fff;
    border: 1.5px solid rgba(90, 62, 62, .12);
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 8px 24px rgba(90, 62, 62, .05);
}

.resa-legal {
    font-family: var(--sans);
    font-size: .72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    margin: 14px 0 0;
}

.resa-legal a {
    color: var(--rose-dark);
}

.resa-done {
    text-align: center;
    padding: 8px 0 4px;
}

.resa-done__icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef4e9, #dfe9d6);
    color: var(--sage-dark);
    font-size: 1.5rem;
}

.resa-done h4 {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--brown);
    margin: 0 0 10px;
}

.resa-done p {
    font-family: var(--sans);
    font-size: .9rem;
    color: var(--brown-soft);
    line-height: 1.75;
    margin: 0 0 8px;
}

/* ---------- Adaptations mobile ---------- */

@media (max-width: 880px) {
    .resa__panel {
        grid-template-columns: 1fr;
    }

    .resa__side {
        border-left: none;
        border-top: 1px solid rgba(196, 142, 142, .18);
    }

    .resa-section {
        padding: 40px 0;
    }

    .resa-agenda {
        padding: 12px 10px;
    }

    .resa-agenda__box {
        max-width: 100%;
    }

    .resa-etapes {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    /* En-tête de la modale, une fois la modale sur une colonne.
       Il restait aligné à gauche avec un retrait de 56 px à droite pour laisser
       passer la croix de fermeture : le texte s'arrêtait donc 28 px avant le
       bord des pastilles d'étapes, et plus rien ne s'alignait. Centré entre deux
       retraits égaux, il retrouve l'axe de la modale — et celui de la modale du
       formulaire, centrée elle aussi. */
    .resa-agenda__kicker,
    .resa-agenda__titre {
        text-align: center;
        padding-left: 46px;
        padding-right: 46px;
    }

}

@media (max-width: 560px) {
    /* Le bloc de réservation touchait le bloc suivant par 44 px de retrait, qui
       s'ajoutaient aux 20 px du suivant : près de 100 px entre le bouton
       « Voir les dates » et le titre des questions fréquentes. */
    .resa-section {
        padding: 30px 0;
    }

    .resa-agenda {
        padding: 0;
    }

    .resa-agenda__box {
        border-radius: 0;
        min-height: 100%;
        max-width: none;
    }

    .resa__teaser {
        padding: 18px 16px;
        border-radius: 14px;
    }

    .resa__teaser-btn {
        width: 100%;
        justify-content: center;
    }

    .resa-agenda__kicker {
        padding: 16px 44px 0;
    }

    .resa-agenda__titre {
        padding: 0 44px;
        font-size: 1.42rem;
    }

    .resa-etapes {
        padding: 0 18px;
    }

    /* 7 touches (4→10) : 4 colonnes + wrap, doigts utilisables */
    .resa-groupe {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .resa-groupe__btn {
        min-height: 56px;
        border-radius: 12px;
        padding: 10px 6px;
    }

    .resa-groupe__btn b {
        font-size: 1.2rem;
    }

    .resa-groupe__btn span {
        font-size: .62rem;
        line-height: 1.25;
        padding: 0 2px;
    }

    .resa__next {
        gap: 11px;
        padding: 12px;
    }

    .resa__next-when {
        min-width: 62px;
        padding-right: 10px;
    }

    .resa {
        padding: 0 16px;
    }

    .resa__cal,
    .resa__side {
        padding: 22px 18px 26px;
    }

    .resa__weekdays,
    .resa__grid {
        gap: 3px;
    }

    .resa__day {
        border-radius: 9px;
        font-size: .84rem;
        gap: 3px;
    }

    .resa__day-bars {
        gap: 2px;
        height: 3px;
    }

    .resa__day-bars i {
        width: 7px;
        height: 3px;
    }

    .resa-modal {
        padding: 0;
    }

    .resa-modal__box {
        border-radius: 0;
        min-height: 100%;
    }

    .resa-modal__head {
        padding: 26px 22px 20px;
    }

    .resa-modal__body {
        padding: 22px 22px 30px;
    }

    .resa-row {
        grid-template-columns: 1fr;
    }

    .resa-recap__row {
        flex-wrap: wrap;
        gap: 4px 12px;
    }

    .resa-recap__row strong,
    .resa-recap__row span {
        overflow-wrap: anywhere;
    }

    .resa-valeur__note {
        white-space: normal;
    }

    .resa__next {
        flex-wrap: wrap;
    }

    .resa__next-when {
        min-width: 0;
        white-space: normal;
    }

    .resa-pay__mount {
        max-width: 100%;
        overflow: hidden;
    }

    .resa-astuce {
        flex-wrap: wrap;
        font-size: .76rem;
    }

    .resa-error {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 380px) {
    .resa-groupe {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .resa-agenda__titre {
        font-size: 1.28rem;
    }

    .resa-modal__head,
    .resa-modal__body {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 880px) and (min-width: 561px) {
    .resa-groupe {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }
}


/* ==========================================================
   Réserver depuis la page d'un atelier
   Le haut de page annonce la durée, le groupe et le prix ; la prochaine date
   s'écrit toute seule dès que le calendrier a lu les séances. Juste avant le
   calendrier, deux encadrés répondent aux deux dernières hésitations : ce que
   l'on reçoit pour ce prix, et ce qui se passe quand on clique.
   ========================================================== */

.atelier-hero__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin: 20px 0 0;
    font-size: .82rem;
    color: var(--brown-soft);
}

.atelier-hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.atelier-hero__meta i {
    color: var(--sage);
    font-size: .95em;
}

/* Le bandeau n'a pas à tout dire. Une seule ligne de faits, discrète, sous la
   promesse : la durée, le groupe et le prix tout compris. Le reste (déroulé,
   créations, ce qui est compris) se lit plus bas, à l'endroit où on le cherche.
   Une liste de quatre puces en haut de page donnait l'impression d'une fiche
   technique et tuait l'envie. */
.atelier-hero__ligne {
    margin-top: 16px;
    font-size: .8rem;
    letter-spacing: .4px;
    color: var(--muted);
}

/* La seule information qui a le droit à sa ligne : le cadeau. C'est elle qui
   fait dire « c'est génial » et qui pousse le groupe à monter jusqu'à dix. */
.atelier-hero__cadeau {
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 10px;
    padding: 8px 16px;
    border-radius: 40px;
    background: rgba(156, 175, 143, .15);
    font-size: .84rem;
    color: var(--brown);
}

.atelier-hero__cadeau i {
    color: var(--sage-dark);
    font-size: .9em;
}

.atelier-hero__actions {
    margin-top: 22px;
}

.atelier-hero__next {
    margin-top: 12px;
    font-size: .82rem;
    color: var(--brown-soft);
}

.atelier-hero__next i {
    color: var(--sage);
    margin-right: 7px;
}

.atelier-hero__next b {
    font-weight: 700;
    color: var(--brown);
}

.atelier-hero__next a {
    color: var(--brown);
    border-bottom: 1px solid rgba(156, 175, 143, .6);
    text-decoration: none;
}

.resa-valeur {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 0 0 34px;
}

/* Seul « Belly painting » garde ce bloc, et la séance s'y demande par WhatsApp :
   il n'y a pas de calendrier derrière, donc rien que ses 34 px de marge
   pourraient séparer. Sans cette règle, ils s'ajoutent au retrait de la section. */
.resa-valeur:last-child {
    margin-bottom: 0;
}

.resa-valeur__box {
    background: var(--white);
    border: 1px solid rgba(156, 175, 143, .22);
    border-radius: 20px;
    padding: 26px 28px 24px;
}

.resa-valeur__box--calme {
    background: var(--cream-2);
    border-color: rgba(90, 62, 62, .09);
}

.resa-valeur__box h3 {
    font-family: var(--serif, "Cormorant Garamond", serif);
    font-size: 1.32rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 14px;
}

.resa-valeur__box ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.resa-valeur__box li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    font-size: .85rem;
    line-height: 1.55;
    color: var(--brown-soft);
}

.resa-valeur__box li i {
    margin-top: 4px;
    font-size: .82em;
    color: var(--sage);
}

.resa-valeur__box--calme li i {
    color: var(--rose);
}

.resa-valeur__emporte {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(90, 62, 62, .1);
    font-size: .86rem;
    line-height: 1.55;
    color: var(--brown);
}

.resa-valeur__emporte i {
    color: var(--sage);
    margin-right: 8px;
}

.resa-valeur__cta {
    display: flex;
    justify-content: center;
    margin: 0 0 34px;
}

.resa-valeur__cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}

/* Belly painting : la séance se demande, il n'y a donc pas de calendrier mais
   un appel à écrire, avec le téléphone en second recours. */
.resa-valeur__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.resa-valeur__lien {
    font-size: .9rem;
    color: var(--brown-soft);
    text-decoration: none;
    border-bottom: 1px solid rgba(90, 62, 62, .18);
}

.resa-valeur__lien i {
    margin-right: 6px;
    color: var(--sage);
}

.resa-valeur__lien:hover {
    color: var(--brown);
}

.resa-valeur__signature {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid rgba(90, 62, 62, .1);
    font-size: .8rem;
    line-height: 1.5;
    color: var(--brown-soft);
}

.resa-valeur__signature img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 60% 30%;
    flex: 0 0 auto;
}

.resa-valeur__signature b {
    color: var(--brown);
}

.resa-valeur__note {
    color: #c9a05e;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 780px) {
    .resa-valeur {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 26px;
    }

    .resa-valeur__box {
        padding: 22px 20px 20px;
    }

    .atelier-hero__meta {
        justify-content: center;
        gap: 6px 16px;
        font-size: .78rem;
    }

    .atelier-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Ces 34 px détachaient le bouton du calendrier qui se dépliait dessous.
       Le calendrier s'ouvre aujourd'hui en modale : la marge ne séparait plus
       rien et allongeait la fin du bloc d'autant. */
    .resa-valeur__cta {
        margin-bottom: 0;
    }
}
