/* ══════════════════════════════════════════════
   L'OFFICE PRIVÉ — Feuille de style principale
   ══════════════════════════════════════════════ */

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

/* Transitions fluides entre les pages (navigateurs compatibles) : les éléments
   partagés ci-dessous (nav, footer, bouton WhatsApp) restent stables au lieu
   d'être redessinés d'un coup à chaque changement de page. */
@view-transition {
    navigation: auto;
}

::view-transition-group(*) {
    animation-duration: 0.6s;
}
::view-transition-old(*),
::view-transition-new(*) {
    animation-duration: 0.6s;
    animation-timing-function: ease;
}

/* ── Polices (auto-hébergées) ── */
@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/cinzel-variable.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 500;
    font-display: swap;
    src: url('../fonts/playfair-display-normal-variable.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400 500;
    font-display: swap;
    src: url('../fonts/playfair-display-italic-variable.woff2') format('woff2');
}

:root {
    --gold:        #D4AF37;
    --gold-light:  #e8c96a;
    --gold-dim:    #8a7a4a;
    --gold-muted:  #5a4a20;
    --gold-dark:   #3a3020;
    --black:       #000000;
    --black-soft:  #080800;
    --black-card:  #0a0a0a;
    --card-hover:  #0f0f00;
    --nav-bg:      rgba(0,0,0,0.92);
    --font-title:  'Cinzel', serif;
    --font-body:   'Playfair Display', serif;

    color-scheme: dark;
    transition: background-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"] {
    --gold:        #9c7a1f;
    --gold-light:  #b8934a;
    --gold-dim:    #6b5320;
    --gold-muted:  #8a7040;
    --gold-dark:   #ddd0ac;
    --black:       #faf7f0;
    --black-soft:  #f3efe0;
    --black-card:  #ffffff;
    --card-hover:  #f2ead4;
    --nav-bg:      rgba(255,255,255,0.92);

    color-scheme: light;
}

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--gold);
    font-family: var(--font-title);
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a { color: inherit; text-decoration: none; }

::selection {
    background: var(--gold);
    color: var(--black);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ── Navigation ── */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3rem;
    background: var(--nav-bg);
    backdrop-filter: blur(8px);
    border-bottom: 0.5px solid var(--gold-dark);
    transition: padding 0.35s ease, background-color 0.3s ease;
    view-transition-name: site-nav;
}

.site-nav.is-scrolled {
    padding: 0.85rem 3rem;
}

.nav-logo-slot {
    display: flex;
    align-items: center;
}

.nav-brand {
    display: none;
    font-size: 13px; letter-spacing: 0.4em; font-weight: 500; color: var(--gold);
}

.nav-logo-full {
    display: block;
    height: 88px; width: auto;
    transition: height 0.35s ease, opacity 0.35s ease;
}

.site-nav.is-scrolled .nav-brand { display: block; }
.site-nav.is-scrolled .nav-logo-full { display: none; }

.nav-links {
    display: flex; gap: 2rem; list-style: none;
}

.nav-links a {
    font-size: 15px; letter-spacing: 0.25em; color: var(--gold-dim);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    font-family: var(--font-title);
    font-size: 12px; letter-spacing: 0.2em; color: var(--gold);
    background: transparent; border: 0.5px solid var(--gold-dark); border-radius: 0;
    padding: 8px 18px; cursor: pointer;
    -webkit-appearance: none; appearance: none;
    transition: all 0.2s;
}

.nav-cta:hover { border-color: var(--gold); }

/* ── Theme toggle ── */
.theme-toggle {
    position: relative;
    width: 50px; height: 26px;
    border: 0.5px solid var(--gold-dark);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
}
.theme-toggle:hover { border-color: var(--gold); }

.theme-toggle-thumb {
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; line-height: 1;
    transition: left 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

[data-theme="light"] .theme-toggle-thumb { left: 26px; }

/* ── Footer ── */
.site-footer {
    border-top: 0.5px solid var(--gold-dark);
    padding: 3rem 3rem 6rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    view-transition-name: site-footer;
}

.footer-brand {
    font-size: 13px; letter-spacing: 0.4em; margin-bottom: 0.75rem;
}

.footer-tagline {
    font-family: var(--font-body); font-size: 14px; color: var(--gold-muted); font-style: italic;
}

.footer-logo-wrap {
    display: flex; justify-content: center;
}

.footer-logo {
    height: 96px; width: auto;
}

.footer-col-right {
    display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem;
}

.footer-contact-header {
    display: flex; align-items: center; gap: 0.6rem;
}

.footer-contact-label {
    font-size: 12px; letter-spacing: 0.25em; color: var(--gold-muted);
}

.footer-contact-row {
    display: flex; flex-wrap: wrap; justify-content: flex-end;
    gap: 0.4rem 1rem;
}

.footer-contact-link {
    font-family: var(--font-body); font-size: 15px; color: var(--gold-dim);
    transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--gold); }

.footer-social {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    color: var(--gold-dim);
    transition: color 0.2s;
}
.footer-social:hover { color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; }

.footer-copyright {
    font-size: 11px; letter-spacing: 0.15em; color: var(--gold-dark);
}
.footer-legal-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 12px;
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--gold); }

/* ── Page légale ── */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 9rem 2rem 5rem;
}
.legal-content h2 {
    font-family: var(--font-title);
    font-size: 14px; letter-spacing: 0.12em;
    color: var(--gold);
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
    font-family: var(--font-body);
    font-size: 15px; color: var(--gold-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-content a {
    color: var(--gold-dim);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}
.legal-content a:hover { color: var(--gold); }

/* ── Bouton flottant WhatsApp ── */
.whatsapp-float {
    position: fixed;
    right: 1.5rem; bottom: 1.5rem;
    z-index: 200;
    display: flex; align-items: center; gap: 0.5rem;
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    background: #1a6b45;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    view-transition-name: whatsapp-float;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    background: #145637;
}
.whatsapp-float svg {
    width: 20px; height: 20px;
    fill: #ffffff;
    flex-shrink: 0;
}
.whatsapp-float span {
    font-family: var(--font-title);
    font-size: 12px; letter-spacing: 0.08em; font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}
.whatsapp-float svg {
    width: 30px; height: 30px;
    fill: #ffffff;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 9rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 60%, rgba(212,175,55,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 12px; letter-spacing: 0.5em;
    color: var(--gold-muted); margin-bottom: 1.5rem;
    animation: fadeUp 1s ease both;
}

.hero-divider {
    width: 40px; height: 0.5px;
    background: var(--gold); margin: 0 auto 2rem;
    animation: expandW 1.2s ease 0.2s both;
}

.hero-logo {
    width: 120px; height: auto;
    margin: 0 auto 2.5rem;
    animation: fadeUp 1s ease 0.1s both;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 400; letter-spacing: 0.25em;
    color: var(--gold); line-height: 1.35;
    margin-bottom: 1.25rem;
    animation: fadeUp 1s ease 0.3s both;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 17px; color: var(--gold-muted);
    letter-spacing: 0.08em; font-style: italic;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 0.45s both;
}

.hero-cta {
    display: inline-block;
    background: transparent; border-radius: 0;
    border: 0.5px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 13px; letter-spacing: 0.3em;
    padding: 14px 40px;
    cursor: pointer; transition: all 0.3s;
    animation: fadeUp 1s ease 0.6s both;
    text-decoration: none;
    margin-bottom: 15px;
    -webkit-appearance: none; appearance: none;
}
.hero-cta:hover {
    background: var(--gold); color: var(--black);
}

/* ── Section header ── */
.section-header {
    text-align: center; margin-bottom: 3rem;
}
.section-eyebrow {
    font-size: 12px; letter-spacing: 0.45em;
    color: var(--gold-muted); margin-bottom: 1rem;
}
.section-rule {
    width: 30px; height: 0.5px;
    background: var(--gold-dark); margin: 0 auto;
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--black-card);
    border: 0.5px solid var(--gold-dark);
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.service-card:hover {
    background: var(--card-hover);
    border-color: var(--gold);
}

.service-photo {
    position: relative;
    overflow: hidden;
}
.service-photo img {
    display: block;
    width: 100%; height: 190px;
    object-fit: cover;
    filter: grayscale(65%) brightness(0.75);
    transition: filter 0.4s ease, transform 0.4s ease;
}
.service-card:hover .service-photo img {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.05);
}
.service-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.service-photo-title {
    position: absolute; left: 0; right: 0; bottom: 0;
    margin: 0;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-title);
    font-size: 13px; letter-spacing: 0.14em;
    font-weight: 500; line-height: 1.4;
    color: var(--gold-light);
}

.service-body {
    padding: 1.75rem 2rem 2.25rem;
}
.service-rule {
    width: 20px; height: 0.5px;
    background: var(--gold-dark); margin-bottom: 1.25rem;
}
.service-desc {
    font-family: var(--font-body);
    font-size: 15px; color: var(--gold-muted);
    line-height: 1.7; font-style: italic;
}

/* ── Zones ── */
.zones-wrap {
    display: flex; flex-wrap: wrap;
    gap: 10px; justify-content: center;
}
.zone-pill {
    border: 0.5px solid var(--gold-dark);
    padding: 8px 20px;
    font-size: 12px; letter-spacing: 0.25em;
    color: var(--gold-dim);
    transition: all 0.2s;
}
.zone-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes expandW {
    from { width: 0; opacity: 0; }
    to   { width: 40px; opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 768px) {
    .nav-links { display: none; }

    .site-nav { padding: 1.25rem 1.5rem; }
    .site-nav.is-scrolled { padding: 0.85rem 1.5rem; }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col-right { align-items: center; }
    .footer-contact-row { justify-content: center; }
}

@media (max-width: 500px) {
    .site-nav { padding: 1.25rem 1rem; }
    .site-nav.is-scrolled { padding: 0.85rem 1rem; }
}

/* ── Modal de réservation ── */
.reservation-overlay {
    position: fixed; inset: 0; z-index: 300;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem 1.25rem;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
[data-theme="light"] .reservation-overlay { background: rgba(20,16,4,0.55); }

.reservation-overlay.is-open {
    opacity: 1; visibility: visible;
}

.reservation-modal {
    width: 100%; max-width: 640px;
    max-height: 90vh;
    overflow-x: hidden; overflow-y: auto;
    background: var(--black-card);
    border: 0.5px solid var(--gold-dark);
    position: relative;
    transform: translateY(16px);
    transition: transform 0.25s ease;
}
.reservation-overlay.is-open .reservation-modal { transform: translateY(0); }

.reservation-modal-inner {
    padding: 3rem 2.5rem 2.5rem;
}

.reservation-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0.5px solid var(--gold-dark);
    color: var(--gold); font-size: 20px; line-height: 1;
    cursor: pointer; transition: all 0.2s;
    -webkit-appearance: none; appearance: none;
}
.reservation-close:hover { border-color: var(--gold); }

.reservation-title {
    font-family: var(--font-title);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400; letter-spacing: 0.18em; text-align: center;
    color: var(--gold);
}

.reservation-form { display: flex; flex-direction: column; gap: 1.25rem; }

.reservation-row { display: flex; flex-direction: column; gap: 0.4rem; }

.reservation-row label {
    font-family: var(--font-title);
    font-size: 11px; letter-spacing: 0.18em; color: var(--gold-muted);
}

.reservation-row input {
    background: transparent;
    border: none; border-bottom: 0.5px solid var(--gold-dark);
    border-radius: 0;
    padding: 8px 2px;
    font-family: var(--font-body);
    font-size: 15px; color: var(--gold);
    transition: border-color 0.2s;
    -webkit-appearance: none; appearance: none;
}
.reservation-row input:focus {
    outline: none; border-color: var(--gold);
}
.reservation-row input::placeholder { color: var(--gold-dim); opacity: 0.6; }

.reservation-label-icon {
    display: flex; align-items: center; gap: 0.4rem;
}
.reservation-label-icon svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold-dim); }

.reservation-grid-2 {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}

.reservation-honeypot {
    position: absolute; left: -9999px;
    width: 1px; height: 1px; overflow: hidden;
}

/* ── Champ adresse + autocomplétion ── */
.reservation-address { position: relative; }

.reservation-address-input {
    display: flex; align-items: flex-end; gap: 0.6rem;
}
.reservation-address-input input { flex: 1; min-width: 0; }

.reservation-geoloc {
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0.5px solid var(--gold-dark); border-radius: 999px;
    color: var(--gold-dim); cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none; appearance: none;
}
.reservation-geoloc svg { width: 16px; height: 16px; }
.reservation-geoloc:hover { border-color: var(--gold); color: var(--gold); }
.reservation-geoloc.is-loading { color: var(--gold); animation: reservationSpin 0.8s linear infinite; }
.reservation-geoloc:disabled { cursor: default; }

@keyframes reservationSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.reservation-suggestions {
    position: absolute; z-index: 10;
    top: 100%; left: 0; right: 0;
    margin-top: 4px;
    list-style: none;
    background: var(--black-card);
    border: 0.5px solid var(--gold-dark);
    max-height: 220px; overflow-y: auto;
}

.reservation-suggestion {
    display: block; width: 100%;
    background: transparent; border: none; border-radius: 0;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 14px; color: var(--gold-muted); text-align: left;
    cursor: pointer;
    -webkit-appearance: none; appearance: none;
}
.reservation-suggestion:hover,
.reservation-suggestion:focus { background: var(--card-hover); color: var(--gold); }

/* ── Sélecteur date & créneau ── */
.reservation-date-header {
    display: flex; align-items: center; gap: 0.7rem;
}

.reservation-date-strip {
    flex: 1; min-width: 0;
    display: flex; gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scrollbar-width: thin;
}

.reservation-calendar-toggle {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0.5px solid var(--gold-dark); border-radius: 0;
    color: var(--gold-dim); cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none; appearance: none;
}
.reservation-calendar-toggle svg { width: 18px; height: 18px; }
.reservation-calendar-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ── Panneau calendrier ── */
.reservation-calendar-panel {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    background: var(--black-card);
    padding: 3rem 2.5rem 2.5rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.reservation-calendar-panel.is-open { opacity: 1; visibility: visible; }

.reservation-calendar-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
}

.reservation-calendar-nav {
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0.5px solid var(--gold-dark); border-radius: 0;
    color: var(--gold); cursor: pointer;
    transition: all 0.2s;
    -webkit-appearance: none; appearance: none;
}
.reservation-calendar-nav svg { width: 16px; height: 16px; }
.reservation-calendar-nav:hover:not(:disabled) { border-color: var(--gold); background: var(--card-hover); }
.reservation-calendar-nav:disabled { opacity: 0.25; cursor: default; }

.reservation-calendar-panel-title {
    font-family: var(--font-title);
    font-size: 15px; letter-spacing: 0.14em; color: var(--gold);
}

.reservation-calendar-weekdays {
    display: grid; grid-template-columns: repeat(7, minmax(0, 1fr));
    margin-bottom: 0.6rem;
}
.reservation-calendar-weekdays span {
    text-align: center;
    font-family: var(--font-title);
    font-size: 11px; letter-spacing: 0.1em; color: var(--gold-muted);
}

.reservation-calendar-grid {
    display: grid; grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
}

.reservation-calendar-day {
    aspect-ratio: 1;
    min-width: 0;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0.5px solid var(--gold-dark); border-radius: 0;
    font-family: var(--font-body);
    font-size: 14px; color: var(--gold-muted);
    cursor: pointer;
    -webkit-appearance: none; appearance: none;
    transition: all 0.2s;
}
.reservation-calendar-day.is-empty { border-color: transparent; cursor: default; }
.reservation-calendar-day:hover:not(:disabled):not(.is-empty) { border-color: var(--gold); color: var(--gold); }
.reservation-calendar-day.is-today { color: var(--gold); font-weight: 600; }
.reservation-calendar-day.is-selected { border-color: var(--gold); background: var(--card-hover); color: var(--gold); font-weight: 600; }
.reservation-calendar-day.is-disabled,
.reservation-calendar-day:disabled { opacity: 0.25; cursor: default; }

.reservation-calendar-cancel {
    align-self: center;
    margin-top: 1.5rem;
    background: transparent; border: none;
    font-family: var(--font-title);
    font-size: 12px; letter-spacing: 0.2em; color: var(--gold-dim);
    cursor: pointer;
    -webkit-appearance: none; appearance: none;
    transition: color 0.2s;
}
.reservation-calendar-cancel:hover { color: var(--gold); }

.reservation-date-card {
    flex: 0 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    width: 58px;
    background: transparent; border: 0.5px solid var(--gold-dark); border-radius: 0;
    padding: 10px 4px;
    cursor: pointer;
    -webkit-appearance: none; appearance: none;
    transition: all 0.2s;
}
.reservation-date-card:hover { border-color: var(--gold); }
.reservation-date-card.is-selected { border-color: var(--gold); background: var(--card-hover); }

.reservation-date-dow {
    font-family: var(--font-title);
    font-size: 10px; letter-spacing: 0.1em; color: var(--gold-muted);
}
.reservation-date-dom {
    font-family: var(--font-title);
    font-size: 17px; color: var(--gold);
    transition: font-size 0.2s ease;
}
.reservation-date-card.is-selected .reservation-date-dom {
    font-size: 21px; font-weight: 600;
}
.reservation-date-mon {
    font-family: var(--font-title);
    font-size: 9px; letter-spacing: 0.08em; color: var(--gold-dim);
}

.reservation-time-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.5rem;
}

.reservation-time-chip {
    min-width: 0;
    background: transparent; border: 0.5px solid var(--gold-dark); border-radius: 0;
    padding: 8px 4px;
    font-family: var(--font-body);
    font-size: 13px; color: var(--gold-muted);
    cursor: pointer;
    -webkit-appearance: none; appearance: none;
    transition: all 0.2s;
}
.reservation-time-chip:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.reservation-time-chip.is-selected { border-color: var(--gold); background: var(--card-hover); color: var(--gold); }
.reservation-time-chip.is-disabled,
.reservation-time-chip:disabled {
    opacity: 0.3; cursor: default;
}

.reservation-periods {
    display: flex; flex-direction: column; gap: 0.6rem;
    margin-top: 0.9rem;
}

.reservation-period {
    border: 0.5px solid var(--gold-dark);
}

.reservation-period-toggle {
    width: 100%;
    display: flex; align-items: center; gap: 0.6rem;
    background: transparent; border: none; border-radius: 0;
    padding: 10px 14px;
    cursor: pointer; text-align: left;
    -webkit-appearance: none; appearance: none;
    transition: background-color 0.2s;
}
.reservation-period-toggle:hover { background: var(--card-hover); }

.reservation-period-icon {
    display: flex; flex-shrink: 0;
    width: 18px; height: 18px;
    color: var(--gold-dim);
}
.reservation-period-icon svg { width: 100%; height: 100%; }
.reservation-period.is-open .reservation-period-icon { color: var(--gold); }

.reservation-period-label {
    font-family: var(--font-title);
    font-size: 13px; letter-spacing: 0.12em; color: var(--gold);
}

.reservation-period-range {
    flex: 1;
    font-family: var(--font-body);
    font-size: 12px; font-style: italic; color: var(--gold-dim);
}

.reservation-period-chevron {
    flex-shrink: 0;
    width: 16px; height: 16px;
    color: var(--gold-dim);
    transition: transform 0.25s ease;
}
.reservation-period.is-open .reservation-period-chevron { transform: rotate(180deg); color: var(--gold); }

.reservation-period-slots {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.reservation-period.is-open .reservation-period-slots { max-height: 320px; overflow-y: auto; }
.reservation-period-slots .reservation-time-grid {
    padding: 4px 14px 14px;
}

.reservation-datetime-summary {
    margin-top: 0.9rem;
    font-family: var(--font-body); font-size: 13px;
    color: var(--gold-dim);
}
.reservation-datetime-summary.is-filled { color: var(--gold); }

/* ── Compteurs passagers / bagages ── */
.reservation-stepper {
    display: flex; align-items: center; justify-content: space-between;
    border: 0.5px solid var(--gold-dark);
    padding: 6px 10px;
}

.reservation-stepper-btn {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: 0.5px solid var(--gold-dark); border-radius: 999px;
    color: var(--gold); font-size: 16px; line-height: 1;
    cursor: pointer;
    -webkit-appearance: none; appearance: none;
    transition: all 0.2s;
}
.reservation-stepper-btn:hover:not(:disabled) { border-color: var(--gold); background: var(--card-hover); }
.reservation-stepper-btn:disabled { opacity: 0.3; cursor: default; }

.reservation-stepper-value {
    font-family: var(--font-title);
    font-size: 16px; color: var(--gold);
    min-width: 2ch; text-align: center;
}

.reservation-submit {
    width: 100%; margin: 0.5rem 0 0; text-align: center;
}
.reservation-submit:disabled { opacity: 0.6; cursor: default; }
.reservation-submit:disabled:hover { background: transparent; color: var(--gold); }

.reservation-feedback {
    min-height: 1.2em;
    font-family: var(--font-body); font-size: 14px; font-style: italic;
    text-align: center;
}
.reservation-feedback.is-success { color: var(--gold); }
.reservation-feedback.is-error { color: #c0554a; }

.reservation-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 2.25rem 0 1.5rem;
}
.reservation-divider::before, .reservation-divider::after {
    content: ''; flex: 1; height: 0.5px; background: var(--gold-dark);
}
.reservation-divider span {
    font-size: 11px; letter-spacing: 0.15em; color: var(--gold-muted);
    white-space: nowrap;
}

.reservation-options {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem;
}

.reservation-option {
    display: flex; flex-direction: column; gap: 0.3rem;
    border: 0.5px solid var(--gold-dark);
    padding: 12px 16px;
    transition: all 0.2s;
}
.reservation-option:hover { border-color: var(--gold); background: var(--card-hover); }

.reservation-option-label {
    display: flex; align-items: center; gap: 0.45rem;
    font-family: var(--font-title);
    font-size: 11px; letter-spacing: 0.2em; color: var(--gold);
}
.reservation-option-label svg {
    width: 14px; height: 14px; flex-shrink: 0;
    color: var(--gold-dim);
}
.reservation-option-value {
    font-family: var(--font-body);
    font-size: 13px; color: var(--gold-muted); font-style: italic;
}

.reservation-option-whatsapp {
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.reservation-option-icon {
    width: 26px; height: 26px;
    fill: var(--gold);
}

@media (max-width: 640px) {
    .reservation-modal-inner { padding: 2.5rem 1.5rem 2rem; }
    .reservation-options { grid-template-columns: 1fr; }
    .reservation-time-grid { grid-template-columns: repeat(3, 1fr); }
    .reservation-date-card { width: 52px; }
}
