/* =========================================================================
   Kay Francklin Inn — feuille de style principale
   Palette : or/doré + accents magenta (bougainvillier), fonds clairs.
   Mobile-first, légère (faible bande passante / Starlink).
   ========================================================================= */

:root {
  --or: #c9a227;
  --or-fonce: #a67c00;
  --or-clair: #f0e6c2;
  --magenta: #c2185b;
  --magenta-fonce: #8e1248;
  --fond: #fffdf8;
  --fond-alt: #faf5e9;
  --carte: #ffffff;
  --texte: #2b2724;
  --texte-doux: #6b635a;
  --bordure: #ece3d0;
  --ombre: 0 2px 10px rgba(80, 60, 10, 0.08);
  --rayon: 12px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --largeur: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--texte);
  background: var(--fond);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--texte);
}

a { color: var(--magenta); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.conteneur {
  width: 100%;
  max-width: var(--largeur);
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- En-tête / navigation ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: saturate(180%) blur(6px);
  border-bottom: 1px solid var(--bordure);
}
.barre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 1rem;
  max-width: var(--largeur);
  margin: 0 auto;
}
.marque { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.marque img { width: 44px; height: 44px; border-radius: 50%; }
.marque .nom, .marque .sous { white-space: nowrap; }
.marque .nom {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--or-fonce);
  line-height: 1.1;
}
.marque .sous { font-size: 0.7rem; color: var(--texte-doux); letter-spacing: 0.04em; }

.nav-liens { display: flex; align-items: center; flex-wrap: nowrap; gap: 0.85rem; }
.nav-liens a { color: var(--texte); font-size: 0.92rem; white-space: nowrap; }
.nav-liens a:hover { color: var(--magenta); text-decoration: none; }

/* --- Menu « Espace pro » (back-office, filtré par rôle) ------------------ */
.nav-pro { position: relative; }
.nav-pro-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--or-clair); color: var(--or-fonce);
  border: 1px solid var(--or); border-radius: 999px;
  padding: 0.35rem 0.8rem; font-size: 0.88rem; font-family: inherit;
  font-weight: 600; cursor: pointer; white-space: nowrap;
}
.nav-pro-btn:hover { background: var(--or); color: #fff; }
.nav-pro-fleche { font-size: 0.7rem; transition: transform 0.15s; }
.nav-pro-fleche.ouvert { transform: rotate(180deg); }
.nav-pro-menu {
  position: absolute; top: calc(100% + 0.4rem); right: 0;
  min-width: 230px; background: #fff;
  border: 1px solid var(--bordure); border-radius: 12px;
  box-shadow: var(--ombre); padding: 0.4rem; z-index: 60;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.nav-pro-menu a, .nav-pro-logout button {
  display: block; width: 100%; text-align: left;
  padding: 0.5rem 0.7rem; border-radius: 8px; font-size: 0.9rem;
  color: var(--texte); background: none; border: 0; font-family: inherit; cursor: pointer;
}
.nav-pro-menu a:hover, .nav-pro-logout button:hover {
  background: var(--or-clair); color: var(--or-fonce); text-decoration: none;
}
.nav-pro-tete {
  padding: 0.4rem 0.7rem; font-size: 0.75rem; color: var(--texte-doux);
  border-bottom: 1px solid var(--bordure); margin-bottom: 0.2rem;
}
.nav-pro-logout { margin: 0.2rem 0 0; border-top: 1px solid var(--bordure); padding-top: 0.2rem; }
.nav-pro-logout button { color: var(--magenta); }
@media (max-width: 1024px) {
  .nav-pro { width: 100%; }
  .nav-pro-menu {
    position: static; min-width: 0; box-shadow: none;
    border: 0; border-left: 2px solid var(--or-clair); border-radius: 0;
    padding: 0.2rem 0 0.2rem 0.6rem; margin-top: 0.3rem;
  }
}

.menu-burger { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--or-fonce); cursor: pointer; }

.langues { display: flex; gap: 0.35rem; align-items: center; }
.langues button {
  border: 1px solid var(--bordure);
  background: var(--carte);
  color: var(--texte-doux);
  border-radius: 6px;
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  cursor: pointer;
  text-transform: uppercase;
}
.langues button.actif { background: var(--or); color: #fff; border-color: var(--or); }

/* --- Boutons ------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.05s ease, box-shadow 0.2s ease;
}
.btn:hover { text-decoration: none; box-shadow: var(--ombre); }
.btn:active { transform: translateY(1px); }
.btn-or { background: var(--or); color: #fff; }
.btn-or:hover { background: var(--or-fonce); color: #fff; }
.btn-magenta { background: var(--magenta); color: #fff; }
.btn-magenta:hover { background: var(--magenta-fonce); color: #fff; }
.btn-ligne { background: transparent; border-color: var(--or); color: var(--or-fonce); }
.btn-ligne:hover { background: var(--or-clair); }

/* --- Héros --------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #fff8e8 0%, #fdeef4 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.hero img.logo-hero { width: 110px; height: 110px; margin: 0 auto 1rem; border-radius: 50%; box-shadow: var(--ombre); }
.hero h1 { font-size: 2.1rem; margin: 0.3rem 0; }
.hero .accroche { color: var(--texte-doux); max-width: 620px; margin: 0.6rem auto 1.4rem; }
.hero .actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* --- Sections ------------------------------------------------------------ */
.section { padding: 2.6rem 0; }
.section.alt { background: var(--fond-alt); }
.section h2 { font-size: 1.7rem; text-align: center; margin-bottom: 0.4rem; }
.section .intro { text-align: center; color: var(--texte-doux); max-width: 640px; margin: 0 auto 1.8rem; }
.titre-or { color: var(--or-fonce); }

/* --- Grilles & cartes ---------------------------------------------------- */
.grille { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grille.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) {
  .grille.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grille.cols-2 { grid-template-columns: repeat(2, 1fr); }
}

.carte {
  background: var(--carte);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  overflow: hidden;
  box-shadow: var(--ombre);
  display: flex;
  flex-direction: column;
}
.carte .vignette { aspect-ratio: 4 / 3; background: var(--or-clair); display: flex; align-items: center; justify-content: center; }
.carte .vignette img { width: 100%; height: 100%; object-fit: cover; }
.carte .vignette .placeholder { font-family: var(--serif); color: var(--or-fonce); font-size: 1.1rem; opacity: 0.6; }
.carte .corps { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.carte h3 { font-size: 1.2rem; margin: 0; }
.carte .desc { color: var(--texte-doux); font-size: 0.92rem; flex: 1; }

.badge { display: inline-block; font-size: 0.72rem; padding: 0.15rem 0.55rem; border-radius: 999px; background: var(--or-clair); color: var(--or-fonce); font-weight: 600; }
.badge.dispo { background: #e3f5e8; color: #1f7a3d; }
.badge.indispo { background: #fbe4e4; color: #a32626; }
.badge.warn { background: #fdeccb; color: #9a6b00; }

/* --- Prix bi-devise ------------------------------------------------------ */
.prix { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.3rem; }
.prix .usd { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--magenta); }
.prix .htg { color: var(--texte-doux); font-size: 0.95rem; }
.prix .unite { font-size: 0.8rem; color: var(--texte-doux); }

/* --- Tableau tarifs ------------------------------------------------------ */
.table-tarifs { width: 100%; border-collapse: collapse; background: var(--carte); border-radius: var(--rayon); overflow: hidden; box-shadow: var(--ombre); }
.table-tarifs th, .table-tarifs td { padding: 0.7rem 0.9rem; text-align: left; border-bottom: 1px solid var(--bordure); font-size: 0.92rem; }
.table-tarifs th { background: var(--or-clair); color: var(--or-fonce); font-family: var(--serif); }
.table-tarifs tr:last-child td { border-bottom: 0; }

/* --- Pied de page -------------------------------------------------------- */
.site-footer { background: #241f1a; color: #cfc7b8; padding: 3.2rem 0 1.4rem; margin-top: 3rem; }
.site-footer a { color: #d9cfb8; transition: color .18s ease; }
.site-footer a:hover { color: var(--or); text-decoration: none; }
.site-footer h4 {
  color: #fff; margin: 0 0 1rem; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; font-family: var(--sans); font-weight: 700;
}

.footer-grille { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grille { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .footer-grille { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2.6rem; } }

/* Colonne marque */
.footer-logo { display: inline-flex; align-items: center; gap: .7rem; }
.footer-logo img { border-radius: 10px; }
.footer-nom { font-family: var(--serif); font-size: 1.3rem; color: #fff; font-weight: 700; }
.footer-logo:hover .footer-nom { color: var(--or); }
.footer-slogan { color: #f0e6c2; font-style: italic; margin: .9rem 0 .3rem; }
.footer-tagline { color: #a59c8c; font-size: .92rem; margin: .3rem 0 1.2rem; max-width: 34ch; }
.footer-social { display: flex; gap: .55rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-size: 1.05rem;
  background: rgba(201, 162, 39, .12); color: #f0e6c2;
  border: 1px solid rgba(201, 162, 39, .25); transition: all .18s ease;
}
.footer-social a:hover { background: var(--or); color: #241f1a; border-color: var(--or); transform: translateY(-2px); }

/* Colonnes Coordonnées / Navigation */
.footer-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-liste li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; color: #b8b0a1; }
.footer-liste li i { color: var(--or); font-size: .95rem; margin-top: .15rem; flex: none; }
.footer-nav li { gap: 0; }
.footer-nav a { position: relative; }
.footer-nav a:hover { padding-left: .25rem; }

/* Bloc CTA réserver */
.footer-cta p { color: #a59c8c; font-size: .92rem; margin: 0 0 1rem; }
.footer-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--or); color: #241f1a !important; font-weight: 700;
  padding: .7rem 1.3rem; border-radius: 999px; font-size: .95rem;
  box-shadow: 0 8px 22px rgba(201, 162, 39, .28); transition: all .2s ease;
}
.footer-btn:hover { background: #e0b733; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201, 162, 39, .4); }

/* Barre inférieure : copyright + crédit */
.footer-bas {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center;
  justify-content: space-between; margin-top: 2.6rem; padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-copy { margin: 0; color: #8c8478; font-size: .82rem; }
.footer-credit { font-size: .82rem; color: #8c8478 !important; display: inline-flex; align-items: center; gap: .35rem; }
.footer-credit strong { color: #e8dcba; font-weight: 600; }
.footer-credit:hover { color: #e8dcba !important; }
.footer-credit:hover strong { color: var(--or); }

/* --- WhatsApp flottant --------------------------------------------------- */
.wa-flottant {
  position: fixed;
  right: 1rem; bottom: 1rem;
  background: #25d366; color: #fff;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  font-size: 1.6rem; z-index: 60;
}
.wa-flottant:hover { text-decoration: none; }

/* --- Barre d'action collante (mobile) : conversion réservation ----------- */
.cta-mobile { display: none; }
@media (max-width: 760px) {
  .cta-mobile {
    display: flex; align-items: center; gap: .55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 54;
    padding: .5rem .7rem calc(.5rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 253, 248, .97); backdrop-filter: saturate(160%) blur(8px);
    border-top: 1px solid var(--bordure); box-shadow: 0 -6px 22px rgba(0, 0, 0, .1);
  }
  .cta-mobile-lien {
    display: flex; flex-direction: column; align-items: center; gap: 1px;
    font-size: .64rem; color: var(--texte-doux); text-decoration: none; flex: 0 0 auto; min-width: 44px;
  }
  .cta-mobile-lien i { font-size: 1.2rem; color: var(--or-fonce); }
  .cta-mobile-resa {
    flex: 1; text-align: center; background: var(--magenta); color: #fff; font-weight: 700;
    padding: .72rem .8rem; border-radius: 12px; text-decoration: none; font-size: .95rem;
    box-shadow: 0 4px 14px rgba(176, 32, 110, .28);
  }
  .cta-mobile-resa:hover { text-decoration: none; }
  .wa-flottant { bottom: 78px; }            /* remonte au-dessus de la barre */
  body { padding-bottom: 64px; }            /* le contenu/footer ne passe pas sous la barre */
}

/* --- Messages ------------------------------------------------------------ */
.messages { list-style: none; padding: 0; margin: 1rem auto; max-width: var(--largeur); }
.messages li { padding: 0.7rem 1rem; border-radius: 8px; margin: 0.4rem 1rem; background: var(--or-clair); }

/* --- Utilitaires --------------------------------------------------------- */
.centre { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* --- Réservation : formulaires ------------------------------------------- */
[x-cloak] { display: none !important; }

.bloc-recherche {
  background: var(--carte);
  border: 1px solid var(--bordure);
  border-radius: var(--rayon);
  box-shadow: var(--ombre);
  padding: 1.2rem;
}
.recherche-grille {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 760px) {
  .recherche-grille { grid-template-columns: repeat(2, 1fr); }
  .recherche-grille .formule { grid-column: 1 / -1; }
}
.formule { border: 0; padding: 0; margin: 0; display: flex; gap: .6rem; flex-wrap: wrap; }
.formule legend { font-weight: 600; color: var(--texte-doux); padding: 0; margin-bottom: .3rem; width: 100%; }
.radio-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem; border: 1px solid var(--bordure);
  border-radius: 999px; cursor: pointer; font-size: .92rem; background: var(--fond);
}
.radio-pill.actif { background: var(--or-clair); border-color: var(--or); color: var(--or-fonce); font-weight: 600; }

.champ { display: flex; flex-direction: column; gap: .3rem; }
.champ label { font-size: .85rem; color: var(--texte-doux); font-weight: 600; }
.champ input, .champ select, .champ textarea, .form-client input, .form-client textarea {
  padding: .6rem .7rem; border: 1px solid var(--bordure); border-radius: 8px;
  font-size: 1rem; font-family: inherit; background: #fff; width: 100%;
}
.champ input:focus, .champ select:focus, .form-client input:focus, .form-client textarea:focus {
  outline: 2px solid var(--or); border-color: var(--or);
}
.champ-submit { justify-content: end; }
.form-client .champ { margin-bottom: .9rem; }
.bloc-titre { font-size: 1.05rem; margin: 1.2rem 0 .6rem; color: var(--or-fonce); }
.bloc-titre:first-child { margin-top: 0; }
.aide { font-size: .8rem; color: var(--texte-doux); }
.form-erreurs, .errorlist {
  color: #a32626; font-size: .85rem; margin: .2rem 0; padding-left: 1rem;
}
.errorlist { list-style: none; padding: 0; }
.recap { position: sticky; top: 80px; }

/* --- Panier (menu / restauration) ---------------------------------------- */
.lien-panier { position: relative; font-size: 1.3rem; line-height: 1; color: var(--or-fonce); text-decoration: none; }
.lien-panier:hover { text-decoration: none; }
.panier-badge {
  position: absolute; top: -8px; right: -12px;
  background: var(--magenta); color: #fff;
  font-size: .68rem; font-weight: 700;
  min-width: 18px; height: 18px; line-height: 18px; text-align: center;
  border-radius: 999px; padding: 0 4px;
}
.form-ajout, .form-qte { display: flex; gap: .4rem; align-items: center; margin-top: .5rem; }
.qte { width: 64px; padding: .45rem .5rem; border: 1px solid var(--bordure); border-radius: 8px; font-size: 1rem; }
.panier-table td, .panier-table th { vertical-align: middle; }
.panier-table small { color: var(--texte-doux); }

/* --- Suivi de commande (client) : stepper -------------------------------- */
.suivi-tete { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.suivi-titre { font-size: 1.5rem; margin: .4rem 0 0; }
.suivi-direct {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--or-fonce);
  background: var(--or-clair); border-radius: 999px; padding: .3rem .7rem; white-space: nowrap;
}
.suivi-direct .point { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); animation: kfi-pulse 1.8s infinite; }

.suivi-stepper { display: flex; margin: 1.8rem 0 .4rem; }
.suivi-etape { flex: 1; text-align: center; position: relative; color: var(--texte-doux); font-size: .82rem; }
.suivi-etape::before {
  content: ''; position: absolute; top: 18px; left: -50%; width: 100%; height: 3px;
  background: var(--bordure); z-index: 0; transition: background .4s ease;
}
.suivi-etape:first-child::before { display: none; }
.suivi-etape .pastille {
  position: relative; z-index: 1;
  width: 38px; height: 38px; margin: 0 auto .5rem; border-radius: 50%;
  background: var(--fond-alt); border: 2px solid var(--bordure); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.suivi-etape .pastille i { opacity: 0; transition: opacity .35s ease; font-size: 1.1rem; }
.suivi-etape.atteint { color: var(--texte); font-weight: 600; }
.suivi-etape.atteint .pastille { background: var(--or); border-color: var(--or); }
.suivi-etape.atteint .pastille i { opacity: 1; }
.suivi-etape.atteint::before { background: var(--or); }
.suivi-etape.courant .pastille {
  background: var(--magenta); border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(194, 24, 91, .15); animation: kfi-pulse 1.9s infinite;
}
.suivi-stepper.annulee .suivi-etape .pastille { background: #fbe4e4; border-color: #e0a0a0; }
.suivi-stepper.annulee .suivi-etape::before { background: #f0d0d0; }
.suivi-annulee { text-align: center; color: #a32626; font-weight: 600; margin-top: 1rem; }
@keyframes kfi-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(194, 24, 91, .15); }
  50% { box-shadow: 0 0 0 9px rgba(194, 24, 91, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .suivi-direct .point, .suivi-etape.courant .pastille { animation: none; }
}

/* Éléments propres au tiroir mobile : masqués sur desktop. */
.nav-overlay, .nav-drawer-tete, .nav-fermer { display: none; }

/* --- Navigation mobile : tiroir latéral premium (drawer) ----------------- */
@media (max-width: 1024px) {
  .menu-burger { display: block; position: relative; z-index: 60; }
  .nav-overlay {
    display: block; position: fixed; inset: 0; z-index: 55;
    background: rgba(28, 24, 19, .5); backdrop-filter: blur(2px);
  }
  .nav-liens {
    position: fixed; top: 0; right: 0; z-index: 58;
    height: 100dvh; width: min(86vw, 340px);
    transform: translateX(100%); transition: transform .26s cubic-bezier(.4, 0, .2, 1);
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--fond); padding: 0 1.1rem 1.4rem;
    overflow-y: auto; box-shadow: -18px 0 50px rgba(0, 0, 0, .22);
    border-left: 3px solid var(--or);
  }
  .nav-liens.ouvert { transform: none; }
  .nav-drawer-tete {
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; background: var(--fond); z-index: 2;
    padding: .9rem 0 .7rem; margin-bottom: .3rem; border-bottom: 1px solid var(--bordure);
  }
  .nav-drawer-marque { font-family: var(--serif); font-weight: 700; color: var(--or-fonce); font-size: 1.05rem; }
  .nav-fermer { display: inline-flex; background: none; border: 0; color: var(--texte); font-size: 1.4rem; cursor: pointer; line-height: 1; padding: .2rem; }
  .nav-liens > a {
    width: 100%; padding: .85rem .25rem; font-size: 1.05rem; font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, .05); display: flex; align-items: center; gap: .55rem;
  }
  .nav-liens .nav-compte { color: var(--or-fonce); }
  .nav-liens .btn { margin-top: .8rem; text-align: center; justify-content: center; }
  .langues { margin-top: 1rem; }
  .lien-panier { padding: .6rem .25rem; }
  .nav-pro { width: 100%; }
  .nav-pro-menu { position: static; box-shadow: none; border: 0; padding-left: .6rem; }
}
@media (max-width: 1024px) {
  html.nav-ouvert { overflow: hidden; }   /* verrou de défilement quand le tiroir est ouvert */
}
@media (max-width: 760px) {
  .hero h1 { font-size: 1.7rem; }
}

/* =========================================================================
   COUCHE PREMIUM — typographie raffinée, profondeur, micro-interactions.
   Appliquée à TOUT le site via les classes partagées (placée en dernier
   pour primer sur les règles de base). Respecte la faible bande passante :
   uniquement CSS (dégradés, ombres, transitions) — aucune image lourde.
   ========================================================================= */
:root {
  --serif-affiche: "Playfair Display", Georgia, "Times New Roman", serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --ombre-douce: 0 1px 2px rgba(80, 60, 10, .06), 0 8px 24px rgba(80, 60, 10, .08);
  --ombre-forte: 0 18px 48px rgba(80, 60, 10, .16);
  --degrade-or: linear-gradient(135deg, #d8b53e 0%, var(--or) 45%, var(--or-fonce) 100%);
  --degrade-magenta: linear-gradient(135deg, #d8316f 0%, var(--magenta) 50%, var(--magenta-fonce) 100%);
}

h1, h2, h3, h4 { font-family: var(--serif-affiche); letter-spacing: -0.01em; }
h2 { letter-spacing: 0; }

/* --- Révélation au défilement ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1); }
.reveal.vu { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* --- En-têtes de section : sur-titre + filet doré ----------------------- */
.eyebrow {
  display: inline-block; font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--or-fonce); margin-bottom: .5rem;
}
.divider-or { width: 66px; height: 3px; margin: .7rem auto 1.5rem; border-radius: 3px; background: linear-gradient(90deg, var(--or), var(--magenta)); }
.divider-or.gauche { margin-left: 0; }
.section h2 { font-size: 1.9rem; }
.section .intro { font-size: 1.02rem; }

/* --- Boutons premium ---------------------------------------------------- */
.btn {
  letter-spacing: .015em; position: relative; overflow: hidden;
  box-shadow: 0 1px 2px rgba(80, 60, 10, .08);
  transition: transform .18s ease, box-shadow .28s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(80, 60, 10, .20); }
.btn-or { background: var(--degrade-or); border-color: transparent; }
.btn-or:hover { background: var(--degrade-or); filter: brightness(1.05); color: #fff; }
.btn-magenta { background: var(--degrade-magenta); border-color: transparent; }
.btn-magenta:hover { background: var(--degrade-magenta); filter: brightness(1.06); color: #fff; }
.btn-ligne { border-color: var(--or); color: var(--or-fonce); background: rgba(255, 255, 255, .6); }
.btn-ligne:hover { background: var(--or-clair); box-shadow: 0 8px 22px rgba(201, 162, 39, .22); }

/* --- Cartes premium ----------------------------------------------------- */
.carte {
  border-radius: 16px; box-shadow: var(--ombre-douce);
  transition: transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s ease;
}
.carte:hover { transform: translateY(-5px); box-shadow: var(--ombre-forte); }
.carte .vignette { overflow: hidden; }
.carte .vignette img { transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.carte:hover .vignette img { transform: scale(1.07); }
.carte h3 { font-family: var(--serif-affiche); }

/* --- Marque (navbar) ---------------------------------------------------- */
.marque .nom { font-family: var(--serif-affiche); letter-spacing: .01em; }
.site-header { box-shadow: 0 1px 0 rgba(201, 162, 39, .18); }

/* =========================================================================
   HERO — diaporama en fondu enchaîné (cross-fade) ultra premium.
   3 « scènes » en dégradés profonds + effet Ken Burns + voile pour le texte.
   Pour utiliser de vraies photos : remplacer le `background` de .hero-slide.sN
   par une image WebP optimisée placée dans img/hero (référence lazy).
   ========================================================================= */
.hero-slideshow {
  position: relative; overflow: hidden;
  min-height: clamp(520px, 86vh, 820px);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding: 4.5rem 0;
  background: #1a140d;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  /* Hors écran : transparent, zoomé, décalé à gauche et fortement FLOU. La sortie
     d'une scène glisse donc vers la gauche en se dissolvant dans un flou marqué. */
  opacity: 0;
  transform: translateX(-5%) scale(1.10);
  filter: blur(22px);
  transition: opacity 1.3s cubic-bezier(0.37, 0, 0.27, 1),
              filter 1.3s cubic-bezier(0.37, 0, 0.27, 1),
              transform 1.3s cubic-bezier(0.37, 0, 0.27, 1);
  will-change: opacity, filter, transform;
}
/* Alternance du sens : les scènes paires entrent/sortent par la DROITE
   (les impaires par la gauche), pour casser la monotonie du glissement. */
.hero-slide:nth-child(even) { transform: translateX(5%) scale(1.10); }
.hero-slide.actif { opacity: 1; filter: blur(0); transform: translateX(0) scale(1.12); }
/* Vidéo de fond (muette, en boucle), remplit la scène ; le poster (background)
   reste visible pendant le fondu et le chargement (lazy). */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-slide.s1 {
  background:
    radial-gradient(120% 90% at 25% 15%, rgba(216, 181, 62, .55) 0%, transparent 55%),
    linear-gradient(135deg, #1c1308 0%, #6b4a14 48%, #c9a227 130%);
}
.hero-slide.s2 {
  background:
    radial-gradient(120% 90% at 78% 20%, rgba(216, 49, 111, .5) 0%, transparent 55%),
    linear-gradient(135deg, #1a0a13 0%, #6e1539 50%, #c2185b 130%);
}
.hero-slide.s3 {
  background:
    radial-gradient(120% 90% at 50% 12%, rgba(216, 181, 62, .42) 0%, transparent 55%),
    linear-gradient(160deg, #100d16 0%, #2a2338 45%, #5e4c26 130%);
}
/* Entrée cinématique : mise au point (flou -> net) + fondu rapide, puis dérive
   lente (Ken Burns) tant que la scène est active. Donne un diaporama « vivant ». */
@media (prefers-reduced-motion: no-preference) {
  .hero-slide.actif { animation: heroEnter 5.5s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  /* Scènes paires : même chorégraphie, sens inversé (arrivée par la droite). */
  .hero-slide:nth-child(even).actif { animation-name: heroEnterAlt; }
}
/* Impaires : arrivée par la droite (+7%) -> pose -> dérive à gauche. */
@keyframes heroEnter {
  0%   { opacity: 0; filter: blur(24px); transform: translate3d(7%, 0, 0) scale(1.16); }
  20%  { opacity: 1; filter: blur(0);    transform: translate3d(0, 0, 0) scale(1.10); }
  100% { opacity: 1; filter: blur(0);    transform: translate3d(-2.5%, -1%, 0) scale(1.18); }
}
/* Paires : arrivée par la gauche (-7%) -> pose -> dérive à droite (miroir). */
@keyframes heroEnterAlt {
  0%   { opacity: 0; filter: blur(24px); transform: translate3d(-7%, 0, 0) scale(1.16); }
  20%  { opacity: 1; filter: blur(0);    transform: translate3d(0, 0, 0) scale(1.10); }
  100% { opacity: 1; filter: blur(0);    transform: translate3d(2.5%, -1%, 0) scale(1.18); }
}
.hero-voile {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 120% at 50% 30%, transparent 40%, rgba(15, 10, 6, .55) 100%),
    linear-gradient(to bottom, rgba(15, 10, 6, .35) 0%, rgba(15, 10, 6, .15) 45%, rgba(15, 10, 6, .65) 100%);
}
.hero-contenu { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 1rem; }
.hero-slideshow .logo-hero {
  width: 96px; height: 96px; margin: 0 auto 1.1rem; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .65);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}
.hero-eyebrow {
  display: inline-block; font-family: var(--sans); font-size: .76rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--or-clair);
  margin-bottom: .7rem; text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}
.hero-slideshow h1 {
  color: #fff; font-size: clamp(2.3rem, 5.5vw, 4rem); line-height: 1.05; margin: .2rem 0 .5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}
.hero-slideshow .accroche {
  color: rgba(255, 255, 255, .92); font-size: 1.12rem; max-width: 620px;
  margin: .6rem auto 1.7rem; text-shadow: 0 1px 12px rgba(0, 0, 0, .4);
}
.hero-slideshow .actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.hero-puces { position: absolute; z-index: 2; left: 0; right: 0; bottom: 1.4rem; display: flex; gap: .5rem; justify-content: center; }
.hero-puce { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .4); transition: background 1s ease, width 1s ease; }
.hero-puce.actif { background: var(--or-clair); width: 26px; border-radius: 6px; }
.hero-scroll {
  position: absolute; z-index: 2; bottom: 2.6rem; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, .8); font-size: 1.4rem; animation: flotter 2.2s ease-in-out infinite;
}
@keyframes flotter { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll { animation: none; } }

/* --- Galerie chambre (carousel) ----------------------------------------- */
.galerie-principale {
  position: relative; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden;
  background: var(--or-clair); box-shadow: var(--ombre-douce);
}
.galerie-item { position: absolute; inset: 0; }
.galerie-media { width: 100%; height: 100%; object-fit: cover; display: block; background: #1a140d; }
.galerie-principale img { width: 100%; height: 100%; object-fit: cover; display: block; }
.galerie-fleche {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .85); color: var(--texte); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--ombre);
  transition: background .15s;
}
.galerie-fleche:hover { background: #fff; }
.galerie-fleche.prec { left: .6rem; }
.galerie-fleche.suiv { right: .6rem; }
.galerie-miniatures { display: flex; gap: .5rem; margin-top: .6rem; flex-wrap: wrap; }
.galerie-mini {
  width: 76px; height: 58px; padding: 0; border: 2px solid transparent; border-radius: 9px;
  overflow: hidden; cursor: pointer; background: none; opacity: .7; transition: opacity .15s, border-color .15s;
}
.galerie-mini { position: relative; }
.galerie-mini img { width: 100%; height: 100%; object-fit: cover; display: block; }
.galerie-mini:hover { opacity: 1; }
.galerie-mini.actif { opacity: 1; border-color: var(--or); }
.galerie-mini .mini-vide {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; background: #2a2018; color: var(--or-clair); font-size: 1.2rem;
}
.galerie-mini .mini-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
  background: rgba(0, 0, 0, .18); pointer-events: none;
}

/* --- Avis / témoignages : étoiles --------------------------------------- */
.etoiles { color: var(--or); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: .5rem; }
.etoiles-choix { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .3rem; }
.etoile-chip {
  display: inline-flex; align-items: center; gap: .35rem; cursor: pointer;
  padding: .35rem .7rem; border: 1px solid var(--bordure); border-radius: 999px;
  background: var(--fond); color: var(--or); letter-spacing: 1px; font-size: 1rem;
  transition: background .15s, border-color .15s;
}
.etoile-chip input { accent-color: var(--magenta); }
.etoile-chip:hover { background: var(--or-clair); }
.etoile-chip:has(input:checked) { background: var(--or-clair); border-color: var(--or); }

/* --- En-tête de page intérieure (premium, sans diaporama) --------------- */
.hero-page {
  position: relative; text-align: center; padding: 3.4rem 0 2.8rem;
  border-bottom: 1px solid var(--bordure); overflow: hidden;
  background:
    radial-gradient(80% 130% at 82% -20%, rgba(194, 24, 91, .10) 0%, transparent 60%),
    radial-gradient(70% 120% at 10% -10%, rgba(201, 162, 39, .16) 0%, transparent 55%),
    linear-gradient(135deg, #fff8e8 0%, #fdeef4 100%);
}
.hero-page h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin: .2rem 0 .3rem; }
.hero-page .accroche { color: var(--texte-doux); max-width: 660px; margin: .5rem auto 1.1rem; font-size: 1.05rem; }
.hero-page .divider-or { margin-top: .6rem; }

/* --- Pied de page premium ----------------------------------------------- */
.site-footer { background: linear-gradient(180deg, #2a241d 0%, #1b1713 100%); border-top: 3px solid var(--or); }

/* --- Bandeau d'appel à l'action (réutilisable) -------------------------- */
.cta-bande {
  background: var(--degrade-or); color: #fff; border-radius: 20px;
  padding: 2.4rem 1.5rem; text-align: center; box-shadow: var(--ombre-forte);
}
.cta-bande h2 { color: #fff; }
.cta-bande .btn-magenta { box-shadow: 0 10px 26px rgba(0, 0, 0, .2); }

/* --- Formulaires publics : focus premium -------------------------------- */
.champ input:focus, .champ select:focus, .champ textarea:focus,
.form-client input:focus, .form-client textarea:focus {
  outline: none; border-color: var(--or); box-shadow: 0 0 0 3px rgba(201, 162, 39, .18);
}
.bloc-recherche { border-radius: 18px; box-shadow: var(--ombre-douce); }

@media (max-width: 760px) {
  .hero-slideshow { min-height: 78vh; padding: 3.5rem 0; }
  .section h2 { font-size: 1.55rem; }
}

/* ===== Espace client + fidélité ===== */
.nav-compte { white-space: nowrap; }

.form-compte button { width: 100%; margin-top: .4rem; }
.form-erreur { background: #fce8e6; color: #a3261a; border: 1px solid #f3c2bb; padding: .6rem .8rem; border-radius: 8px; margin-bottom: 1rem; font-size: .88rem; }

.compte-tete { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.compte-ligne { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--bordure); }
.compte-ligne:last-child { border-bottom: 0; }
.compte-articles { margin: .6rem 0 0; padding-left: 1.1rem; color: var(--texte-doux); font-size: .85rem; }
.lien-fleche { font-weight: 600; }

.fid-carte { background: linear-gradient(135deg, #2b2419, #4a3a1c); color: #f4ecd6; border-radius: 16px; padding: 1.4rem 1.5rem; box-shadow: 0 12px 30px rgba(0, 0, 0, .18); }
.fid-haut { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.fid-palier { font-family: var(--serif); font-size: 1.3rem; color: var(--or); font-weight: 700; }
.fid-points strong { font-size: 1.6rem; }
.fid-avantage { margin: .5rem 0 .9rem; opacity: .92; }
.fid-barre { height: 10px; border-radius: 6px; background: rgba(255, 255, 255, .18); overflow: hidden; }
.fid-barre span { display: block; height: 100%; background: linear-gradient(90deg, var(--or), #e9cf73); }
.fid-carte small { display: block; margin-top: .5rem; opacity: .82; }
.fid-depense { margin: .9rem 0 0; padding-top: .7rem; border-top: 1px solid rgba(255, 255, 255, .15); }

/* ===== Authentification client — mise en page premium ===== */
.auth {
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  display: flex; justify-content: center;
  background:
    radial-gradient(70% 120% at 12% -10%, rgba(201, 162, 39, .14), transparent 55%),
    radial-gradient(80% 130% at 88% -15%, rgba(194, 24, 91, .10), transparent 60%),
    linear-gradient(135deg, #fff8e8 0%, #fdeef4 100%);
}
.auth-carte {
  display: grid; grid-template-columns: 1.04fr 1fr;
  width: min(940px, 100%); background: #fff;
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--bordure); box-shadow: var(--ombre-forte);
}

/* Panneau marque (gauche) */
.auth-visuel {
  position: relative; padding: 2.3rem 2.1rem; color: #f4ecd6;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2.2rem;
  background: linear-gradient(150deg, #2a2114 0%, #43331a 52%, #5a2440 125%);
}
.auth-visuel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 58% at 82% 8%, rgba(201, 162, 39, .28), transparent 60%);
}
.auth-visuel > * { position: relative; z-index: 1; }
.auth-visuel-haut { display: flex; align-items: center; gap: .7rem; }
.auth-logo { width: 46px; height: 46px; border-radius: 10px; background: rgba(255, 255, 255, .08); padding: 5px; }
.auth-marque { font-family: var(--serif-affiche); font-size: 1.15rem; color: #fff; }
.auth-eyebrow { color: var(--or); }
.auth-baseline { font-family: var(--serif-affiche); font-size: 1.65rem; line-height: 1.16; color: #fff; margin: .25rem 0 1.1rem; }
.auth-atouts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; font-size: .92rem; }
.auth-atouts li { display: flex; align-items: flex-start; gap: .6rem; }
.auth-atouts i { color: var(--or); margin-top: 2px; font-size: 1.05rem; }

/* Panneau formulaire (droite) */
.auth-form { padding: clamp(1.8rem, 4vw, 2.7rem); display: flex; flex-direction: column; justify-content: center; }
.auth-form h1 { font-family: var(--serif-affiche); font-size: 1.95rem; margin: .1rem 0 0; }
.auth-form .divider-or { margin: .7rem 0 1.5rem; }
.auth-form .btn { width: 100%; margin-top: .3rem; }
.auth-bascule { margin-top: 1.3rem; font-size: .92rem; color: var(--texte-doux); }
.auth-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }

/* Champs premium */
.form-compte label { display: block; margin-bottom: 1rem; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--texte-doux); }
.champ-premium {
  width: 100%; margin-top: .35rem; padding: .72rem .9rem;
  border: 1px solid var(--bordure); border-radius: 11px; background: var(--fond-alt);
  font-family: var(--sans); font-size: .98rem; color: var(--texte);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.champ-premium::placeholder { color: #b8ac96; font-weight: 400; }
.champ-premium:focus { outline: none; border-color: var(--or); background: #fff; box-shadow: 0 0 0 3px rgba(201, 162, 39, .18); }

@media (max-width: 760px) {
  .auth-carte { grid-template-columns: 1fr; }
  .auth-visuel { padding: 1.7rem 1.5rem; gap: 1.4rem; }
  .auth-duo { grid-template-columns: 1fr; }
}
.compte-actions { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }

/* ===== Messagerie (chat) ===== */
.chat { display: flex; flex-direction: column; gap: .5rem; max-height: 52vh; overflow-y: auto; padding: 1rem; background: var(--fond-alt); border: 1px solid var(--bordure); border-radius: 14px; margin: 1rem 0; }
.chat-msg { max-width: 78%; padding: .55rem .8rem; border-radius: 14px; font-size: .92rem; }
.chat-msg p { margin: 0; white-space: pre-wrap; word-wrap: break-word; }
.chat-msg time { display: block; font-size: .66rem; opacity: .75; margin-top: .25rem; }
.chat-msg.de-moi { align-self: flex-end; background: var(--magenta); color: #fff; border-bottom-right-radius: 4px; }
.chat-msg.de-staff { align-self: flex-start; background: #fff; border: 1px solid var(--bordure); border-bottom-left-radius: 4px; }
.chat-vide { text-align: center; color: var(--texte-doux); font-size: .9rem; padding: 1rem; margin: 0; }
.chat-form { display: flex; gap: .5rem; align-items: flex-end; }
.chat-form textarea { flex: 1; padding: .6rem .8rem; border: 1px solid var(--bordure); border-radius: 11px; font-family: inherit; font-size: .95rem; resize: vertical; background: #fff; }
.chat-form textarea:focus { outline: none; border-color: var(--or); box-shadow: 0 0 0 3px rgba(201, 162, 39, .18); }

/* --- Suppléments à la réservation (extras) --- */
.resa-extras { border: 1px solid var(--bordure); border-radius: 14px; padding: 1rem 1.1rem; margin: 1.1rem 0; background: var(--fond-alt); }
.resa-extras legend { font-weight: 700; color: var(--texte); padding: 0 .4rem; }
.resa-extras legend small { color: var(--texte-doux); font-weight: 400; }
.resa-extra { display: flex; align-items: center; gap: .75rem; padding: .6rem .2rem; border-bottom: 1px solid var(--bordure); cursor: pointer; }
.resa-extra:last-child { border-bottom: none; }
.resa-extra input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--magenta); flex: none; }
.resa-extra > i { font-size: 1.2rem; color: var(--or); flex: none; width: 1.5rem; text-align: center; }
.resa-extra-nom { display: flex; flex-direction: column; flex: 1; line-height: 1.25; }
.resa-extra-nom small { color: var(--texte-doux); font-size: .8rem; }
.resa-extra-prix { display: flex; flex-direction: column; align-items: flex-end; font-weight: 700; white-space: nowrap; }
.resa-extra-prix small { color: var(--texte-doux); font-weight: 400; font-size: .72rem; }
.resa-extra-qte { width: 64px; padding: .35rem .4rem; border: 1px solid var(--bordure); border-radius: 9px; font-family: inherit; }

/* --- Fidélité au checkout --- */
.resa-fidelite { border: 1px solid var(--or); border-radius: 14px; padding: .9rem 1.1rem; margin: 1.1rem 0; background: linear-gradient(180deg, #fffdf5, var(--fond-alt)); }
.resa-fidelite-tete { font-weight: 700; margin: 0 0 .4rem; }
.resa-fidelite-tete i { color: var(--or); }
.resa-fidelite-perk { color: #226b3f; font-size: .9rem; margin: .2rem 0; }
.resa-fidelite-points { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.resa-fidelite-points small { display: block; color: var(--texte-doux); font-size: .75rem; }

/* --- Calendrier de disponibilité (fiche chambre) --- */
.dispo-cal { border: 1px solid var(--bordure); border-radius: 14px; padding: 1rem; margin: 1.2rem 0; background: #fff; }
.dispo-cal h3 { margin: 0 0 .6rem; }
.dispo-cal-tete { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.dispo-cal-tete strong { text-transform: capitalize; }
.dispo-cal-tete button { width: 34px; height: 34px; border: 1px solid var(--bordure); background: var(--fond-alt); border-radius: 9px; cursor: pointer; }
.dispo-cal-tete button:disabled { opacity: .4; cursor: not-allowed; }
.dispo-cal-grille { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.dispo-cal-th { text-align: center; font-size: .72rem; color: var(--texte-doux); font-weight: 700; padding: .2rem 0; }
.dispo-cal-case { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; border-radius: 9px; font-size: .85rem; text-decoration: none; }
.dispo-cal-case.vide { background: transparent; }
.dispo-cal-case.libre { background: #e7f4ec; color: #1f7a3d; font-weight: 700; cursor: pointer; border: 1px solid #cde9d7; }
.dispo-cal-case.libre:hover { background: #1f7a3d; color: #fff; text-decoration: none; }
.dispo-cal-case.occupe { background: repeating-linear-gradient(45deg, #f6e9ee, #f6e9ee 5px, #efd9e1 5px, #efd9e1 10px); color: #9a3b5c; cursor: not-allowed; }
.dispo-cal-case.passe { background: var(--fond-alt); color: #c8c0b3; cursor: default; }
.dispo-cal-legende { display: flex; align-items: center; gap: .4rem; margin: .7rem 0 0; font-size: .8rem; color: var(--texte-doux); }
.dispo-cal-legende .pt { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.dispo-cal-legende .pt.libre { background: #cde9d7; }
.dispo-cal-legende .pt.occupe { background: #efd9e1; }

/* --- Avis : résumé agrégé + badge vérifié + réponse direction --- */
.avis-resume { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; padding: 1.4rem 1.6rem; margin-bottom: 2rem; border: 1px solid var(--bordure); border-radius: 16px; background: linear-gradient(180deg, #fffdf5, var(--fond-alt)); box-shadow: var(--ombre, 0 6px 20px rgba(0,0,0,.05)); }
.avis-resume-note { text-align: center; }
.avis-resume-chiffre { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--or-fonce, #a67c00); }
.avis-resume-sur { color: var(--texte-doux); }
.avis-resume-note .etoiles { color: var(--or); font-size: 1.05rem; }
.avis-resume-note small { display: block; color: var(--texte-doux); margin-top: .2rem; }
.avis-resume-criteres { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; min-width: 180px; }
.avis-resume-criteres li { display: flex; justify-content: space-between; gap: 1.5rem; border-bottom: 1px dotted var(--bordure); padding-bottom: .3rem; }
.avis-verifie { display: inline-flex; align-items: center; gap: .3rem; margin-top: .5rem; font-size: .78rem; font-weight: 700; color: #1f7a3d; }
.avis-reponse { margin-top: .8rem; padding: .7rem .9rem; background: var(--fond-alt); border-left: 3px solid var(--or); border-radius: 8px; font-size: .9rem; }
.chambre-note { display: inline-flex; align-items: center; gap: .4rem; color: var(--or); font-weight: 700; }
.chambre-note small { color: var(--texte-doux); font-weight: 400; }

/* ===== Favoris (wishlist) ===== */
.coeur-wrap { display: inline-flex; margin: 0; }
.coeur {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255, 255, 255, .92); color: var(--magenta); font-size: 1.15rem;
  box-shadow: var(--ombre); text-decoration: none;
  transition: transform .12s ease, background .15s, color .15s;
}
.coeur:hover { transform: scale(1.08); background: #fff; }
.coeur--actif { color: var(--magenta); }
.carte { position: relative; }
.carte .coeur-wrap { position: absolute; top: .7rem; right: .7rem; z-index: 3; }
.titre-favori { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.titre-favori h1 { margin: 0; }

/* ===== Recherche filtrée (chambres) ===== */
.filtres-chambres {
  background: #fff; border: 1px solid var(--bordure); border-radius: 16px;
  padding: 1rem 1.2rem; margin-bottom: 1.4rem; box-shadow: var(--ombre-douce);
}
.filtres-grille {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .8rem; align-items: end;
}
.filtres-grille label {
  display: flex; flex-direction: column; gap: .3rem;
  font-size: .8rem; font-weight: 600; color: var(--texte-doux);
}
.filtres-grille input, .filtres-grille select {
  padding: .5rem .6rem; border: 1px solid var(--bordure); border-radius: 9px;
  font: inherit; background: #fff;
}
.filtres-actions { display: flex; gap: .5rem; align-items: end; flex-wrap: wrap; }
.filtres-resume { margin: .7rem 0 0; font-size: .85rem; color: var(--texte-doux); }

/* ===== Réservation multi-chambres ===== */
.panier-chambres-banniere {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; background: var(--or-clair); border: 1px solid var(--or);
  border-radius: 12px; padding: .7rem 1rem; margin-bottom: 1.2rem; font-weight: 600;
}
.resa-actions { display: flex; flex-direction: column; gap: .4rem; margin-top: .6rem; }
.resa-actions form { margin: 0; }
.resa-actions .btn { width: 100%; }
.panier-table tfoot th { font-weight: 700; border-top: 2px solid var(--or); }

/* ===== Page contact premium (carte + à proximité) ===== */
.contact-grille { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.6rem; align-items: start; }
.contact-proximite { grid-column: 1 / -1; }
.contact-geoloc { margin-top: 1rem; }
.contact-distance { margin-top: .7rem; padding: .6rem .8rem; background: var(--or-clair); border-radius: 10px; }
.carte-embed { position: relative; aspect-ratio: 16 / 11; border-radius: 16px; overflow: hidden; box-shadow: var(--ombre-douce); background: var(--or-clair); }
.carte-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.poi-liste { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .6rem; }
.poi {
  display: flex; align-items: center; gap: .9rem;
  padding: .7rem .9rem; border: 1px solid var(--bordure); border-radius: 12px;
  background: #fff; box-shadow: var(--ombre-douce);
}
.poi-icone {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--or-clair); color: var(--or); font-size: 1.15rem;
}
.poi-corps { flex: 1 1 auto; display: flex; flex-direction: column; }
.poi-corps small { color: var(--texte-doux); }
.poi-dist { display: flex; align-items: center; gap: .7rem; white-space: nowrap; font-size: .85rem; font-weight: 600; }
.poi-dist-client { color: var(--magenta); }
.poi-itineraire {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--or-clair); color: var(--or);
}
.poi-itineraire:hover { background: var(--or); color: #fff; }
@media (max-width: 760px) { .contact-grille { grid-template-columns: 1fr; } }

/* ===== Accessibilité & finitions ===== */
.lien-evitement {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--magenta); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
  font-weight: 600;
}
.lien-evitement:focus { left: 0; }
:focus-visible { outline: 3px solid var(--or); outline-offset: 2px; border-radius: 4px; }
#contenu-principal:focus { outline: none; }

/* Toasts (messages) : disparition douce + bouton de fermeture */
.message-toast { position: relative; transition: opacity .5s ease, transform .5s ease; }
.message-toast.message-sortie { opacity: 0; transform: translateY(-8px); }
.message-fermer {
  background: none; border: 0; cursor: pointer; font-size: 1.2rem; line-height: 1;
  color: inherit; opacity: .6; margin-left: .5rem;
}
.message-fermer:hover { opacity: 1; }

/* ===== Comparateur de chambres ===== */
.btn-comparer.actif { background: var(--or-clair); border-color: var(--or); color: var(--or-fonce); }
.barre-comparer {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 1.1rem; z-index: 40;
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--or); border-radius: 999px;
  padding: .6rem 1.1rem; box-shadow: var(--ombre-forte); font-weight: 600;
}
.barre-comparer-actions { display: flex; gap: .5rem; }
.barre-comparer .comparer-off { opacity: .45; pointer-events: none; }
.comparateur-wrap { overflow-x: auto; }
.comparateur { width: 100%; border-collapse: collapse; min-width: 520px; }
.comparateur th, .comparateur td {
  padding: .7rem .8rem; text-align: center; border-bottom: 1px solid var(--bordure); vertical-align: middle;
}
.comparateur tbody th { text-align: left; font-weight: 600; color: var(--texte-doux); white-space: nowrap; }
.comparateur thead th { vertical-align: top; }
.comparateur-coin { border: 0; }
.comparateur-vignette {
  display: block; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  background: var(--or-clair); margin-bottom: .5rem;
}
.comparateur-vignette img { width: 100%; height: 100%; object-fit: cover; }
.comparateur-vignette .placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--or-fonce); }
.comparateur-type { display: block; color: var(--texte-doux); font-size: .85rem; }
.comparateur-oui { color: #1f7a3d; font-size: 1.1rem; }
.comparateur-non { color: var(--bordure); }

/* ===== Avis avec photos + lightbox ===== */
.avis-photos { display: flex; gap: .4rem; flex-wrap: wrap; margin: .6rem 0; }
.avis-photo-vignette {
  width: 64px; height: 64px; padding: 0; border: 0; border-radius: 8px;
  overflow: hidden; cursor: pointer; background: var(--or-clair);
}
.avis-photo-vignette img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s; }
.avis-photo-vignette:hover img { transform: scale(1.08); }
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0, 0, 0, .85);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox img { max-width: 95%; max-height: 92%; border-radius: 8px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.lightbox-fermer {
  position: absolute; top: .8rem; right: 1.3rem; background: none; border: 0;
  color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer;
}

/* ===========================================================================
   Axe 2 — Expérience client & conversion : tunnel, rareté, upsell, récap live.
   =========================================================================== */

/* --- Tunnel : barre de progression des étapes --- */
.resa-etapes { margin: 0 0 1.6rem; }
.resa-etapes ol {
  list-style: none; display: flex; gap: .4rem; padding: 0; margin: 0;
  counter-reset: etape; flex-wrap: wrap;
}
.resa-etapes li {
  flex: 1 1 0; min-width: 120px; display: flex; align-items: center; gap: .55rem;
  padding: .55rem .7rem; border-radius: 12px; background: var(--fond-alt);
  border: 1px solid var(--bordure); color: var(--texte-doux); font-size: .85rem; font-weight: 600;
}
.resa-etape-num {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; background: #fff; border: 1px solid var(--bordure);
  color: var(--texte-doux); font-size: .82rem; font-weight: 700;
}
.resa-etapes li.faite { border-color: var(--or); color: var(--or-fonce); background: #fffdf5; }
.resa-etapes li.faite .resa-etape-num { background: var(--or); border-color: var(--or); color: #fff; }
.resa-etapes li.active { box-shadow: 0 0 0 2px var(--or-clair); }
.resa-etapes li.active .resa-etape-num { background: var(--magenta); border-color: var(--magenta); color: #fff; }
@media (max-width: 560px) { .resa-etape-lib { display: none; } .resa-etapes li { min-width: 0; justify-content: center; } }

/* --- Rareté honnête (disponibilité réelle) --- */
.resa-rarete {
  display: inline-flex; align-items: center; gap: .35rem; margin: .2rem 0 .4rem;
  font-size: .82rem; font-weight: 600; color: var(--magenta-fonce);
  background: #fbe9f0; border: 1px solid #f3c9d9; border-radius: 999px; padding: .2rem .6rem;
}
.resa-rarete i { color: var(--magenta); }

/* --- Récapitulatif : détail dynamique du sous-total --- */
.recap-lignes { list-style: none; margin: 0 0 .4rem; padding: 0; font-size: .9rem; }
.recap-lignes li { display: flex; justify-content: space-between; gap: 1rem; padding: .15rem 0; color: var(--texte); }

/* --- Upsell extras : cartes visuelles, ajout en un clic --- */
.upsell { border: 1px solid var(--bordure); border-radius: 14px; padding: 1rem 1.1rem; margin: 1.1rem 0; background: var(--fond-alt); }
.upsell legend { font-weight: 700; color: var(--texte); padding: 0 .4rem; }
.upsell legend i { color: var(--or); }
.upsell legend small { color: var(--texte-doux); font-weight: 400; }
.upsell-grille { display: grid; grid-template-columns: 1fr; gap: .6rem; margin-top: .6rem; }
@media (min-width: 520px) { .upsell-grille { grid-template-columns: 1fr 1fr; } }
.upsell-carte {
  position: relative; display: flex; align-items: center; gap: .65rem; cursor: pointer;
  background: #fff; border: 1.5px solid var(--bordure); border-radius: 12px; padding: .65rem .8rem;
  transition: border-color .12s, box-shadow .12s, transform .08s;
}
.upsell-carte:hover { border-color: var(--or); transform: translateY(-1px); box-shadow: var(--ombre-douce, 0 6px 18px rgba(0,0,0,.06)); }
.upsell-carte.on { border-color: var(--magenta); background: #fdf3f7; }
.upsell-check { position: absolute; opacity: 0; pointer-events: none; }
.upsell-ico { flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--or-clair); color: var(--or-fonce); display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.upsell-carte.on .upsell-ico { background: var(--magenta); color: #fff; }
.upsell-corps { display: flex; flex-direction: column; flex: 1; min-width: 0; line-height: 1.25; }
.upsell-nom { font-weight: 600; }
.upsell-desc { color: var(--texte-doux); font-size: .78rem; }
.upsell-prix { font-weight: 700; font-size: .85rem; margin-top: .15rem; }
.upsell-prix small { color: var(--texte-doux); font-weight: 400; font-size: .72rem; }
.upsell-qte { width: 58px; padding: .35rem .4rem; border: 1px solid var(--bordure); border-radius: 9px; font-family: inherit; flex: none; }
.upsell-coche { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--bordure); display: inline-flex; align-items: center; justify-content: center; color: transparent; font-size: .8rem; }
.upsell-carte.on .upsell-coche { background: var(--magenta); border-color: var(--magenta); color: #fff; }

.btn-bloc { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; }

/* --- Messagerie client : carte de chat type WhatsApp --- */
.chat-carte { border: 1px solid var(--bordure); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.06); background: #fff; }
.chat-carte-tete { display: flex; align-items: center; gap: .6rem; padding: .7rem 1rem; background: var(--magenta); color: #fff; }
.chat-carte-tete .msg-ava { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; font-size: 1.1rem; }
.chat-carte-tete small { display: block; opacity: .85; font-size: .76rem; }
.chat-carte .chat { margin: 0; border: 0; border-radius: 0; background: #ece5dd; max-height: 56vh; }
.chat-carte .chat-form { margin: 0; padding: .6rem .8rem; background: #fff; border-top: 1px solid var(--bordure); }
.chat-msg time { display: inline-flex; align-items: center; gap: .25rem; justify-content: flex-end; }
.chat-msg .coche { display: inline-flex; }
.chat-msg.de-moi .coche.lu { color: #8fd0ff; }
.chat-jour { align-self: center; background: rgba(0,0,0,.07); color: #555; font-size: .68rem; font-weight: 600; padding: .15rem .65rem; border-radius: 999px; margin: .45rem 0; }
.chat-typing { display: none; align-items: center; gap: 4px; padding: .15rem 1rem .45rem; background: #ece5dd; }
.chat-typing.actif { display: flex; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: #8a8a8a; animation: chat-blink 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chat-blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

/* =========================================================================
   MODE SOMBRE (vitrine) — préférence `kf-theme` partagée avec le back-office.
   Le design system étant basé sur des variables, on surcharge les tokens +
   quelques surfaces codées en dur.
   ========================================================================= */
.theme-toggle {
  background: none; border: 0; cursor: pointer; color: var(--or-fonce);
  font-size: 1.15rem; line-height: 1; padding: .3rem; display: inline-flex;
}
.theme-toggle:hover { color: var(--magenta); }

html[data-theme="dark"] {
  --or-clair: #322c1c;
  --fond: #16130e;
  --fond-alt: #1e1a14;
  --carte: #221d16;
  --texte: #ece5d8;
  --texte-doux: #b0a48f;
  --bordure: #39301f;
  --ombre: 0 2px 14px rgba(0, 0, 0, .5);
  --ombre-forte: 0 18px 44px rgba(0, 0, 0, .6);
}
html[data-theme="dark"] .site-header { background: rgba(22, 19, 14, .92); }
html[data-theme="dark"] .champ input, html[data-theme="dark"] .champ select,
html[data-theme="dark"] .champ textarea, html[data-theme="dark"] .form-client input,
html[data-theme="dark"] .form-client textarea, html[data-theme="dark"] .nav-pro-menu,
html[data-theme="dark"] .nav-pro-btn, html[data-theme="dark"] .table-tarifs,
html[data-theme="dark"] .langues button {
  background: var(--carte); color: var(--texte);
}
html[data-theme="dark"] .cta-mobile { background: rgba(22, 19, 14, .97); }
html[data-theme="dark"] .galerie-fleche { background: rgba(34, 29, 22, .85); color: var(--texte); }
html[data-theme="dark"] .galerie-fleche:hover { background: var(--carte); }
html[data-theme="dark"] .theme-toggle { color: var(--or); }
html[data-theme="dark"] .table-tarifs th { background: var(--fond-alt); color: var(--or); }

/* --- Skeletons de chargement (perception de rapidité) -------------------- */
.skeleton {
  position: relative; overflow: hidden;
  background: var(--fond-alt); border-radius: 8px;
}
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: translateX(-100%); animation: kf-shimmer 1.25s infinite;
}
html[data-theme="dark"] .skeleton::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .08), transparent);
}
.skeleton-case { aspect-ratio: 1; border-radius: 9px; }
.skeleton-ligne { height: .85rem; margin: .35rem 0; }
@keyframes kf-shimmer { 100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .skeleton::after { animation: none; } }

/* --- Apparition en fondu des images (blur-up léger, piloté par JS) ------- */
.kf-fade { opacity: 0; background: var(--fond-alt); transition: opacity .55s ease; }
.kf-fade.kf-vu { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .kf-fade { transition: none; } }

/* --- Pages d'erreur (404/403) premium ------------------------------------ */
.erreur-page { max-width: 620px; text-align: center; margin: 0 auto; padding: 2rem 1rem; }
.erreur-code {
  font-family: var(--serif); font-weight: 800; font-size: clamp(4rem, 14vw, 7rem);
  line-height: 1; color: var(--or); letter-spacing: .02em;
  background: linear-gradient(135deg, var(--or), var(--magenta));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.erreur-page h1 { font-family: var(--serif); margin: .4rem 0 .6rem; }
.erreur-actions { margin-top: 1.5rem; display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }

/* --- Lightbox galerie chambre -------------------------------------------- */
.galerie-zoomable { cursor: zoom-in; }
.galerie-lightbox {
  position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center;
  background: rgba(12, 10, 8, .92); padding: 3rem 1rem;
}
.galerie-lightbox .gl-img {
  max-width: 94vw; max-height: 88vh; object-fit: contain; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}
.gl-fermer {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: rgba(255, 255, 255, .12); color: #fff; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.3rem; display: inline-flex;
  align-items: center; justify-content: center;
}
.gl-fermer:hover { background: rgba(255, 255, 255, .25); }
.gl-fleche {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(255, 255, 255, .12); color: #fff; border: 0; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.5rem; display: inline-flex;
  align-items: center; justify-content: center;
}
.gl-fleche:hover { background: rgba(255, 255, 255, .25); }
.gl-fleche.prec { left: 1rem; }
.gl-fleche.suiv { right: 1rem; }

/* --- Défilement doux + bouton retour en haut ----------------------------- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.btn-haut {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 55;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--or); color: #fff; font-size: 1.2rem; box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .25s, transform .25s, visibility .25s;
}
.btn-haut.visible { opacity: 1; visibility: visible; transform: none; }
.btn-haut:hover { background: var(--or-fonce); }
@media (max-width: 760px) { .btn-haut { bottom: 76px; } }   /* au-dessus de la barre CTA mobile */

/* --- Chiffres clés : bande de compteurs animés --------------------------- */
.stats-band { padding: 2.2rem 0; }
.stats-grille { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-item { display: flex; flex-direction: column; gap: .25rem; }
.stat-valeur {
  font-family: var(--serif); font-weight: 800; font-size: clamp(2rem, 5.5vw, 3rem); line-height: 1;
  background: linear-gradient(135deg, var(--or), var(--magenta));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--texte-doux); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 600px) { .stats-grille { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* --- Transitions de page (cross-document View Transitions API) ----------- */
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .32s; }
@media (prefers-reduced-motion: reduce) { @view-transition { navigation: none; } }

/* =========================================================================
   Page Événement (Bar & Lounge) — refonte premium
   ========================================================================= */
.evt-hero {
  position: relative; text-align: center; color: #fff; overflow: hidden;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
  background: linear-gradient(135deg, #2a1320, #3a2030 55%, #1c1813);
}
.evt-hero.a-image::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--evt-hero-img); background-size: cover; background-position: center;
  transform: scale(1.05);
}
.evt-hero-voile { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20, 14, 18, .5), rgba(20, 14, 18, .8)); }
.evt-hero-corps { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 1rem; }
.evt-hero-corps h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.2rem); margin: .3rem 0 .4rem; color: #fff; }
.evt-hero-corps .accroche { color: rgba(255, 255, 255, .9); max-width: 620px; margin: .6rem auto 1.5rem; font-size: 1.05rem; }
.eyebrow.clair { color: var(--or); }
.centre-divider { margin-left: auto; margin-right: auto; }
.evt-hero-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }
.btn-ligne-clair { border: 1px solid rgba(255, 255, 255, .65); color: #fff; background: transparent; }
.btn-ligne-clair:hover { background: rgba(255, 255, 255, .14); text-decoration: none; }

.evt-occasions { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 1.7rem; }
.evt-occasion {
  display: flex; flex-direction: column; align-items: center; gap: .55rem; text-align: center;
  padding: 1.3rem .6rem; border: 1px solid var(--bordure); border-radius: 14px;
  background: var(--carte); box-shadow: var(--ombre); transition: transform .2s, box-shadow .2s;
}
.evt-occasion:hover { transform: translateY(-4px); box-shadow: var(--ombre-forte); }
.evt-occasion i { font-size: 1.8rem; color: var(--magenta); }
.evt-occasion span { font-size: .85rem; font-weight: 600; }
@media (max-width: 820px) { .evt-occasions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .evt-occasions { grid-template-columns: repeat(2, 1fr); } }

.evt-ico {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 14px; font-size: 1.5rem; color: #fff; margin-bottom: .6rem;
  background: linear-gradient(135deg, var(--or), var(--magenta));
}
.evt-atout h3 { font-family: var(--serif); }

.evt-galerie { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1.5rem; }
.evt-galerie-item { margin: 0; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--ombre); }
.evt-galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.evt-galerie-item:hover img { transform: scale(1.07); }
@media (max-width: 700px) { .evt-galerie { grid-template-columns: 1fr 1fr; } }

.evt-etapes { list-style: none; padding: 0; margin: 1.7rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.evt-etapes li { text-align: center; padding: 1.4rem 1.1rem; background: var(--carte); border: 1px solid var(--bordure); border-radius: 16px; box-shadow: var(--ombre); }
.evt-etape-num {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--or-clair); color: var(--or-fonce);
  font-family: var(--serif); font-weight: 800; font-size: 1.35rem; margin-bottom: .5rem;
}
.evt-etapes h3 { font-family: var(--serif); margin: .2rem 0 .3rem; font-size: 1.1rem; }
@media (max-width: 700px) { .evt-etapes { grid-template-columns: 1fr; } }
