/* HEAD SPA By Nina — Design premium */

:root {
    --gold: #c4a574;
    --gold-light: #e8d5b0;
    --gold-dark: #9a7b4f;
    --cream: #faf6f0;
    --cream-dark: #f0e8dc;
    --sand: #d4c4a8;
    --text: #3d3428;
    --text-muted: #7a6f63;
    --white: #ffffff;
    --turquoise: #5ba8a8;
    --shadow: 0 8px 32px rgba(61, 52, 40, 0.08);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

/* Texte lisible par Google / lecteurs d'écran, invisible à l'écran */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container { width: min(1140px, 92%); margin: 0 auto; }

/* Header */
.site-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 246, 240, 0.98);
    border-bottom: 1px solid rgba(196, 165, 116, 0.2);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.logo { text-align: center; line-height: 1.2; }
.logo-main {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
}
.logo-sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}
.site-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 400;
}
.site-nav a.is-active { color: var(--gold-dark); }
.nav-account { font-size: 0.8rem !important; }
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    background: none;
    border: 1px solid rgba(196, 165, 116, 0.35);
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 210;
}
.nav-toggle-bar {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--gold-dark);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.nav-overlay {
    display: none;
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
    .nav-overlay {
        display: none !important;
    }
    .site-nav {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        background: none;
        box-shadow: none;
        border: none;
        overflow: visible;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-sans);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white) !important;
    box-shadow: var(--shadow);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(154, 123, 79, 0.25);
    color: var(--white) !important;
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
}
.btn-outline:hover { background: var(--gold-light); }
.btn-outline-danger {
    background: transparent;
    border: 1px solid #c62828;
    color: #c62828;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}
.btn-outline-danger:hover { background: #ffebee; }

/* Hero — l'affiche contient déjà HEAD SPA / By Nina, pas de texte dupliqué */
.hero {
    position: relative;
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero.webp') center top / cover no-repeat;
    z-index: 0;
}
@supports not (background-image: url('/assets/images/hero.webp')) {
    .hero-bg {
        background-image: url('/assets/images/hero.jpg');
    }
}
.hero-picture,
.hero-image {
    display: none;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(61, 52, 40, 0.05) 0%,
        rgba(61, 52, 40, 0.08) 38%,
        rgba(61, 52, 40, 0.35) 58%,
        rgba(61, 52, 40, 0.78) 100%
    );
}
/* Espace réservé pour ne pas recouvrir le texte de l'affiche */
.hero-spacer {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 36vh;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: min(760px, 92%);
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
    background: linear-gradient(
        to top,
        rgba(45, 38, 30, 0.88) 0%,
        rgba(45, 38, 30, 0.55) 55%,
        transparent 100%
    );
}
.hero-text {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    margin-bottom: 1.75rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.75;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-btn-outline {
    color: #fff !important;
    border-color: var(--gold-light) !important;
}
.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
}
.hero-note {
    margin-top: 1.75rem;
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

/* Sections */
section { padding: 5rem 0; }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 1.15rem;
}

/* Cards prestations */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border: 1px solid rgba(196, 165, 116, 0.25);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.featured {
    border-color: var(--gold);
    position: relative;
}
.service-card.featured::before {
    content: 'Signature';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gold-dark);
    color: var(--white);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
}
.service-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}
.service-duration {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.service-desc { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.service-card-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.service-card-btn { margin-top: 1.5rem; display: inline-block; }
.service-desc.cms-content p { margin-bottom: 0.5rem; font-size: 0.95rem; }

.home-cta {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    text-align: center;
}
.home-cta-inner { padding: 3rem 0; }
.home-cta h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.home-cta p { margin-bottom: 2rem; opacity: 0.95; }
.home-cta-btn {
    border-color: #fff !important;
    color: #fff !important;
}
.page-cta { text-align: center; margin-top: 3rem; }
.page-cta .btn + .btn { margin-left: 1rem; }
.tarifs-footer-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.cms-content h2 {
    font-family: var(--font-serif);
    color: var(--gold-dark);
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
}
.cms-content p { margin-bottom: 1rem; color: var(--text-muted); }
.cms-content a { color: var(--gold-dark); }
.price-current {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-dark);
}
.price-original {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}
.promo-badge {
    display: inline-block;
    background: rgba(196, 165, 116, 0.15);
    color: var(--gold-dark);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.75rem;
}

/* Page content */
.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    margin-top: 60px;
}
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--gold-dark);
}
.content-block {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 0;
}
.content-block h2 {
    font-family: var(--font-serif);
    color: var(--gold-dark);
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
}
.content-block p { margin-bottom: 1rem; color: var(--text-muted); }

/* Booking */
.booking-section { padding: 3rem 0 5rem; }
.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(280px, 400px);
    gap: 2rem;
    align-items: start;
    justify-content: center;
}
.booking-card {
    background: var(--white);
    border: 1px solid rgba(196, 165, 116, 0.25);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}
.booking-layout .booking-card {
    max-width: none;
    margin: 0;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--sand);
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.slot-btn {
    padding: 0.6rem;
    border: 1px solid var(--sand);
    background: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.slot-btn:hover, .slot-btn.selected {
    background: var(--gold-dark);
    color: var(--white);
    border-color: var(--gold-dark);
}
.slot-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.alert-info { background: #fff8e1; color: #f57f17; border: 1px solid #ffe082; }

/* Connexion */
.page-hero-compact { padding: 7rem 0 2.5rem; }
.login-section { padding: 2rem 0 5rem; }
.login-card {
    background: var(--white);
    border: 1px solid rgba(196, 165, 116, 0.25);
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
    max-width: 420px;
    margin: 0 auto;
}
.login-hint {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Espace client */
.client-area { padding: 2rem 0 4rem; }
.client-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand);
}
.client-nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.client-nav a.is-active { color: var(--gold-dark); font-weight: 500; }
.client-card {
    background: var(--white);
    border: 1px solid rgba(196, 165, 116, 0.25);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}
.client-card h2 {
    font-family: var(--font-serif);
    color: var(--gold-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.client-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; table-layout: fixed; }
.client-table th, .client-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid #eee; word-wrap: break-word; }
.client-table th { font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); }

/* Conteneur de défilement horizontal (secours desktop / tableaux larges) */
.table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.client-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
}
.client-badge-pending { background: #fff3e0; color: #e65100; }
.client-badge-counter_proposed { background: #e3f2fd; color: #1565c0; }
.client-badge-confirmed { background: #e8f5e9; color: #2e7d32; }
.client-badge-rejected { background: #ffebee; color: #c62828; }
.client-badge-cancelled { background: #eceff1; color: #546e7a; }
.client-empty { color: var(--text-muted); margin-bottom: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }

/* Carte fidélité — photo (tampons alignés sur l'image) */
.loyalty-card-photo-wrap {
    position: relative;
    max-width: 820px;
    margin: 0 auto 0.5rem;
    line-height: 0;
}
.loyalty-card-photo-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
/* Calibré pixel par pixel sur l'image 1174×783 px */
.loyalty-stamps-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.loyalty-stamp-overlay {
    position: absolute;
    width: 6.33%;
    aspect-ratio: 1;
    top: 48.85%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: transparent;
    transition: background 0.2s, box-shadow 0.2s;
}
.loyalty-stamp-overlay:nth-child(1)  { left: 9.92%; }
.loyalty-stamp-overlay:nth-child(2)  { left: 19.08%; }
.loyalty-stamp-overlay:nth-child(3)  { left: 28.24%; }
.loyalty-stamp-overlay:nth-child(4)  { left: 37.48%; }
.loyalty-stamp-overlay:nth-child(5)  { left: 46.51%; }
.loyalty-stamp-overlay:nth-child(6)  { left: 55.45%; }
.loyalty-stamp-overlay:nth-child(7)  { left: 64.48%; }
.loyalty-stamp-overlay:nth-child(8)  { left: 73.47%; }
.loyalty-stamp-overlay:nth-child(9)  { left: 82.54%; }
.loyalty-stamp-overlay:nth-child(10) { left: 91.48%; }
.loyalty-stamp-overlay.is-filled {
    background: rgba(196, 165, 116, 0.48);
    box-shadow: inset 0 0 0 2.5px rgba(140, 110, 65, 0.95);
}
.loyalty-stamp-overlay.is-reward-ready {
    background: rgba(196, 165, 116, 0.58);
    box-shadow: inset 0 0 0 2.5px #9a7b4f, 0 0 0 3px rgba(196, 165, 116, 0.35);
    animation: loyalty-pulse 2s ease-in-out infinite;
}
@keyframes loyalty-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
.loyalty-status-below {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 820px;
    margin: 0 auto 0.35rem;
}
.loyalty-status-below.is-success {
    color: var(--gold-dark);
    font-weight: 500;
}
.loyalty-note-below {
    font-size: 0.72rem !important;
    color: var(--text-muted) !important;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 1.5rem !important;
    line-height: 1.5;
}

/* Accès au cabinet + Google Maps */
.location-section {
    padding: 0 0 4rem;
}
.location-access {
    background: var(--white);
    border: 1px solid rgba(196, 165, 116, 0.25);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.35rem;
    width: 100%;
}
.booking-layout .location-access {
    position: sticky;
    top: 5.5rem;
}
.location-access-block {
    padding-bottom: 0.25rem;
}
.location-access-block-separated {
    border-top: 1px solid rgba(196, 165, 116, 0.28);
    margin-top: 1rem;
    padding-top: 1rem;
}
.location-access-title,
.location-access-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin: 0 0 0.85rem;
}
.location-access-subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.location-icon {
    font-size: 1.05rem;
    line-height: 1;
}
.location-building {
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.35rem;
}
.location-line {
    margin: 0 0 0.2rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}
.location-directions {
    margin: 0.85rem 0 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}
.location-map-link-wrap {
    margin: 1rem 0 0;
}
.location-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.92rem;
}
.location-map-link:hover {
    color: var(--gold);
}
.location-map-embed {
    margin-top: 1.25rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(196, 165, 116, 0.25);
    aspect-ratio: 16 / 11;
    background: var(--cream-dark);
}
.location-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.loyalty-booking-preview .loyalty-card-photo-wrap {
    margin-top: 0;
}
.loyalty-rules { padding-left: 1.25rem; color: var(--text-muted); line-height: 1.8; }
.loyalty-rules li { margin-bottom: 0.5rem; }

/* Admin — mini tampons (tableaux) */
.loyalty-stamps-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}
.loyalty-stamp-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    border: 1px solid #c4a574;
    background: #f5f0ea;
    display: inline-block;
}
.loyalty-stamp-dot.is-filled {
    background: var(--gold);
    border-color: var(--gold-dark);
}
.loyalty-stamp-dot.is-reward {
    width: auto;
    height: auto;
    border: none;
    background: none;
    font-size: 0.75rem;
    color: #bbb;
}
.loyalty-stamp-dot.is-reward.is-ready {
    color: var(--gold-dark);
}


/* Footer */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,0.75);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}
.footer-tagline { font-style: italic; font-size: 0.9rem; }
.site-footer h4 {
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.site-footer a { color: rgba(255,255,255,0.75); }
.site-footer a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 1rem; margin-top: 0.75rem; }
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}
.footer-hosting {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
}
.footer-hosting a { color: rgba(255,255,255,0.65); }
.footer-hosting a:hover { color: var(--gold-light); }

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.benefit-item {
    text-align: center;
    padding: 1.5rem;
}
.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
}
.benefit-item h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

/* Responsive — mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container {
        width: min(1140px, 94%);
    }

    body.nav-open {
        overflow: hidden;
    }

    /* La barre du haut (et le menu) doit passer AU-DESSUS du fond gris */
    body.nav-open .site-topbar {
        z-index: 700;
    }

    .topbar-inner {
        padding: 0.75rem 0;
    }

    .logo-main { font-size: 1.15rem; }
    .logo-sub { font-size: 0.85rem; }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 2;
    }

    /* Fond gris : sous la barre du haut (z-index 100) mais au-dessus du contenu */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(45, 38, 30, 0.55);
        z-index: 90;
        border: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }
    .nav-overlay:not([hidden]) {
        display: block;
    }

    /* Menu masqué par défaut, panneau plein écran à droite */
    .site-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 88vw);
        height: 100%;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 4.25rem 1.25rem 2rem;
        background: var(--cream);
        box-shadow: -8px 0 32px rgba(61, 52, 40, 0.18);
        z-index: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-left: 1px solid rgba(196, 165, 116, 0.3);
    }
    .site-nav.is-open {
        display: flex;
    }
    .site-nav a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(196, 165, 116, 0.22);
        font-size: 0.88rem;
        flex-shrink: 0;
    }
    .site-nav .nav-cta {
        margin-top: 1rem;
        text-align: center;
        padding: 1rem !important;
        border: none !important;
        flex-shrink: 0;
    }

    /* Pages intérieures */
    section { padding: 3rem 0; }
    .section-subtitle { margin-bottom: 2rem; font-size: 1rem; }
    .page-hero { padding: 5.5rem 0 2rem; }
    .page-hero-compact { padding: 5.5rem 0 1.75rem; }
    .page-hero h1 { font-size: 1.85rem; }

    /* Grilles */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .service-card { padding: 1.75rem 1.25rem; }
    .benefits-grid { gap: 1rem; }
    .benefit-item { padding: 1rem; }

    /* Réservation */
    .booking-section { padding: 2rem 0 3rem; }
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .booking-layout .location-access {
        position: static;
    }
    .booking-card { padding: 1.5rem 1.1rem; }
    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .slot-btn { padding: 0.55rem 0.25rem; font-size: 0.8rem; }

    /* Connexion / inscription */
    .login-section { padding: 1.5rem 0 3rem; }
    .login-card {
        padding: 1.75rem 1.25rem;
        max-width: none;
    }

    /* Espace client — onglets défilants */
    .client-area { padding: 1.25rem 0 3rem; }
    .client-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.65rem;
        border-bottom: 1px solid var(--sand);
        scrollbar-width: none;
    }
    .client-nav::-webkit-scrollbar { display: none; }
    .client-nav a {
        flex-shrink: 0;
        padding: 0.5rem 0.9rem;
        background: var(--white);
        border: 1px solid rgba(196, 165, 116, 0.35);
        border-radius: 999px;
        white-space: nowrap;
        font-size: 0.75rem;
    }
    .client-nav a.is-active {
        background: var(--gold-dark);
        color: var(--white);
        border-color: var(--gold-dark);
    }
    .client-card { padding: 1.25rem 1rem; max-width: 100%; overflow: hidden; }

    /* Tableaux : une ligne = une carte lisible, sans débordement */
    .client-table {
        display: block;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        table-layout: auto;
        border-collapse: collapse;
    }
    .client-table thead { display: none; }
    .client-table tbody { display: block; width: 100%; }
    .client-table tr {
        display: block;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }
    .client-table tr:last-child { border-bottom: none; }
    .client-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0.4rem 0;
        border-bottom: none;
        text-align: right;
        font-size: 0.85rem;
        word-break: break-word;
        white-space: normal;
    }
    .client-table td::before {
        content: attr(data-label);
        font-size: 0.68rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-muted);
        font-weight: 500;
        text-align: left;
        flex-shrink: 0;
        max-width: 42%;
    }
    .client-table td:not([data-label])::before,
    .client-table td[data-label=""]::before {
        display: none;
    }

    /* Pied de page */
    .site-footer { padding: 2.5rem 0 0; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 0;
        font-size: 0.8rem;
    }
    .social-links { justify-content: center; }

    /* Hero accueil */
    .hero {
        min-height: auto;
        overflow: visible;
        justify-content: flex-start;
        background: #2d261e;
        margin-top: 56px;
    }
    .hero-bg { display: none; }
    .hero-picture {
        display: block;
        width: 100%;
        line-height: 0;
    }
    .hero-image {
        display: block;
        width: 100%;
        height: auto;
        flex-shrink: 0;
    }
    .hero-spacer { display: none; }
    .hero-content {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 1.5rem 1.1rem 1.75rem;
        background: linear-gradient(180deg, #3d3428 0%, #2d261e 100%);
        border-top: 1px solid rgba(196, 165, 116, 0.2);
    }
    .hero-text {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 1.1rem;
        max-width: none;
        color: #faf6f0;
        text-shadow: none;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .hero-note {
        margin-top: 1rem;
        font-size: 0.8rem;
        color: rgba(250, 246, 240, 0.85);
        text-shadow: none;
    }
}

/* FAQ */
.faq-section { padding: 2rem 0 4rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid rgba(196, 165, 116, 0.25);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow);
}
.faq-question {
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--gold-dark);
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    float: right;
    color: var(--text-muted);
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
    padding: 0 1.25rem 1.1rem;
    color: var(--text-muted);
    line-height: 1.65;
    border-top: 1px solid rgba(196, 165, 116, 0.15);
}
.faq-cta {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
}

/* Avis clients */
.testimonials-section {
    padding: 4rem 0;
    background: var(--white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--cream);
    border: 1px solid rgba(196, 165, 116, 0.25);
    padding: 1.5rem;
    margin: 0;
    box-shadow: var(--shadow);
}
.testimonial-stars {
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}
.testimonial-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.client-hint {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.text-muted-inline {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.client-cancel-form { margin: 0; }

@media (max-width: 480px) {
    .container { width: 94%; }
    .slots-grid { grid-template-columns: repeat(2, 1fr); }
    .loyalty-card-photo-wrap { border-radius: 6px; }
}
