:root {
  --green-dark: #0f1e15;
  --green: #16281d;
  --green-light: #223a29;
  --cream: #f5efe3;
  --cream-2: #eee6d4;
  --gold: #c9a35a;
  --gold-light: #ddc088;
  --text-dark: #201d17;
  --text-muted: #7a7468;
  --error: #a8402c;
  --radius: 2px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', Arial, sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* --- barre de défilement --- */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(22,40,29,.3) var(--cream);
}
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background-color: rgba(22,40,29,.28);
  border-radius: 10px;
  border: 2px solid var(--cream);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background-color: rgba(22,40,29,.45); }
::-webkit-scrollbar-corner { background: var(--cream); }
::-webkit-scrollbar-button { display: none; width: 0; height: 0; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0 0 .4em;
  color: var(--green-dark);
}

h1, h2 { font-size: 2.1rem; }

p { line-height: 1.7; margin: 0 0 1em; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-muted { color: var(--text-muted); font-size: .9rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold);
  margin-bottom: .6em;
}
.center { text-align: center; }
.eyebrow.center { display: block; }
h1.center, h2.center { margin-left: auto; margin-right: auto; max-width: 640px; }
p.center { max-width: 560px; margin-left: auto; margin-right: auto; }

/* --- header --- */
.site-header {
  background: rgba(15,30,21,.97);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .35s ease;
  border-bottom: 1px solid rgba(201,163,90,.16);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(6,12,8,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 30px; width: auto; display: block; }
.main-nav { display: none; gap: 22px; flex-shrink: 1; }
.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .05em;
  opacity: .85;
  transition: opacity .2s;
  white-space: nowrap;
}
.main-nav a:hover { opacity: 1; }
.nav-cta { display: inline-flex; flex-shrink: 0; white-space: nowrap; }
@media (min-width: 860px) {
  .main-nav { display: flex; }
}

/* --- boutons --- */
.btn {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn:disabled:active { transform: none; }
.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.4) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-outline {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.site-header .btn-outline { border-color: var(--cream); color: var(--cream); }
.btn-outline:hover { background: rgba(245,239,227,.1); }
.contact .btn-outline, .carte .btn-outline { border-color: var(--green); color: var(--green); }
.contact .btn-outline:hover, .carte .btn-outline:hover { background: rgba(22,40,29,.06); }
.btn-full { width: 100%; }

/* --- hero --- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,58,41,.9), transparent 65%),
    linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(201,163,90,.14), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.35), transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 140px rgba(0,0,0,.45);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.hero-logo { width: min(420px, 78vw); height: auto; margin-bottom: 22px; }
.hero-tagline {
  color: var(--cream-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 34px;
}

.hero-logo, .hero-tagline, .hero-content .btn {
  opacity: 0;
  animation: heroIn .9s ease forwards;
}
.hero-logo { animation-delay: .1s; }
.hero-tagline { animation-delay: .35s; }
.hero-content .btn { animation-delay: .55s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo, .hero-tagline, .hero-content .btn { animation: none; opacity: 1; transform: none; }
}

/* indice de défilement */
.scroll-cue {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  width: fit-content;
  margin-inline: auto;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-align: center;
  color: rgba(245,239,227,.55);
  opacity: 0;
  animation: heroIn .9s ease .8s forwards;
}
.scroll-cue-label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-cue-line {
  width: 1px;
  height: 38px;
  background: rgba(245,239,227,.25);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 1px;
  height: 14px;
  background: var(--gold-light);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); }
  100% { transform: translateY(52px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; opacity: 1; }
  .scroll-cue-line::after { animation: none; top: 14px; }
}

/* --- sections --- */
.section { padding: 90px 0; }
.maison { background: var(--cream); }
.carte { background: var(--cream-2); }
.galerie { background: var(--cream); }
.contact { background: var(--cream-2); }

/* page dédiée /carte : pas de hero au-dessus, on respire davantage sous le header */
.carte-page { padding-top: 130px; }
@media (max-width: 640px) { .carte-page { padding-top: 90px; } }

/* aperçu condensé de la carte sur l'accueil */
.menu-teaser {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--green-dark);
}
.menu-teaser-sep { color: var(--gold); }
.menu-cta { margin-top: 40px; }
.carte-page-cta { margin-top: 60px; }

/* séparateur ornemental */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 180px;
  margin: 0 auto 44px;
}
.section-divider .line { flex: 1; height: 1px; background: rgba(32,29,23,.18); }
.section-divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* apparition au défilement */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 800px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* --- panneaux d'ambiance (en attendant les photos) --- */
.mood-panel {
  position: relative;
  min-height: 260px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: inset 0 1px 0 rgba(245,239,227,.08);
}
.mood-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(245,239,227,.035) 0 10px, transparent 10px 20px);
}
.mood-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,.4);
}
.mood-panel.small { min-height: 170px; }
.mood-panel-icon {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  opacity: .9;
}
.mood-panel-icon svg { display: block; }
.mood-label {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  text-align: center;
  padding: 0 12px;
}

.mood-panel--feature {
  border: 1px solid rgba(201,163,90,.25);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(201,163,90,.16), transparent 60%),
    linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
}
.mood-panel--feature .mood-panel-icon { color: var(--gold-light); }
.mood-panel--feature .mood-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--sans);
  font-style: normal;
  font-size: .78rem;
  color: rgba(245,239,227,.7);
}

.map-frame {
  position: relative;
  min-height: 260px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,163,90,.25);
  box-shadow: inset 0 1px 0 rgba(245,239,227,.08);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(28%) sepia(8%) contrast(1.02);
  transition: filter .4s ease;
}
.map-frame:hover iframe,
.map-frame:focus-within iframe { filter: none; }

/* variantes de teinte pour la galerie */
.mood-panel--a { background: linear-gradient(150deg, #24402c 0%, var(--green-dark) 100%); }
.mood-panel--b { background: linear-gradient(160deg, var(--green) 0%, #0b160f 100%); }
.mood-panel--c {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,163,90,.2), transparent 60%),
    linear-gradient(155deg, var(--green) 0%, var(--green-dark) 100%);
}
.mood-panel--d { background: linear-gradient(200deg, #2a4530 0%, var(--green-dark) 100%); }

/* --- menu --- */
.menu-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px 50px;
}
@media (min-width: 720px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
.menu-section.reveal + .menu-section.reveal { transition-delay: .08s; }
.menu-section.reveal + .menu-section.reveal + .menu-section.reveal { transition-delay: .16s; }
.menu-section.reveal + .menu-section.reveal + .menu-section.reveal + .menu-section.reveal { transition-delay: .24s; }
.menu-item-head {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 8px;
}
.menu-item-head h4 { font-family: var(--serif); font-weight: 500; color: var(--green-dark); font-size: 1.25rem; margin: 0; white-space: nowrap; }
.menu-leader {
  flex: 1;
  min-width: 16px;
  border-bottom: 1px dotted rgba(32,29,23,.35);
  transform: translateY(-5px);
}
.menu-price { font-family: var(--serif); color: var(--gold); font-size: 1.1rem; white-space: nowrap; }
.menu-item p { margin: 0; color: var(--text-muted); font-size: .92rem; }

/* grandes sections de la carte (La Carte / Suggestions / Menu selon saison / Carte des vins) */
.menu-section {
  margin-top: 76px;
  padding-top: 50px;
  border-top: 1px solid rgba(32,29,23,.1);
}
.menu-section:first-of-type { border-top: none; padding-top: 0; margin-top: 50px; }
.menu-section-title {
  text-align: center;
  font-size: 1.5rem;
  color: var(--green-dark);
  margin: 0 0 10px;
}
.menu-section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto 0;
}

/* catégories au sein d'une section */
.menu-category { margin-top: 40px; }
.menu-category:first-of-type { margin-top: 30px; }
.menu-category-title {
  text-align: center;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 6px;
}
.menu-category-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(201,163,90,.4);
  margin: 12px auto 0;
}

.menu-category:not(:has(.menu-category-title)) .menu-grid,
.menu-category:not(:has(.menu-category-title)) .wine-list { margin-top: 6px; }

.menu-cave-text {
  margin: 28px auto 0;
  max-width: 480px;
  text-align: center;
}

/* --- carte des vins : présentation dédiée, plus sobre qu'une carte de plats --- */
.wine-list {
  margin: 28px auto 0;
  max-width: 640px;
}
.wine-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(32,29,23,.1);
}
.wine-item:last-child { border-bottom: none; padding-bottom: 0; }
.wine-item:first-child { padding-top: 0; }
.wine-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.wine-item-head h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green-dark);
  font-size: 1.15rem;
  margin: 0;
}
.wine-price {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.wine-desc {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-muted);
  font-size: .92rem;
}

/* --- galerie --- */
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-grid .reveal:nth-child(2) { transition-delay: .08s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: .16s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: .24s; }

/* --- contact --- */
.infos-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 20px; }
.infos-list strong { font-family: var(--serif); font-size: 1.05rem; color: var(--green-dark); }

/* --- footer --- */
.site-footer {
  background: var(--green-dark);
  color: var(--cream-2);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer-logo { height: 24px; opacity: .95; }
.footer-tagline { font-family: var(--serif); font-style: italic; color: rgba(245,239,227,.6); margin: 0; font-size: 1rem; }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(245,239,227,.25);
  border-radius: 50%;
  color: rgba(245,239,227,.75);
}

.footer-col-title {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-nav, .footer-infos { display: flex; flex-direction: column; gap: 11px; }
.footer-nav a {
  color: rgba(245,239,227,.75);
  text-decoration: none;
  font-size: .9rem;
  transition: color .15s;
  width: fit-content;
}
.footer-nav a:hover { color: var(--cream); }
.footer-infos p { margin: 0; font-size: .9rem; color: rgba(245,239,227,.75); }

.footer-bottom { border-top: 1px solid rgba(245,239,227,.12); }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 24px;
}
.footer-note { font-size: .8rem; opacity: .6; margin: 0; }
.footer-version { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .4; margin: 0; }

/* --- modal --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,30,21,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--cream);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px 32px;
  position: relative;
  border-radius: 14px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(14px) scale(.98);
  transition: transform .25s ease;
  box-shadow: 0 30px 70px -16px rgba(9,17,12,.45), 0 10px 26px -10px rgba(9,17,12,.3);
}
.modal-backdrop.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: rgba(32,29,23,.06); color: var(--text-dark); }
.modal h3 { font-size: 1.5rem; }
.modal:focus { outline: none; }

/* focus visible cohérent sur toute la popup */
.modal-booking button:focus-visible,
.modal-booking input:focus-visible,
.modal-booking textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.modal-close:focus-visible { outline-offset: 0; }

/* --- modal réservation : mise en page à deux colonnes --- */
.modal-booking {
  max-width: 760px;
  max-height: 90vh;
  padding: 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
}
@media (max-width: 640px) {
  .modal-booking {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.booking-summary {
  background:
    radial-gradient(ellipse 140% 60% at 50% 0%, rgba(201,163,90,.18), transparent 62%),
    linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--cream);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow-y: auto;
  min-height: 0;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: rgba(221,192,136,.4) transparent;
}
.booking-summary::-webkit-scrollbar-track { background: transparent; }
.booking-summary::-webkit-scrollbar-thumb {
  background-color: rgba(221,192,136,.4);
  border-color: var(--green);
}
.booking-summary::-webkit-scrollbar-thumb:hover { background-color: rgba(221,192,136,.6); }
.booking-summary::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-image: repeating-linear-gradient(to bottom, rgba(201,163,90,.5) 0 5px, transparent 5px 13px);
}
@media (max-width: 640px) {
  .booking-summary { padding: 24px 28px; overflow: visible; min-height: auto; }
  .booking-summary::after { display: none; }
}
.booking-summary-logo { height: 24px; width: auto; object-fit: contain; margin-bottom: 18px; opacity: .95; }

.summary-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 140px;
  margin: 0 0 20px;
}
.summary-divider .line { flex: 1; height: 1px; background: rgba(245,239,227,.2); }
.summary-divider .diamond {
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@media (max-width: 640px) { .booking-summary-logo { display: none; } }
.booking-summary .eyebrow { color: var(--gold-light); margin-bottom: 18px; }

.summary-list { list-style: none; margin: 0; padding: 0; width: 100%; display: grid; gap: 14px; position: relative; z-index: 1; }
.summary-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245,239,227,.14);
}
.summary-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,163,90,.14);
  border: 1px solid rgba(201,163,90,.3);
  color: var(--gold-light);
}
.summary-text { display: flex; flex-direction: column; gap: 2px; }
.summary-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,227,.55);
}
.summary-value {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--cream);
}

/* engagements */
.summary-perks { margin: 26px 0 0; width: 100%; }
.summary-perks-title {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,227,.55);
  margin: 0 0 12px;
}
.summary-perks ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.summary-perks li {
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
  font-size: .84rem;
  color: rgba(245,239,227,.85);
  line-height: 1.3;
}
.summary-perks svg {
  flex-shrink: 0;
  display: flex;
  color: var(--gold-light);
  background: rgba(201,163,90,.15);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}
@media (max-width: 640px) { .summary-perks { margin-top: 18px; } }

/* pied du panneau récap */
.summary-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(245,239,227,.14);
  display: grid;
  gap: 10px;
  width: 100%;
}
@media (max-width: 640px) { .summary-footer { margin-top: 18px; } }

.summary-address,
.summary-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  margin: 0;
  font-size: .82rem;
  color: rgba(245,239,227,.75);
}
.summary-address svg, .summary-contact svg { flex-shrink: 0; opacity: .8; }

.booking-main {
  padding: 34px 32px 32px;
  min-width: 0;
  min-height: 0;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,163,90,.45) transparent;
}
.booking-main::-webkit-scrollbar-track { background: transparent; }
.booking-main::-webkit-scrollbar-thumb {
  background-color: rgba(201,163,90,.4);
  border-color: var(--cream);
}
.booking-main::-webkit-scrollbar-thumb:hover { background-color: rgba(201,163,90,.65); }
@media (max-width: 640px) {
  .booking-main { overflow: visible; min-height: auto; }
}

.step-heading { margin-bottom: 4px; }
.step-heading:focus { outline: none; }
.step-sub {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0 0 24px;
}

/* indicateur d'étapes */
.steps-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.step { display: flex; align-items: center; gap: 8px; }
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(32,29,23,.3);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-family: var(--sans);
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.step-label {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .02em;
  transition: color .2s;
}
.step.is-active .step-num { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }
.step.is-active .step-label { color: var(--text-dark); }
.step.is-done .step-num { background: var(--green); border-color: var(--green); color: var(--cream); }
.step-line { flex: 1; height: 1px; background: rgba(32,29,23,.18); }

/* champs */
.field-group { margin-bottom: 20px; }
.field-group > label,
.field-label {
  display: block;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.req { color: var(--gold); }
.field-group input[type="text"],
.field-group input[type="tel"],
.field-group input[type="email"],
.field-group input[type="date"],
.field-group textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .95rem;
  padding: 11px 12px;
  border: 1px solid rgba(32,29,23,.25);
  background: #fff;
  border-radius: 8px;
  color: var(--text-dark);
  transition: border-color .15s, box-shadow .15s;
}
.field-group input:focus, .field-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,90,.18);
}
.field-group input[aria-invalid="true"],
.field-group textarea[aria-invalid="true"] {
  border-color: var(--error);
}
.field-group input[aria-invalid="true"]:focus,
.field-group textarea[aria-invalid="true"]:focus {
  box-shadow: 0 0 0 3px rgba(168,64,44,.16);
}
.field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--error);
  margin: 7px 0 0;
}
.field-error[hidden] { display: none; }
.field-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--error);
  color: #fff;
  font-size: .68rem;
  font-family: var(--sans);
  flex-shrink: 0;
}
.field-hint { font-size: .82rem; color: var(--text-muted); margin: 8px 0 0; }
.form-note { font-size: .78rem; color: var(--text-muted); margin: -6px 0 20px; }

/* compteur de personnes */
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(32,29,23,.25);
  border-radius: 24px;
  padding: 6px 10px;
}
.stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(32,29,23,.3);
  background: #fff;
  color: var(--text-dark);
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
}
.stepper-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.stepper-btn:disabled { opacity: .35; cursor: not-allowed; }
.stepper-value { font-family: var(--serif); font-size: 1.2rem; min-width: 18px; text-align: center; }

/* créneaux horaires */
.time-slots-wrap { display: grid; gap: 16px; }
.time-slots-wrap[hidden] { display: none; }
.time-slots-label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.time-slot {
  border: 1px solid rgba(32,29,23,.25);
  background: #fff;
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: .85rem;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .1s;
}
.time-slot:hover { border-color: var(--gold); }
.time-slot:active { transform: scale(.95); }
.time-slot[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream);
}

.step-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: .88rem;
  padding: 10px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
}
.btn-text:hover { color: var(--text-dark); }

/* bouton avec état de chargement */
.btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(15,30,21,.3);
  border-top-color: var(--green-dark);
  animation: spin .7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading { cursor: progress; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn-spinner { animation: none; border-top-color: rgba(15,30,21,.3); }
}

/* succès */
.modal-success { text-align: center; padding-top: 6px; }
.modal-success p { margin: 0 0 10px; }
.modal-success .text-muted.small { font-size: .78rem; margin-top: 14px; }
.modal-success #closeSuccess { margin-top: 18px; }
.success-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  margin: 0 auto 18px;
}
.success-check svg path {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  animation: draw .4s ease .15s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .success-check svg path { stroke-dashoffset: 0; animation: none; }
}
.success-check {
  animation: pop .3s ease;
}
@keyframes pop { from { transform: scale(.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .success-check { animation: none; }
}

/* transition entre étapes */
@media (prefers-reduced-motion: no-preference) {
  .step-panel.panel-anim {
    animation: panelIn .3s ease both;
  }
}
@keyframes panelIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- pages « bientôt disponible » / maintenance --- */
.status-hero { min-height: 100vh; }
.status-hero .eyebrow { color: var(--gold-light); }
.status-divider { margin: 4px auto 24px; max-width: 220px; }
.status-divider .diamond { width: 7px; height: 7px; }
.status-hero .hero-tagline { max-width: 480px; margin-left: auto; margin-right: auto; }
.status-contact {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.status-address {
  margin: 0;
  color: var(--cream-2);
  font-size: .92rem;
  letter-spacing: .03em;
}

.status-hero .summary-divider,
.status-hero .eyebrow,
.status-contact {
  opacity: 0;
  animation: heroIn .9s ease forwards;
}
.status-hero .summary-divider { animation-delay: .25s; }
.status-hero .eyebrow { animation-delay: .4s; }
.status-hero .hero-tagline { animation-delay: .55s; }
.status-contact { animation-delay: .75s; }
@media (prefers-reduced-motion: reduce) {
  .status-hero .summary-divider, .status-hero .eyebrow, .status-contact { animation: none; opacity: 1; transform: none; }
}
