:root {
    --rose-950: #662c3c;
    --rose-800: #8a4257;
    --rose-700: #c06c84;
    --rose-600: #d97b97;
    --rose-500: #f779ad;
    --rose-300: #fcb0cf;
    --rose-200: #ffd6e0;
    --rose-100: #fff0f4;
    --rose-50: #fff8fa;
    --peach-100: #ffe4ec;
    --ink: #33282d;
    --muted: #75656b;
    --line: #f1dce4;
    --surface: #ffffff;
    --surface-soft: #fff7fa;
    --success: #2f7b5b;
    --success-soft: #e9f6ef;
    --warning: #96611d;
    --warning-soft: #fff5df;
    --danger: #b53c4d;
    --danger-soft: #fff0f2;
    --shadow-sm: 0 8px 24px rgba(102, 44, 60, .08);
    --shadow-md: 0 18px 50px rgba(102, 44, 60, .13);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    min-height: 100%;
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100%;
    max-width: 100%;
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 0 0, rgba(255, 214, 224, .8), transparent 34rem),
        var(--rose-50);
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: var(--rose-700); text-underline-offset: 3px; }
a:hover { color: var(--rose-950); }
p { margin: 0 0 1rem; }

h1, h2, h3, h4 {
    margin-top: 0;
    color: var(--ink);
    line-height: 1.18;
}

h1 { font-size: clamp(2rem, 7vw, 4.25rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.55rem, 4vw, 2.35rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.08rem, 2.5vw, 1.35rem); }

.page-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.site-shell {
    width: min(100% - 2rem, 1180px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 214, 224, .88);
    background: rgba(255, 240, 244, .94);
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: var(--rose-950);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--rose-200);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.brand-mark img { width: 44px; height: 44px; object-fit: cover; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-family: "Petit Formal Script", cursive; font-size: 1.3rem; font-weight: 400; }
.brand-copy small { margin-top: .25rem; color: var(--muted); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }

.site-nav {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.site-nav a {
    padding: .68rem .85rem;
    border-radius: 999px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.site-nav a:hover, .site-nav a.active { background: var(--rose-100); color: var(--rose-800); }
.site-nav a.nav-cta { background: var(--rose-700); color: white; }
.site-nav a.nav-cta:hover, .site-nav a.nav-cta.active { background: var(--rose-950); color: white; transform: translateY(-1px); }

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    border-radius: 14px;
    background: var(--rose-100);
}

.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--rose-950); }
.nav-backdrop { display: none; }

.site-main { flex: 1; padding: clamp(1.25rem, 4vw, 3rem) 0 4rem; }
.page-shell { min-width: 0; }

.site-footer {
    margin-top: auto;
    padding: 2.25rem 0;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.footer-shell { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-footer strong { font-family: "Petit Formal Script", cursive; color: var(--rose-800); font-size: 1.35rem; font-weight: 400; }
.site-footer p, .site-footer span, .site-footer a { margin: .25rem 0 0; color: var(--muted); font-size: .84rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; }

.page-header { margin: .5rem 0 2rem; }
.page-header .eyebrow, .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .65rem;
    color: var(--rose-700);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.page-header p { max-width: 720px; color: var(--muted); font-size: 1.02rem; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.stack { display: flex; flex-direction: column; gap: 1rem; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }

.section {
    margin-bottom: 1.25rem;
    padding: clamp(1.25rem, 4vw, 2.25rem);
    border: 1px solid rgba(255, 214, 224, .92);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-sm);
}

.section > :last-child { margin-bottom: 0; }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.section-heading p { margin: .35rem 0 0; color: var(--muted); }
.surface-soft { background: var(--surface-soft); }

.flash-message {
    margin-bottom: 1rem;
    padding: .95rem 1.1rem;
    border: 1px solid;
    border-radius: var(--radius-sm);
    font-size: .92rem;
    font-weight: 600;
}
.flash-error { border-color: #f2c5cc; background: var(--danger-soft); color: #8c2c3b; }
.flash-warning { border-color: #ecd5a7; background: var(--warning-soft); color: #7a4c13; }
.flash-success { border-color: #bfe3cf; background: var(--success-soft); color: #246348; }

.notice {
    display: flex;
    gap: .8rem;
    padding: 1rem;
    border: 1px solid var(--rose-200);
    border-radius: var(--radius-sm);
    background: var(--rose-50);
    color: var(--rose-950);
}
.notice + .section, .notice + form, .notice + .tabs-nav { margin-top: 1rem; }
.notice strong { display: block; margin-bottom: .18rem; }
.notice p { margin: 0; color: inherit; font-size: .9rem; }
.notice-warning { border-color: #ecd5a7; background: var(--warning-soft); color: #70450f; }

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .72rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 14px;
    font: inherit;
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--rose-700); color: white; box-shadow: 0 8px 20px rgba(192, 108, 132, .24); }
.btn.primary:hover { background: var(--rose-950); color: white; }
.btn.secondary { border-color: var(--rose-200); background: white; color: var(--rose-800); }
.btn.secondary:hover { background: var(--rose-100); }
.btn.ghost { background: transparent; color: var(--rose-800); }
.btn.danger { background: var(--danger-soft); color: var(--danger); }
.btn.danger:hover { background: #f9dce1; }
.btn.small { min-height: 38px; padding: .5rem .75rem; font-size: .8rem; border-radius: 11px; }
.btn.block { width: 100%; }
.btn:disabled, .btn.disabled { opacity: .55; pointer-events: none; }

form { margin: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: flex; min-width: 0; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
label, .field-label { color: var(--rose-950); font-size: .85rem; font-weight: 700; }
.field-hint { color: var(--muted); font-size: .78rem; }

input, textarea, select {
    width: 100%;
    min-height: 48px;
    padding: .72rem .85rem;
    border: 1px solid #ddd0d5;
    border-radius: 13px;
    outline: none;
    background: white;
    color: var(--ink);
    font: inherit;
    font-size: 16px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--rose-500); box-shadow: 0 0 0 4px rgba(247, 121, 173, .15); }
input[readonly] { background: #f8f4f5; color: var(--muted); }
input[type="checkbox"] { width: 20px; min-height: 20px; accent-color: var(--rose-700); }
input[type="file"] { padding: .6rem; background: var(--surface-soft); }
.text-danger, .validation-summary-errors { color: var(--danger) !important; font-size: .82rem; }
.validation-summary-errors ul { margin: 0; padding-left: 1.1rem; }
.form-actions { display: flex; justify-content: flex-end; gap: .75rem; margin-top: 1.25rem; }

.tabs-scope { min-width: 0; }
.tabs-nav {
    display: flex;
    max-width: 100%;
    gap: .45rem;
    margin: 0 0 1.5rem;
    padding: .35rem;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .82);
    scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tabs-swipe-hint { display: none; }
.tab-btn {
    flex: 0 0 auto;
    min-height: 42px;
    padding: .62rem 1rem;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}
.tab-btn:hover { background: var(--rose-50); color: var(--rose-800); }
.tab-btn.active { background: var(--rose-700); color: white; box-shadow: 0 5px 14px rgba(192, 108, 132, .24); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fade-in .2s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }

/* Accueil */
.home-hero {
    position: relative;
    display: grid;
    min-height: min(68vh, 650px);
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 36px;
    background: linear-gradient(145deg, var(--rose-700), var(--rose-500));
    box-shadow: var(--shadow-md);
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 6vw, 5rem); color: white; }
.hero-copy h1 { margin-bottom: 1rem; color: white; font-family: "Petit Formal Script", cursive; font-weight: 400; }
.hero-copy p { max-width: 520px; color: rgba(255,255,255,.78); font-size: 1.02rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.hero-actions .btn.primary { background: white; color: var(--rose-950); }
.hero-actions .btn.secondary { border-color: rgba(255,255,255,.35); background: transparent; color: white; }
.hero-media { min-height: 360px; background: linear-gradient(135deg, rgba(192,108,132,.04), rgba(102,44,60,.28)), url('../img/Wallpaper2.jpg') center / cover; }
.home-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.value-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.value-card span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: .8rem; border-radius: 13px; background: var(--rose-100); color: var(--rose-800); font-weight: 800; }
.value-card h3 { margin-bottom: .35rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.about-container { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(1.25rem, 4vw, 3rem); }
.about-text p { color: var(--muted); }
.presentation-text { color: var(--muted); }
.presentation-text > :first-child { margin-top: 0; }
.presentation-text > :last-child { margin-bottom: 0; }
.presentation-text p { margin-bottom: .9rem; color: inherit; }
.presentation-text h3 { margin: 1.15rem 0 .45rem; color: var(--rose-800); }
.presentation-text ul { margin: .4rem 0 1rem; padding-left: 1.25rem; }
.presentation-text li { margin-bottom: .32rem; }
.about-image img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 24px; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.gallery-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); }
.carousel { overflow: hidden; }
.carousel-wrapper { position: relative; max-width: 100%; overflow: hidden; }
.carousel-track { display: flex; gap: 1rem; transition: transform .4s ease; }
.carousel-track img { width: calc(50% - .5rem); flex: 0 0 auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); }
.carousel-dots { display: flex; justify-content: center; gap: .45rem; margin-top: 1rem; }
.carousel-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--rose-200); }
.carousel-dots button.active { width: 24px; border-radius: 999px; background: var(--rose-700); }

.category { overflow: hidden; margin-bottom: .8rem; border: 1px solid var(--line); border-radius: 16px; background: white; }
.category:last-child { margin-bottom: 0; }
.collapsible { position: relative; margin: 0; padding: 1rem 3rem 1rem 1rem; cursor: pointer; }
.collapsible::after { content: "+"; position: absolute; top: 50%; right: 1rem; transform: translateY(-50%); color: var(--rose-700); font-size: 1.4rem; }
.collapsible.active::after { content: "−"; }
.collapsed-content { display: none; margin: 0; padding: 0 1rem 1rem; list-style: none; }
.collapsed-content.show { display: block; }
.category li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-top: 1px solid #f1e8eb; }
.category li span { flex: 0 0 auto; padding: .3rem .65rem; border-radius: 999px; background: var(--rose-100); color: var(--rose-800); font-size: .82rem; font-weight: 700; }
.category li > .service-choice-copy { flex: 1 1 auto; padding: 0; border-radius: 0; background: transparent; color: var(--ink); }
.category li > .service-choice-copy small { display: block; color: var(--muted); font-weight: 500; }

/* Réservation */
.booking-shell { max-width: 900px; margin-inline: auto; }
.booking-progress { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-bottom: 1.5rem; }
.booking-step { display: flex; align-items: center; gap: .55rem; min-width: 0; color: var(--muted); font-size: .8rem; font-weight: 700; }
.booking-step::before { content: attr(data-step); display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; }
.booking-step.active { color: var(--rose-800); }
.booking-step.active::before, .booking-step.done::before { border-color: var(--rose-700); background: var(--rose-700); color: white; }
.service-category { margin-bottom: 1rem; }
.service-category-toggle { width: 100%; text-align: left; }
.service-options { display: grid; gap: .65rem; }
.collapsed-content.service-options { display: none; }
.collapsed-content.service-options.show { display: grid; }
.service-choice { position: relative; display: flex; align-items: center; gap: .85rem; padding: 1rem; border: 1px solid var(--line); border-radius: 15px; background: white; cursor: pointer; transition: border-color .18s, background .18s, transform .18s; }
.service-choice:hover { border-color: var(--rose-300); transform: translateY(-1px); }
.service-choice:has(input:checked) { border-color: var(--rose-600); background: var(--rose-50); box-shadow: 0 0 0 3px rgba(247,121,173,.12); }
.service-choice input { width: 21px; min-height: 21px; flex: 0 0 21px; }
.service-choice-copy { min-width: 0; flex: 1; }
.service-choice-copy strong { display: block; font-size: .95rem; }
.service-choice-copy small { color: var(--muted); }
.service-price { flex: 0 0 auto; color: var(--rose-800); font-weight: 800; }
.booking-summary { position: sticky; bottom: .75rem; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1rem; padding: .85rem; border: 1px solid var(--rose-200); border-radius: 18px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.summary-copy strong { display: block; }
.summary-copy small { color: var(--muted); }

.calendar-card { padding: clamp(.65rem, 2vw, 1.25rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
#calendar { max-width: 100%; overflow: hidden; }
.fc { --fc-border-color: #efe5e8; --fc-today-bg-color: #fff7f9; }
.fc .fc-toolbar { gap: .5rem; }
.fc .fc-toolbar-title { color: var(--rose-950); font-size: clamp(1rem, 4vw, 1.35rem) !important; text-transform: capitalize; }
.fc .fc-button { min-height: 38px; padding: .45rem .7rem !important; border: 0 !important; border-radius: 10px !important; background: var(--rose-700) !important; box-shadow: none !important; font-size: .82rem !important; }
.fc .fc-daygrid-day-frame { min-height: 72px; background: white; }
.fc .fc-daygrid-day-number, .fc .fc-col-header-cell-cushion { color: var(--ink); text-decoration: none; }
.fc .fc-daygrid-day-number { padding: .45rem; font-size: .82rem; }
.fc .has-slots { position: relative; background: var(--success-soft) !important; cursor: pointer; }
.fc .has-slots::after { content: ""; position: absolute; right: 6px; bottom: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.fc .has-no-slots { position: relative; background: var(--danger-soft) !important; cursor: pointer; }
.fc .has-no-slots::after { content: ""; position: absolute; right: 6px; bottom: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--danger); }
.calendar-legend { display: flex; flex-wrap: wrap; gap: .65rem 1rem; margin-top: .85rem; color: var(--muted); font-size: .8rem; }
.calendar-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.calendar-legend i { width: 11px; height: 11px; flex: 0 0 auto; border-radius: 4px; }
.calendar-legend i.available { background: var(--success-soft); border: 1px solid var(--success); }
.calendar-legend i.unavailable { background: var(--danger-soft); border: 1px solid var(--danger); }
.slot-panel { margin-top: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-soft); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: .65rem; }
.slot-button { min-height: 46px; padding: .7rem; border: 1px solid #b9dfca; border-radius: 13px; background: var(--success-soft); color: #225c42; font-weight: 800; cursor: pointer; }
.slot-button:hover { background: #d8efe2; }
.appointment-recap { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 1rem; border-radius: 16px; background: var(--rose-100); }
.appointment-recap p { margin: 0; }
.appointment-recap strong { display: block; }

/* Compte et authentification */
.auth-shell { width: min(100%, 540px); margin: 1rem auto; }
.auth-card { padding: clamp(1.35rem, 5vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-md); }
.auth-card h1 { margin-bottom: .45rem; font-family: "Petit Formal Script", cursive; color: var(--rose-800); font-size: clamp(2rem, 7vw, 3rem); font-weight: 400; }
.auth-card > p { color: var(--muted); }
.auth-links { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; margin-top: 1rem; font-size: .86rem; }
.account-hero { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; padding: 1.25rem; overflow: hidden; border: 1px solid var(--rose-200); border-radius: var(--radius); background: linear-gradient(135deg, #fff, #fff9fb); color: var(--ink); box-shadow: var(--shadow-sm); }
.account-hero .eyebrow { color: var(--rose-800); }
.account-hero h1 { margin: 0; color: var(--rose-950); font-size: clamp(1.6rem, 5vw, 2.5rem); }
.account-hero p { margin: .25rem 0 0; color: var(--muted); }
    .account-hero .btn.primary {
        background: var(--rose-700);
        color: white;
        box-shadow: 0 8px 20px rgba(192, 108, 132, .24);
    }

        .account-hero .btn.primary:hover {
            background: var(--rose-950);
        }
.account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.account-card { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.info-list { display: grid; gap: .8rem; }
.info-row { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid #f0e7ea; }
.info-row:last-child { padding-bottom: 0; border-bottom: 0; }
.info-row span { color: var(--muted); font-size: .84rem; }
.info-row strong { text-align: right; font-size: .9rem; }
.appointments-list { display: grid; gap: 1rem; }
.appt-card { padding: 1.15rem; border: 1px solid var(--line); border-left: 5px solid var(--success); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.appt-card h3 { margin-bottom: .35rem; }
.appt-date { color: var(--rose-800); font-weight: 800; }
.appt-services { margin: .75rem 0; padding-left: 1.1rem; color: var(--muted); }
.appt-services li { margin-bottom: .25rem; }
.appt-total { padding-top: .65rem; border-top: 1px solid var(--line); font-size: .9rem; font-weight: 800; }
.btnapptcard { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1rem; }
.btnapptcard form { flex: 1 1 180px; }
.btnapptcard .btn { width: 100%; }
.empty-state { padding: 2rem 1rem; text-align: center; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1rem; }
.contact-card { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.map-frame { width: 100%; min-height: 360px; border: 0; border-radius: var(--radius); }
.faq-item { margin-bottom: .65rem; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: white; }
.faq-question { width: 100%; padding: 1rem; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 700; cursor: pointer; }
.faq-answer { display: none; padding: 0 1rem 1rem; color: var(--muted); }
.faq-item.active .faq-answer { display: block; }

/* Administration */
.admin-page { min-width: 0; }
.admin-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.25rem; }
.admin-hero h1 { margin: 0; font-size: clamp(2rem, 5vw, 3rem); }
.admin-hero p { max-width: 700px; margin: .4rem 0 0; color: var(--muted); }
.admin-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .75rem; margin-bottom: 1.25rem; }
.kpi-card { padding: 1rem; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: var(--shadow-sm); }
.kpi-card span { display: block; color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.kpi-card strong { display: block; margin-top: .25rem; color: var(--rose-950); font-size: 1.6rem; }
.admin-panel { margin-bottom: 1rem; padding: clamp(1rem, 3vw, 1.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.admin-panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.admin-panel-header h2, .admin-panel-header h3 { margin-bottom: .25rem; }
.admin-panel-header p { margin: 0; color: var(--muted); font-size: .88rem; }
.planning-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 1rem; align-items: start; }
.availability-editor { position: sticky; top: 96px; }
.availability-editor form + .admin-panel-header { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.availability-editor .time-preview + .btn { margin-top: .75rem; }
.time-preview { margin-top: .75rem; padding: .85rem; border-radius: 14px; background: var(--rose-100); color: var(--rose-950); font-weight: 700; text-align: center; }
.quick-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: .65rem; }
.quick-time { min-height: 40px; padding: .5rem; border: 1px solid var(--rose-200); border-radius: 11px; background: white; color: var(--rose-800); font-weight: 700; cursor: pointer; }
.date-picker { position: relative; }
.date-picker-trigger { display: grid; width: 100%; min-height: 58px; grid-template-columns: 28px minmax(0, 1fr) 18px; align-items: center; gap: .65rem; padding: .7rem .85rem; border: 1px solid var(--rose-200); border-radius: 14px; background: linear-gradient(135deg, white, var(--rose-50)); color: var(--rose-950); text-align: left; cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.date-picker-trigger:hover { border-color: var(--rose-500); background: var(--rose-100); }
.date-picker.open .date-picker-trigger { border-color: var(--rose-500); box-shadow: 0 0 0 4px rgba(247, 121, 173, .15); }
.date-picker-trigger strong { overflow: hidden; font-size: .98rem; text-overflow: ellipsis; white-space: nowrap; }
.date-picker-calendar-icon { position: relative; width: 25px; height: 23px; border: 2px solid var(--rose-700); border-radius: 6px; }
.date-picker-calendar-icon::before { content: ""; position: absolute; top: 4px; right: 0; left: 0; border-top: 2px solid var(--rose-700); }
.date-picker-calendar-icon::after { content: ""; position: absolute; top: -5px; left: 5px; width: 11px; height: 5px; border-right: 2px solid var(--rose-700); border-left: 2px solid var(--rose-700); }
.date-picker-chevron { width: 9px; height: 9px; border-right: 2px solid var(--rose-700); border-bottom: 2px solid var(--rose-700); transform: rotate(45deg) translateY(-2px); transition: transform .18s ease; }
.date-picker.open .date-picker-chevron { transform: rotate(225deg) translate(-2px, -2px); }
.date-picker-panel { position: absolute; top: calc(100% + .45rem); right: 0; z-index: 85; width: min(332px, calc(100vw - 2rem)); padding: .75rem; border: 1px solid var(--rose-200); border-radius: 20px; background: rgba(255, 255, 255, .98); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.date-picker-panel[hidden] { display: none; }
.date-picker-panel-header { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .1rem .1rem .45rem; color: var(--rose-950); }
.date-picker-close { display: grid; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 10px; background: var(--rose-100); color: var(--rose-800); font: inherit; font-size: 1.3rem; line-height: 1; cursor: pointer; }
.date-picker-month-nav { display: grid; min-height: 44px; grid-template-columns: 42px minmax(0, 1fr) 42px; align-items: center; gap: .35rem; margin-bottom: .35rem; border-radius: 13px; background: var(--rose-50); }
.date-picker-month-nav strong { color: var(--rose-950); text-align: center; text-transform: capitalize; }
.date-picker-month-nav button { display: grid; width: 36px; height: 36px; place-items: center; justify-self: center; border: 0; border-radius: 11px; background: transparent; color: var(--rose-800); font: inherit; font-size: 1.65rem; line-height: 1; cursor: pointer; }
.date-picker-month-nav button:hover { background: var(--rose-100); }
.date-picker-weekdays, .date-picker-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .22rem; }
.date-picker-weekdays { padding: .35rem 0 .2rem; color: var(--rose-700); font-size: .7rem; font-weight: 800; text-align: center; }
.date-picker-day { position: relative; display: grid; width: 100%; min-width: 0; aspect-ratio: 1; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--ink); font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }
.date-picker-day:hover:not(:disabled) { background: var(--rose-100); color: var(--rose-800); }
.date-picker-day.outside-month { color: #bbaab0; font-weight: 600; }
.date-picker-day.today:not(.selected)::after { content: ""; position: absolute; bottom: 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--rose-600); }
.date-picker-day.selected { background: var(--rose-700); color: white; box-shadow: 0 5px 13px rgba(192, 108, 132, .28); }
.date-picker-day:disabled { color: #d8cdd1; cursor: not-allowed; opacity: .56; }
.date-picker-day:focus-visible { outline: 3px solid rgba(247, 121, 173, .28); outline-offset: 1px; }
.date-picker-footer { display: flex; justify-content: flex-end; margin-top: .5rem; padding-top: .5rem; border-top: 1px solid var(--line); }
.date-picker-footer button { min-height: 36px; padding: .4rem .7rem; border: 0; border-radius: 10px; background: var(--rose-100); color: var(--rose-800); font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }
.time-picker { position: relative; }
.time-picker-trigger { display: grid; width: 100%; min-height: 54px; grid-template-columns: 28px 1fr 18px; align-items: center; gap: .55rem; padding: .65rem .8rem; border: 1px solid var(--rose-200); border-radius: 14px; background: linear-gradient(135deg, white, var(--rose-50)); color: var(--rose-950); text-align: left; cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.time-picker-trigger:hover { border-color: var(--rose-500); background: var(--rose-100); }
.time-picker.open .time-picker-trigger { border-color: var(--rose-500); box-shadow: 0 0 0 4px rgba(247, 121, 173, .15); }
.time-picker-trigger strong { font-size: 1.08rem; }
.time-picker-clock { position: relative; width: 25px; height: 25px; border: 2px solid var(--rose-700); border-radius: 50%; }
.time-picker-clock::before, .time-picker-clock::after { content: ""; position: absolute; left: 50%; bottom: 50%; width: 2px; border-radius: 2px; background: var(--rose-700); transform-origin: bottom center; }
.time-picker-clock::before { height: 7px; transform: translateX(-50%); }
.time-picker-clock::after { height: 6px; transform: translateX(-50%) rotate(55deg); }
.time-picker-chevron { width: 9px; height: 9px; border-right: 2px solid var(--rose-700); border-bottom: 2px solid var(--rose-700); transform: rotate(45deg) translateY(-2px); transition: transform .18s ease; }
.time-picker.open .time-picker-chevron { transform: rotate(225deg) translate(-2px, -2px); }
.time-picker-panel { position: absolute; top: calc(100% + .45rem); left: 0; z-index: 80; width: min(286px, calc(100vw - 2rem)); padding: .7rem; border: 1px solid var(--rose-200); border-radius: 20px; background: rgba(255, 255, 255, .98); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); }
.form-grid .field:last-child .time-picker-panel { right: 0; left: auto; }
.time-picker-panel[hidden] { display: none; }
.time-picker-panel-header { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .15rem .15rem .65rem; color: var(--rose-950); }
.time-picker-close { display: grid; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 10px; background: var(--rose-100); color: var(--rose-800); font-size: 1.3rem; line-height: 1; cursor: pointer; }
.time-picker-wheels { position: relative; display: grid; height: 220px; grid-template-columns: 1fr 24px 1fr; align-items: center; gap: .15rem; overflow: hidden; border: 1px solid var(--rose-100); border-radius: 17px; background: linear-gradient(180deg, var(--rose-50), white 43%, white 57%, var(--rose-50)); }
.time-picker-wheels::before, .time-picker-wheels::after { content: ""; position: absolute; right: 0; left: 0; z-index: 4; height: 76px; pointer-events: none; }
.time-picker-wheels::before { top: 0; background: linear-gradient(180deg, rgba(255, 246, 249, .98), rgba(255, 246, 249, 0)); }
.time-picker-wheels::after { bottom: 0; background: linear-gradient(0deg, rgba(255, 246, 249, .98), rgba(255, 246, 249, 0)); }
.time-picker-selection { position: absolute; top: 50%; right: .55rem; left: .55rem; z-index: 1; height: 44px; border-top: 1px solid var(--rose-200); border-bottom: 1px solid var(--rose-200); border-radius: 11px; background: linear-gradient(135deg, var(--rose-100), rgba(255, 224, 234, .72)); transform: translateY(-50%); pointer-events: none; }
.time-picker-wheel { position: relative; z-index: 2; height: 220px; padding: 88px 0; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: none; scroll-snap-type: y mandatory; touch-action: pan-y; -webkit-overflow-scrolling: touch; }
.time-picker-wheel::-webkit-scrollbar { display: none; }
.time-picker-wheel-option { display: grid; width: 100%; height: 44px; place-items: center; padding: 0; border: 0; background: transparent; color: var(--rose-950); font: inherit; font-size: 1.28rem; font-variant-numeric: tabular-nums; cursor: pointer; opacity: .38; scroll-snap-align: center; touch-action: pan-y; user-select: none; transition: color .14s ease, opacity .14s ease, transform .14s ease; }
.time-picker-wheel-option.selected { color: var(--rose-950); font-weight: 800; opacity: 1; transform: scale(1.08); }
.time-picker-separator { position: relative; z-index: 3; color: var(--rose-800); font-size: 1.35rem; font-weight: 900; text-align: center; pointer-events: none; }
.availability-list { display: grid; gap: .55rem; max-height: 520px; overflow: auto; }
.availability-item { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .8rem; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); }
.availability-item strong { display: block; font-size: .88rem; }
.availability-item span { color: var(--muted); font-size: .8rem; }

.client-toolbar { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .75rem; margin-bottom: 1rem; }
.search-field { position: relative; }
.search-field input { padding-left: 2.65rem; }
.search-field::before { content: "⌕"; position: absolute; top: 50%; left: 1rem; z-index: 1; transform: translateY(-50%); color: var(--rose-700); font-size: 1.25rem; }
.filter-pills { display: flex; gap: .4rem; }
.filter-pill { min-height: 46px; padding: .65rem .85rem; border: 1px solid var(--line); border-radius: 13px; background: white; color: var(--muted); font-weight: 700; cursor: pointer; }
.filter-pill.active { border-color: var(--rose-600); background: var(--rose-100); color: var(--rose-800); }
.clients-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
.client-card { min-width: 0; padding: 1rem; border: 1px solid var(--line); border-radius: 17px; background: white; }
.client-card.is-blacklisted { border-color: #e7b4bd; background: #fffafb; }
.client-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; margin-bottom: .85rem; }
.client-card-header h3 { margin: 0; font-size: 1rem; }
.client-card-header p { margin: .2rem 0 0; color: var(--muted); font-size: .78rem; }
.status-badge { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .55rem; border-radius: 999px; background: var(--success-soft); color: var(--success); font-size: .7rem; font-weight: 800; white-space: nowrap; }
.status-badge.blacklisted { background: var(--danger-soft); color: var(--danger); }
.client-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.client-fields .field.full { grid-column: 1 / -1; }
.client-fields input { min-height: 42px; padding: .55rem .65rem; font-size: .88rem; }
.client-meta { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .75rem; color: var(--muted); font-size: .74rem; }
.client-actions { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .9rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.switch-field { display: inline-flex; align-items: center; gap: .55rem; color: var(--danger); font-size: .78rem; font-weight: 800; }

.client-picker { position: relative; margin-bottom: 1rem; }
.planning-client-search { position: relative; margin-bottom: 1rem; }
.planning-client-search .search-field label { color: var(--rose-950); font-weight: 700; }
.planning-client-appointments { margin-bottom: 1rem; }
.client-search-message { margin: 0; padding: 1rem; }
.client-search-results { position: absolute; top: calc(100% + .4rem); right: 0; left: 0; z-index: 50; display: none; max-height: 310px; overflow: auto; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: var(--shadow-md); }
.client-search-results.show { display: block; }
.client-result { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: .75rem; padding: .85rem 1rem; border: 0; border-bottom: 1px solid #f1e8eb; background: white; color: var(--ink); text-align: left; cursor: pointer; }
.client-result:last-child { border-bottom: 0; }
.client-result:hover { background: var(--rose-50); }
.client-result strong, .client-result small { display: block; }
.client-result small { color: var(--muted); }
.selected-client { display: none; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .65rem; padding: .75rem; border: 1px solid #bfe3cf; border-radius: 13px; background: var(--success-soft); }
.selected-client.show { display: flex; }
.selected-client strong, .selected-client small { display: block; }
.selected-client small { color: var(--success); }

.table-scroll { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 15px; }
.admin-table { width: 100%; min-width: 720px; border-collapse: collapse; background: white; }
.admin-table th { padding: .75rem; background: var(--surface-soft); color: var(--muted); font-size: .72rem; text-align: left; text-transform: uppercase; }
.admin-table td { padding: .75rem; border-top: 1px solid var(--line); vertical-align: middle; }
.admin-table input, .admin-table select, .admin-table textarea { min-height: 40px; padding: .5rem .6rem; font-size: .82rem; }
.admin-table textarea { min-height: 74px; }
.admin-appt-card { margin-bottom: .75rem; padding: 1rem; border: 1px solid var(--line); border-left: 4px solid var(--rose-600); border-radius: 14px; background: white; text-align: left; }
.admin-appt-card h4 { margin-bottom: .35rem; color: var(--rose-800); }
.admin-appt-meta, .admin-appt-total { font-size: .84rem; }
.admin-appt-services { margin: .65rem 0; padding-left: 1.1rem; color: var(--muted); font-size: .82rem; }
.has-appts { background: var(--rose-100) !important; cursor: pointer; }
.gallery-admin-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 12px; }
.admin-panel > form + form { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.admin-panel .notice + .form-grid { margin-top: 1rem; }
.admin-panel form .notice { margin-bottom: 1rem; }

.formatted-editor { overflow: hidden; border: 1px solid var(--rose-200); border-radius: 18px; background: var(--surface-soft); }
.editor-toolbar { display: flex; flex-wrap: wrap; gap: .4rem; padding: .65rem; border-bottom: 1px solid var(--rose-200); background: var(--rose-100); }
.editor-tool { display: inline-flex; min-height: 38px; align-items: center; gap: .4rem; padding: .45rem .7rem; border: 1px solid var(--rose-200); border-radius: 10px; background: white; color: var(--rose-800); font: inherit; font-size: .82rem; font-weight: 800; cursor: pointer; }
.editor-tool:hover { border-color: var(--rose-500); background: var(--rose-50); }
.editor-tool span { font-size: .76rem; font-weight: 700; }
.editor-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; padding: 1rem; }
.editor-layout textarea { min-height: 300px; resize: vertical; background: white; }
.formatted-preview { min-height: 300px; padding: 1rem; overflow-wrap: anywhere; border: 1px solid var(--line); border-radius: 14px; background: white; }

@media (max-width: 960px) {
    /* Le backdrop-filter du header crée un repère de positionnement pour ses
       enfants fixed sur certains navigateurs mobiles. On le retire ici afin
       que le tiroir reste toujours calé sur la fenêtre. */
    .site-header { backdrop-filter: none; }
    .menu-toggle { position: relative; z-index: 1020; display: block; flex: 0 0 auto; }
    .site-nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 1010;
        display: flex;
        width: min(86vw, 360px);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        align-items: stretch;
        flex-direction: column;
        gap: .4rem;
        padding: 6rem 1rem 1.25rem;
        margin: 0;
        overscroll-behavior: contain;
        overflow-y: auto;
        background: white;
        box-shadow: -18px 0 50px rgba(47, 41, 48, .16);
        visibility: hidden;
        transform: translate3d(105%, 0, 0);
        transition: transform .25s ease, visibility 0s linear .25s;
        will-change: transform;
    }
    .site-nav a { display: block; width: 100%; flex: 0 0 auto; padding: .9rem 1rem; border-radius: 14px; font-size: 1rem; }
    .nav-open .site-nav { visibility: visible; transform: translate3d(0, 0, 0); transition-delay: 0s; }
    .nav-backdrop { position: fixed; inset: 0; z-index: 1005; display: block; border: 0; background: rgba(47,41,48,.38); visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .25s ease, visibility 0s linear .25s; }
    .nav-open .nav-backdrop { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
    .nav-open .menu-toggle { position: fixed; top: max(15px, env(safe-area-inset-top)); right: max(1rem, env(safe-area-inset-right)); }
    .home-hero { grid-template-columns: 1fr; }
    .hero-media { min-height: 330px; order: -1; }
    .home-values { grid-template-columns: 1fr; }
    .planning-grid { grid-template-columns: 1fr; }
    .availability-editor { position: static; }
    .admin-kpis { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: 1fr; }
    .editor-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .site-shell { width: min(100% - 1rem, 1180px); }
    .nav-shell { min-height: 68px; }
    .brand-mark { width: 44px; height: 44px; }
    .brand-mark img { width: 39px; height: 39px; }
    .brand-copy strong { font-size: 1.12rem; }
    .brand-copy small { display: none; }
    .site-main { padding-top: 1rem; }
    .tabs-nav.swipe-hint-visible { margin-bottom: .45rem; }
    .tabs-nav.swipe-hint-visible { -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%); mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent 100%); }
    .tabs-swipe-hint { display: flex; width: max-content; align-items: center; gap: .35rem; margin: 0 .45rem 1.15rem auto; color: var(--rose-700); font-size: .72rem; font-weight: 800; letter-spacing: .01em; }
    .tabs-swipe-hint[hidden] { display: none; }
    .tabs-swipe-hint span { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; background: var(--rose-100); font-size: .82rem; }
    .section { padding: 1rem; border-radius: 22px; }
    .page-header { margin-bottom: 1.25rem; padding-inline: .35rem; }
    .page-header h1 { font-size: 2rem; }
    .form-grid, .account-grid, .contact-grid, .about-container { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .footer-shell { align-items: flex-start; flex-direction: column; }
    .footer-links { align-items: flex-start; }
    .home-hero { min-height: auto; border-radius: 25px; }
    .hero-copy { padding: 1.5rem; }
    .hero-media { min-height: 250px; }
    .hero-actions .btn { width: 100%; }
    .carousel-track img { width: 100%; }
    .booking-progress { gap: .25rem; }
    .booking-step { flex-direction: column; gap: .25rem; text-align: center; font-size: .68rem; }
    .booking-summary { align-items: stretch; flex-direction: column; bottom: .4rem; }
    .booking-summary .btn { width: 100%; }
    .appointment-recap { grid-template-columns: 1fr; }
    .fc .fc-toolbar { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: .35rem; }
    .fc .fc-toolbar-chunk { display: flex; min-width: 0; align-items: center; justify-content: center; }
    .fc .fc-toolbar-chunk:first-child { justify-content: flex-start; }
    .fc .fc-toolbar-chunk:last-child { justify-content: flex-end; }
    .fc .fc-toolbar-title { overflow: hidden; font-size: .95rem !important; text-overflow: ellipsis; white-space: nowrap; }
    .fc .fc-button { min-height: 34px; padding: .35rem .5rem !important; font-size: .74rem !important; }
    .fc .fc-daygrid-day-frame { min-height: 49px; }
    .fc .fc-daygrid-day-number { padding: .25rem; font-size: .72rem; }
    .slot-grid { grid-template-columns: repeat(2, 1fr); }
    .account-hero, .admin-hero, .section-heading, .admin-panel-header { align-items: flex-start; flex-direction: column; }
    .account-hero .btn { width: 100%; }
    .client-toolbar { grid-template-columns: 1fr; }
    .filter-pills { overflow-x: auto; }
    .client-fields { grid-template-columns: 1fr; }
    .client-fields .field.full { grid-column: auto; }
    .client-actions { align-items: stretch; flex-direction: column; }
    .client-actions .btn { width: 100%; }
    .form-actions { align-items: stretch; flex-direction: column-reverse; }
    .form-actions .btn { width: 100%; }
    .quick-times { grid-template-columns: repeat(3, 1fr); }
    .date-picker-panel, .time-picker-panel, .form-grid .field:last-child .time-picker-panel { right: 0; left: 0; width: 100%; }
    .availability-item { align-items: flex-start; }
    .admin-table { min-width: 650px; }
}

@media (max-width: 420px) {
    .brand-copy strong { font-size: 1rem; }
    .admin-kpis { grid-template-columns: 1fr 1fr; }
    .kpi-card strong { font-size: 1.3rem; }
    .slot-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Marqueur de fin : permet de détecter une feuille absente, ancienne ou tronquée. */
:root { --ambernails-css-version: 20260914; }
