/* =====================================================================
   Anaïs Azoulay — feuille de style (MOBILE-FIRST)
   [Design] Système « bien-être premium » (réf. Mindora) :
   palette sage / blush / ardoise, glassmorphisme, DM Sans + Cormorant,
   coins très arrondis, ombres douces, illustrations botaniques.
   ===================================================================== */

:root {
    --bg:           #FAF7F4;
    --bg-alt:       #F3EDE8;
    --white:        #FFFFFF;
    --glass:        rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.45);
    --ink:          #3D3030;
    --ink-2:        #5A4545;
    --muted:        #9E8C8A;
    --sage:         #7BA99A;
    --sage-dk:      #5E887E;
    --blush:        #DCA9B5;
    --blush-lt:     #F2DADE;
    --slate:        #2F3E46;
    --sky:          #C5D8E8;
    --line:         #EAE0DB;
    --radius:       28px;
    --radius-sm:    18px;
    --radius-xs:    10px;
    --shadow:       0 20px 60px rgba(61, 48, 48, 0.08);
    --shadow-sm:    0 8px 24px rgba(61, 48, 48, 0.06);
    --shadow-glass: 0 8px 32px rgba(61, 48, 48, 0.12);
    --blur:         blur(16px);
    --tab-h:        72px;

    /* Compatibilité : les anciennes variables pointent vers la nouvelle
       palette pour re-skinner l'existant sans rien casser. */
    --gold:    var(--sage);
    --gold-dk: var(--sage-dk);
    --accent:  var(--blush-lt);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    font-weight: 400;
    /* espace pour la barre d'onglets mobile */
    padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px));
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: .01em;
    color: var(--ink);
}
/* Signature visuelle : Cormorant italic teinté sage dans les titres */
h1 em, h2 em, h3 em { font-style: italic; color: var(--sage-dk); }
h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
h3 { font-size: 1.45rem; }

p { font-size: 1.02rem; }

a { color: var(--gold-dk); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }

.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- Boutons ---------- */
.btn {
    display: inline-block;
    background: var(--ink);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 999px;
    font-size: .98rem;
    letter-spacing: .03em;
    border: none;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .25s;
    box-shadow: 0 8px 22px rgba(61, 44, 53, .16);
}
/* Au survol : ombre teintée d'or chaud (plus douce que le gris) */
.btn:hover { background: var(--ink-2); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 150, 122, .38); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); box-shadow: none; }
.btn-outline:hover { background: var(--ink); color: var(--white); box-shadow: 0 12px 30px rgba(201, 150, 122, .30); }
.btn-gold { background: var(--gold); box-shadow: 0 8px 22px rgba(201, 150, 122, .35); }
.btn-gold:hover { background: var(--gold-dk); box-shadow: 0 12px 30px rgba(176, 122, 96, .42); }

/* ---------- Header (haut de page) ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 247, 244, .90);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: center; height: 64px; position: relative; }
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--ink);
}
.main-nav { display: none; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
    text-align: center;
    padding: 56px 0 44px;
    background:
        radial-gradient(120% 80% at 50% 0%, #fdf1ec 0%, var(--bg) 62%);
}
.hero .eyebrow,
.section-head .eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .72rem;
    color: var(--gold-dk);
    margin-bottom: 14px;
}
.hero h1 { margin-bottom: 18px; }
.hero p.lead { max-width: 620px; margin: 0 auto 28px; color: var(--muted); font-size: 1.08rem; }
.hero .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Grille d'accès rapide (façon appli) ---------- */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 4px;
}
.quick-tile {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    transition: transform .15s;
}
.quick-tile:hover { transform: translateY(-3px); color: var(--ink); }
.quick-tile .q-ic {
    width: 44px; height: 44px; margin: 0 auto 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f9e7e0, #ecccbf);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-dk);
}
.quick-tile span { font-size: .76rem; color: var(--muted); display: block; line-height: 1.3; }

/* ---------- Sections ---------- */
section.block { padding: 48px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.section-head p { color: var(--muted); margin-top: 12px; }
.alt-bg { background: var(--white); }

/* ---------- Cartes ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);   /* fine bordure colorée en haut de carte */
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s;
}
.alt-bg .card { background: var(--bg); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
    width: 54px; height: 54px; border-radius: 18px;
    background: linear-gradient(135deg, #f9e7e0, #ecccbf);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 16px;
    color: var(--gold-dk);
}
.card .icon svg { width: 26px; height: 26px; stroke-width: 1.8; }
.quick-tile .q-ic svg { width: 22px; height: 22px; stroke-width: 1.8; }
.mode-opt .m-ic svg { width: 26px; height: 26px; stroke-width: 1.8; color: var(--gold-dk); }
.confirm-ic { color: var(--gold-dk); margin-bottom: 10px; }
.confirm-ic svg { width: 56px; height: 56px; stroke-width: 1.6; }

/* Sélecteur de créneaux */
.slot-picker { margin-top: 6px; }
.slot-hint { color: var(--muted); font-size: .9rem; padding: 6px 0; }
.slot-days {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.slot-day {
    flex: 0 0 auto; padding: 9px 14px; border-radius: 999px;
    border: 1.5px solid var(--line); background: var(--bg);
    font-size: .85rem; color: var(--ink); cursor: pointer; white-space: nowrap;
    transition: border-color .15s, background .15s;
}
.slot-day.active { border-color: var(--gold); background: #fdf1ec; color: var(--gold-dk); font-weight: 500; }
.slot-times {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px; margin-top: 12px;
}
.slot-time {
    padding: 11px 6px; border-radius: 12px;
    border: 1.5px solid var(--line); background: var(--bg);
    font-size: .9rem; color: var(--ink); cursor: pointer;
    transition: border-color .15s, background .15s;
}
.slot-time:hover { border-color: var(--gold); }
.slot-time.selected { border-color: var(--gold); background: var(--gold); color: #fff; font-weight: 500; }
.slot-selected {
    margin-top: 14px; padding: 14px 16px; border-radius: 14px;
    background: #fdf1ec; border: 1px solid var(--accent);
}
.slot-selected-title { font-weight: 500; color: var(--gold-dk); margin-bottom: 6px; font-size: .9rem; }
#slot-selected-list { list-style: none; padding: 0; margin: 0; }
#slot-selected-list li { font-size: .9rem; color: var(--ink); padding: 3px 0; }
#slot-selected-list li::before { content: "✓ "; color: var(--gold-dk); }

/* Espace client — cartes de séance */
.session-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.session-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.session-seq { font-size: .78rem; color: var(--gold-dk); text-transform: uppercase; letter-spacing: .08em; }
.session-date { font-size: 1.05rem; color: var(--ink); margin-top: 2px; }
.session-locked { font-size: .8rem; color: var(--muted); }
.badge { display: inline-block; padding: 3px 11px; border-radius: 999px; font-size: .76rem; background: var(--accent); color: var(--ink); }
.badge.cancelled { background: #f6e3e3; color: #9b3030; }
.btn-mini { padding: 7px 14px; font-size: .85rem; }
.reschedule-form { border-top: 1px dashed var(--line); margin-top: 14px; }

/* Témoignages */
.t-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
}
.t-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 30px 28px 26px;
    margin: 0;
    box-shadow: 0 8px 30px rgba(43,47,66,.05);
}
.t-quote {
    position: absolute;
    top: 6px; left: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.4rem;
    line-height: 1;
    color: var(--gold);
    opacity: .35;
}
.t-card blockquote { margin: 10px 0 0; padding: 0; border: none; }
.t-card blockquote p { color: var(--ink-2); line-height: 1.7; margin: 0 0 10px; font-size: .96rem; }
.t-card blockquote p:last-child { margin-bottom: 0; }
.t-card figcaption {
    margin-top: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold-dk);
}
@media (min-width: 860px) {
    .t-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* Case de consentement (formulaire de réservation) */
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0 4px; font-size: .9rem; color: var(--ink-2); line-height: 1.55; cursor: pointer; }
.consent-row input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--gold-dk); }
.consent-row a { color: var(--gold-dk); text-decoration: underline; }

/* Pages légales / confidentialité */
.legal h2 { font-size: 1.25rem; font-weight: 500; color: var(--ink); margin: 30px 0 10px; }
.legal p { color: var(--ink-2); line-height: 1.75; margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 22px; }
.legal li { color: var(--ink-2); line-height: 1.7; margin-bottom: 7px; }
.legal .muted { color: var(--muted); font-size: .9rem; }
.legal a { color: var(--gold-dk); text-decoration: underline; }

/* Instagram */
.ig-embed { max-width: 960px; margin: 0 auto; }
.ig-embed iframe { max-width: 100% !important; border: none; }
.ig-grid { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.ig-grid .instagram-media { margin: 0 !important; }
.btn i[data-lucide], .btn svg { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; stroke-width: 2; }
.footer-ig svg { width: 17px; height: 17px; vertical-align: -3px; margin-right: 5px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); }

/* ---------- Tarifs ---------- */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.price-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* Badge de catégorie en pastille blush */
.price-card .cat {
    align-self: flex-start;
    font-size: .68rem; text-transform: uppercase; letter-spacing: .14em;
    color: var(--gold-dk);
    background: #fbeae3;
    padding: 5px 12px; border-radius: 999px;
    margin-bottom: 4px;
}
.price-card h3 { margin: 10px 0 4px; font-size: 1.6rem; }
.price-card .price { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: var(--ink); margin: 6px 0; font-weight: 600; }
.price-card .duration { color: var(--muted); font-size: .9rem; margin-bottom: 14px; }
.price-card p.desc { color: var(--muted); flex: 1; margin-bottom: 22px; line-height: 1.6; }
.price-card .btn { margin-top: auto; }

/* Offre mise en avant (forfait complet) */
.price-card.featured {
    border: 1.5px solid var(--gold);
    border-top: 3px solid var(--gold-dk);
    box-shadow: 0 16px 44px rgba(176, 122, 96, .18);
}
.price-card .ribbon {
    position: absolute; top: 16px; right: 16px;
    background: var(--gold); color: #fff;
    font-size: .66rem; text-transform: uppercase; letter-spacing: .1em;
    padding: 5px 12px; border-radius: 999px;
    box-shadow: 0 6px 16px rgba(176, 122, 96, .35);
}

/* ---------- Formulaires ---------- */
.form-wrap { max-width: 640px; margin: 0 auto; background: var(--white); padding: 28px 22px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 6px; font-size: .9rem; color: var(--ink); }
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px; /* >=16px : évite le zoom auto sur iPhone */
    background: var(--bg);
    color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--gold);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
/* Petit texte d'aide sous un champ */
.form-help { font-size: .82rem; color: var(--muted); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.form-help svg { width: 14px; height: 14px; stroke-width: 1.8; color: var(--gold-dk); flex: 0 0 auto; }

/* Regroupement visuel des champs en sections numérotées */
.form-section { margin-bottom: 30px; }
.form-section + .form-section { border-top: 1px solid var(--line); padding-top: 26px; }
.form-section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.form-section-head .fs-num {
    width: 26px; height: 26px; flex: 0 0 auto;
    border-radius: 50%; background: var(--accent); color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-size: .82rem; font-weight: 500;
}
.form-section-head h3 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: .02em; color: var(--ink); }

/* Indicateur de progression de la réservation (Étape x/3) */
.booking-progress { margin: 0 auto 26px; max-width: 460px; }
.bp-steps { list-style: none; display: flex; padding: 0; margin: 0; }
.bp-step {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
    position: relative; font-size: .72rem; color: var(--muted); text-align: center;
}
.bp-step::before {
    content: ""; position: absolute; top: 14px; left: -50%; width: 100%; height: 2px;
    background: var(--line); z-index: 0;
}
.bp-step:first-child::before { display: none; }
.bp-dot {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--line); color: var(--muted);
    display: flex; align-items: center; justify-content: center;
    font-size: .82rem; font-weight: 500; position: relative; z-index: 1;
    transition: background .2s, border-color .2s, color .2s;
}
.bp-step.is-active .bp-dot { border-color: var(--gold); color: var(--gold-dk); background: #fdf1ec; }
.bp-step.is-active { color: var(--ink); font-weight: 500; }
.bp-step.is-done .bp-dot { background: var(--gold); border-color: var(--gold); color: #fff; }
.bp-step.is-done::before { background: var(--gold); }

/* Cartes radio de choix de la prestation (à la place du <select>) */
.service-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
.service-card {
    position: relative; display: block; cursor: pointer;
    border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    background: var(--bg); padding: 16px 18px 16px 46px;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.service-card input { position: absolute; opacity: 0; pointer-events: none; }
.service-card::before {
    content: ""; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid var(--line); background: var(--white); transition: border-color .2s;
}
.service-card:has(input:checked) {
    border-color: var(--gold); background: #fdf1ec;
    box-shadow: 0 6px 18px rgba(201, 150, 122, .20);
}
.service-card:has(input:checked)::before {
    border-color: var(--gold);
    background: radial-gradient(circle, var(--gold) 0 5px, var(--white) 6px);
}
.service-card .sc-cat { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-dk); }
.service-card .sc-name { display: block; font-size: 1.02rem; color: var(--ink); margin: 2px 0; }
.service-card .sc-meta { display: block; font-size: .88rem; color: var(--muted); }

/* Choix du mode de séance (présentiel / Zoom) */
.mode-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mode-opt {
    position: relative;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 16px 10px;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: var(--bg);
    cursor: pointer;
    text-align: center;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.mode-opt input { position: absolute; opacity: 0; pointer-events: none; }
.mode-opt .m-ic { font-size: 1.5rem; line-height: 1; }
.mode-opt .m-txt { font-size: .92rem; color: var(--ink); }
.mode-opt:has(input:checked) {
    border-color: var(--gold);
    background: #fdf1ec;
    box-shadow: 0 6px 18px rgba(201, 150, 122, .24);
}

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; }
.alert-success { background: #eaf5ec; color: #2e6b3e; border: 1px solid #bfe0c6; }
.alert-error { background: #fbecec; color: #9b3030; border: 1px solid #f0c9c9; }

/* ---------- À propos ---------- */
.about { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
.about .portrait {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f3ddd2, #e0c1b0);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e4e2ea; padding: 46px 0 0; margin-top: 30px; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 26px; padding-bottom: 30px; }
.site-footer h3 { color: #fff; margin-bottom: 8px; }
.site-footer h4 { color: var(--gold); margin-bottom: 10px; font-family: 'Jost', sans-serif; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer a { display: block; color: #c8c6d0; margin-bottom: 8px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; display: flex; flex-direction: column; gap: 6px; text-align: center; font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* =====================================================================
   Barre d'onglets mobile (façon application)
   ===================================================================== */
.tab-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px rgba(61, 44, 53, .08);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 100;
}
.tab {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    color: var(--muted);
    font-size: .66rem;
    letter-spacing: .02em;
    padding-top: 8px;
}
.tab svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.tab.active { color: var(--ink); }
.tab.active svg { stroke: var(--gold-dk); }

/* bouton central proéminent (RDV) */
.tab-center {
    flex: 0 0 auto;
    margin-top: -26px;
}
.tab-center .fab {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 24px rgba(176, 122, 96, .45);
    border: 4px solid var(--bg);
}
.tab-center .fab svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 1.8; fill: none; }
.tab-center span { display: block; text-align: center; font-size: .64rem; color: var(--muted); margin-top: 2px; }

/* =====================================================================
   DESKTOP / tablette : on masque la barre d'onglets, on affiche le menu haut
   ===================================================================== */
@media (min-width: 860px) {
    body { padding-bottom: 0; }
    .tab-bar { display: none; }

    .header-inner { justify-content: space-between; height: 78px; }
    .logo { font-size: 1.7rem; }
    .main-nav { display: flex; align-items: center; gap: 26px; }
    .main-nav a { font-size: .95rem; letter-spacing: .03em; color: var(--ink); }
    .main-nav a:hover, .main-nav a.active { color: var(--gold-dk); }
    .btn-nav { padding: 11px 22px; color: #fff !important; }

    .hero { padding: 90px 0 76px; }
    section.block { padding: 70px 0; }
    .section-head { margin-bottom: 50px; }
    .cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
    .card { padding: 34px 30px; }
    .service-cards { grid-template-columns: 1fr 1fr; }
    .price-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
    .price-card h3 { font-size: 1.8rem; }
    .about { grid-template-columns: 1fr 1fr; gap: 50px; }
    .about .portrait { aspect-ratio: 3/4; }
    .form-wrap { padding: 40px; }
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
    .quick-grid { max-width: 720px; margin: 10px auto 0; gap: 16px; }
    .quick-tile { padding: 22px 10px; }
}

/* =====================================================================
   [Design] SYSTÈME « MINDORA » — couche de composants (sage / blush / glass)
   Placée en fin de feuille pour primer sur les règles précédentes.
   ===================================================================== */

/* ---- Boutons ---- */
.btn, .btn-primary, .btn-gold {
    background: var(--sage); color: #fff;
    border-radius: 50px; padding: 14px 32px;
    font-family: 'DM Sans', sans-serif; font-weight: 500; letter-spacing: .02em;
    box-shadow: 0 8px 24px rgba(123,169,154,.35);
    transition: all .25s ease; border: none;
}
.btn:hover, .btn-primary:hover, .btn-gold:hover {
    background: var(--sage-dk); color: #fff; transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(94,136,126,.45);
}
.btn-secondary, .btn-outline {
    background: transparent; border: 1.5px solid var(--sage); color: var(--sage-dk);
    border-radius: 50px; padding: 13px 30px; box-shadow: none;
}
.btn-secondary:hover, .btn-outline:hover {
    background: var(--blush-lt); border-color: var(--blush); color: var(--ink-2);
}
.btn-blush { background: var(--blush-lt); color: var(--ink-2); border: none; border-radius: 50px; padding: 12px 28px; box-shadow: none; }
.btn-blush:hover { background: var(--blush); color: #fff; }

/* ---- Glassmorphisme ---- */
.glass-card, .hero-glass {
    background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    box-shadow: var(--shadow-glass);
}
.hero-glass { padding: 40px 48px; max-width: 480px; }

/* ---- Cartes de contenu (.svc-card) — distinctes des cartes radio .service-card ---- */
.svc-card {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow); border: 1px solid var(--line);
    position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.svc-card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px;
    background: linear-gradient(90deg, var(--sage), var(--blush)); }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 26px 70px rgba(61,48,48,.12); }
.svc-icon { width:52px; height:52px; background: var(--blush-lt); border-radius:16px;
    display:flex; align-items:center; justify-content:center; color: var(--sage-dk); margin-bottom:16px; }
.svc-icon svg { width:26px; height:26px; stroke-width:1.8; }

/* ---- Badges (statuts) v2 ---- */
.badge, .badge-paid, .badge-confirmed, .badge-pending, .badge-cancelled {
    border-radius: 50px; padding: 4px 12px; font-size: 12px; font-family: 'DM Sans',sans-serif; font-weight: 500;
}
.badge-paid, .badge-confirmed, .badge.paid, .badge.confirmed, .badge.actif, .badge.terminee, .badge.en_cours {
    background: rgba(123,169,154,.15); color: var(--sage-dk); border: 1px solid rgba(123,169,154,.3); }
.badge-pending, .badge.pending, .badge.ouverte, .badge.offert {
    background: rgba(220,169,181,.15); color: #B0607A; border: 1px solid rgba(220,169,181,.3); }
.badge-cancelled, .badge.cancelled, .badge.archive {
    background: rgba(158,140,138,.12); color: var(--ink-2); border: 1px solid var(--line); }

/* ---- Bloc citation ---- */
.quote-block {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: clamp(20px, 3vw, 28px); color: var(--ink-2);
    text-align: center; padding: 48px 40px;
    border-left: 3px solid var(--blush); background: var(--blush-lt);
    border-radius: 0 var(--radius) var(--radius) 0;
    max-width: 640px; margin: 0 auto;
}

/* ---- Séparateur botanique ---- */
.botanical { display: block; margin: 40px auto; color: var(--sage); opacity: .3; }

/* ---- Champs de formulaire (pages publiques) ---- */
.form-wrap label, .form-row label {
    font-family: 'DM Sans',sans-serif; font-size: 13px; font-weight: 500; color: var(--muted);
    text-transform: uppercase; letter-spacing: .06em;
}
.form-wrap input, .form-wrap select, .form-wrap textarea,
.form-row input, .form-row select, .form-row textarea {
    background: var(--bg-alt); border: 1.5px solid transparent; border-radius: var(--radius-sm);
    padding: 14px 18px; font-family: 'DM Sans',sans-serif; font-size: 15px; color: var(--ink); width: 100%;
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-wrap input:focus, .form-wrap select:focus, .form-wrap textarea:focus,
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    background: var(--white); border-color: var(--sage); outline: none;
    box-shadow: 0 0 0 4px rgba(123,169,154,.15);
}
.form-wrap ::placeholder, .form-row ::placeholder { color: var(--muted); font-style: italic; }

/* ---- Espace client : progression du forfait ---- */
.espace-welcome { padding: 30px 32px; margin-bottom: 28px; }
.progress-track { display: flex; align-items: center; gap: 0; margin: 14px 0 4px; }
.progress-step { width: 22px; height: 22px; border-radius: 50%; background: var(--line); flex: 0 0 auto; }
.progress-step.done { background: var(--sage); }
.progress-step.current { background: var(--sage); animation: pulse 2s infinite; }
.progress-link { height: 2px; flex: 1; background: var(--line); }
.progress-link.done { background: var(--sage); }

/* ---- Micro-animations ---- */
@keyframes revealUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
.reveal { animation: revealUp .6s ease forwards; }
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(123,169,154,.4); }
    50%     { box-shadow: 0 0 0 8px rgba(123,169,154,0); }
}
@media (prefers-reduced-motion: reduce) { .reveal { animation: none; } .progress-step.current { animation: none; } }

/* ---- Hero « zen » (accueil) : halos doux + carte glass + portrait en arche ---- */
.hero-zen { position: relative; overflow: hidden; text-align: left; padding: 26px 0 44px;
    background: linear-gradient(165deg, #E9F1ED 0%, var(--bg) 42%, var(--blush-lt) 130%); }
.zen-blob { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; }
.zen-blob-1 { width: 300px; height: 300px; background: var(--sage); opacity: .26; top: -90px; right: -70px; }
.zen-blob-2 { width: 260px; height: 260px; background: var(--blush); opacity: .22; bottom: -110px; left: -90px; }
.hero-zen-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
.hero-zen .hero-glass { max-width: none; order: 2; }
.hero-zen .hero-glass h1 { margin-bottom: 12px; }
.hero-sub { color: var(--ink-2); font-size: 1.05rem; margin: 0 0 24px; }
.hero-zen .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-start; }

/* Conteneur à dimensions fixes : le portrait ne peut JAMAIS dépasser (robuste
   même si aspect-ratio n'est pas honoré par le navigateur). */
.hero-portrait { position: relative; order: 1; width: 190px; height: 190px; margin: 8px auto 16px; flex: 0 0 auto; }
.hero-portrait::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 250px; height: 250px; border-radius: 50%;
    background: radial-gradient(circle, rgba(123,169,154,.30), transparent 68%); z-index: 0; }
.hero-portrait img { position: relative; z-index: 1; width: 100%; height: 100%;
    object-fit: cover; object-position: center 22%; border-radius: 50%;
    box-shadow: var(--shadow); border: 5px solid rgba(255,255,255,.75); display: block; }
.hero-portrait-badge { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); z-index: 2;
    white-space: nowrap; background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border); color: var(--ink-2); font-size: .8rem; font-weight: 500;
    padding: 7px 14px; border-radius: 50px; display: inline-flex; align-items: center; gap: 6px; box-shadow: var(--shadow-sm); }
.hero-portrait-badge svg { width: 15px; height: 15px; color: var(--sage-dk); }

@media (min-width: 860px) {
    .hero-zen { padding: 60px 0 68px; }
    .hero-zen-inner { grid-template-columns: 1.04fr .96fr; gap: 52px; }
    .hero-zen .hero-glass { order: 1; }
    .hero-portrait { order: 2; width: 300px; height: 300px; margin: 0 auto; }
    .hero-portrait::before { width: 380px; height: 380px; }
}

/* ---- Fonds adoucis + accents botaniques (esprit Mindora) ---- */
.alt-bg { background: linear-gradient(180deg, #EEF3F0 0%, #F6F1EC 100%); }
section.block { position: relative; }
/* Hero centré « doux » pour les pages intérieures */
.hero-soft { position: relative; overflow: hidden;
    background: linear-gradient(165deg, #E9F1ED 0%, var(--bg) 48%, var(--blush-lt) 135%); }
.hero-soft .hero-glass { max-width: 640px; margin: 0 auto; text-align: center; }
.hero-soft .container { position: relative; z-index: 1; }
/* Photo « À propos » : rectangle fin et discret (juste pour voir qui c'est). */
.about-photo { width: 150px; height: 200px; object-fit: cover; object-position: center 18%;
    border-radius: 14px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: block; }

/* ---- Hero photo plein écran + feuille blanche arrondie (réf. luxury) ---- */
.hero-fullphoto { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 56px 0 88px; overflow: hidden;
    background: url('/assets/img/hero-nature.jpg') center/cover no-repeat; background-color: #cdd8d1; }
.hero-fullphoto::after { content: ""; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(to bottom, rgba(38,42,46,.40) 0%, rgba(38,42,46,.08) 28%, rgba(38,42,46,.10) 55%, rgba(38,42,46,.52) 100%); }
.hero-fp-content { position: relative; z-index: 1; color: #fff; max-width: 640px; }
.hero-fp-content .eyebrow { color: rgba(255,255,255,.9); }
.hero-fp-content h1 { color: #fff; margin-bottom: 14px; text-shadow: 0 2px 22px rgba(0,0,0,.30); }
.hero-fp-content h1 em { color: #F4E2DF; }
.hero-fp-content .hero-sub { color: rgba(255,255,255,.94); margin: 0 auto 24px; max-width: 520px;
    text-shadow: 0 1px 12px rgba(0,0,0,.25); }
.hero-fp-content .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-light { background: rgba(255,255,255,.92); color: var(--ink); border: none; border-radius: 50px;
    padding: 13px 30px; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

/* Feuille blanche arrondie qui remonte sur la photo */
.sheet-section { position: relative; z-index: 2; margin-top: -44px; background: var(--bg);
    border-radius: 32px 32px 0 0; padding: 30px 0 8px; box-shadow: 0 -14px 34px rgba(38,42,46,.10); }
@media (min-width: 860px) { .hero-fullphoto { min-height: 86vh; } }
