/* =========================================================
   DAJOLL HÔTEL — Feuille de style (thème lumineux)
   Inspiration : Hôtel du Collectionneur (Art Déco clair)
   Type : Fraunces (display, heritage) + Archivo (sans)
   ========================================================= */

:root {
  --ivory:   #F7F2E9;   /* fond principal, ivoire chaud */
  --ivory-2: #FCFAF4;   /* surfaces claires */
  --sand:    #EFE7D8;   /* sections alternées */
  --ink:     #221E18;   /* texte principal */
  --ink-soft:#6E6459;   /* texte secondaire */
  --gold:    #B0873B;   /* accent or, lisible sur clair */
  --gold-soft:#C9A15A;  /* or décoratif */
  --line:    #E3D9C7;   /* filets */
  --dark:    #17130E;   /* sections sombres (footer, overlays) */
  --cream:   #F3ECE0;   /* texte sur fond sombre */
  --wa:      #1EA65A;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Archivo", "Helvetica Neue", system-ui, sans-serif;

  --pad-section: clamp(4.5rem, 9vw, 8.5rem);
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

/* ---------- Utilitaires ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--gold); opacity: .6; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 2.2rem; height: 1px; background: var(--gold); opacity: .6; }
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before, .eyebrow.on-dark.center::after { background: var(--gold-soft); }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-top: 1.1rem;
  max-width: 24ch;
  letter-spacing: 0.01em;
}
.section-title .it { font-style: italic; color: var(--gold); }

.lead { color: var(--ink-soft); font-size: clamp(1.02rem, 2vw, 1.18rem); max-width: 56ch; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: 2px; cursor: pointer;
  border: 1px solid var(--gold); background: var(--gold); color: #fff;
  transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: transparent; border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--ghost.on-dark { color: var(--cream); border-color: rgba(243,236,224,.4); }
.btn--ghost.on-dark:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn--wa { background: var(--wa); border-color: var(--wa); color: #fff; }
.btn--wa:hover { background: #17904c; border-color: #17904c; }

/* Filet ornemental */
.flourish { display: flex; align-items: center; justify-content: center; gap: 1rem; color: var(--gold); }
.flourish::before, .flourish::after { content: ""; height: 1px; width: min(28vw, 220px); background: linear-gradient(90deg, transparent, var(--line)); }
.flourish::after { background: linear-gradient(90deg, var(--line), transparent); }
.flourish svg { width: 24px; height: 24px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem var(--gutter);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.nav.scrolled {
  background: rgba(247, 242, 233, 0.94);
  backdrop-filter: blur(10px);
  padding-block: 0.7rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand img { height: 50px; width: auto; transition: height .4s ease; filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
.nav.scrolled .nav__brand img { height: 42px; filter: none; }
.nav__links {
  display: flex; gap: 2.1rem; list-style: none; margin: 0; padding: 0;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
}
.nav__links a { color: var(--cream); position: relative; padding-block: 0.3rem; transition: color .3s ease; }
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s ease; }
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: inline-flex; }
.nav .nav__cta { color: var(--cream); border-color: rgba(243,236,224,.5); }
.nav.scrolled .nav__cta { color: var(--ink); border-color: var(--line); }
.nav .nav__cta:hover { border-color: var(--gold-soft); color: var(--gold-soft); }

.nav__burger { display: none; position: relative; z-index: 70; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 0.4rem; }
.nav.scrolled .nav__burger { color: var(--ink); }
.nav__burger svg { width: 28px; height: 28px; }

/* Menu déroulant "Réserver" (chambre / table / salle) */
.nav__reserve { position: relative; }
.nav__cta { gap: 0.5rem; }
.nav__caret { width: 15px; height: 15px; transition: transform .3s ease; }
.nav__reserve.open .nav__caret { transform: rotate(180deg); }
.reserve-menu {
  position: absolute; top: calc(100% + 0.7rem); right: 0;
  min-width: 310px;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 26px 60px rgba(23,19,14,.22);
  padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
  z-index: 60;
}
.nav__reserve.open .reserve-menu { opacity: 1; visibility: visible; transform: none; }
.reserve-menu__item {
  display: flex; align-items: center; gap: 0.95rem;
  padding: 0.85rem 0.9rem; border-radius: 2px; color: var(--ink);
  transition: background .25s ease;
}
.reserve-menu__item + .reserve-menu__item { border-top: 1px solid var(--line); }
.reserve-menu__item:hover { background: var(--sand); }
.reserve-menu__item svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.rm-title { display: block; font-family: var(--serif); font-size: 1.08rem; line-height: 1.1; }
.rm-sub { display: block; font-size: 0.74rem; color: var(--ink-soft); letter-spacing: 0.03em; margin-top: 0.15rem; }

/* =========================================================
   HERO (vidéo, épuré)
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; text-align: center; overflow: hidden; background: var(--dark); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.66) contrast(1.04) saturate(0.92);
}
.hero__media img { animation: kenburns 22s ease-out forwards; }
.hero__media video { position: absolute; inset: 0; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(23,19,14,.1) 0%, rgba(23,19,14,.45) 70%, rgba(23,19,14,.8) 100%),
    linear-gradient(180deg, rgba(23,19,14,.45) 0%, rgba(23,19,14,.1) 35%, rgba(23,19,14,.75) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; max-width: 60rem; margin-inline: auto; display: flex; flex-direction: column; align-items: center; color: var(--cream); }
.hero__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.9rem, 8.5vw, 6.6rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  text-shadow: 0 2px 50px rgba(0,0,0,.5);
}
.hero__title { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.2rem, 3vw, 2.1rem); color: var(--gold-soft); margin-top: 1.1rem; max-width: 26ch; }
.hero__scroll { margin-top: 2.8rem; display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem; font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(243,236,224,.75); }
.hero__scroll::after { content: ""; width: 1px; height: 2.6rem; background: var(--gold-soft); animation: pulse 2.4s ease-in-out infinite; transform-origin: top; }
@keyframes pulse { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }
@media (prefers-reduced-motion: reduce) { .hero__scroll::after { animation: none; } }

/* =========================================================
   BARRE DE DISPONIBILITÉ (bande claire, façon Collectionneur)
   ========================================================= */
.avail { background: var(--ivory-2); border-bottom: 1px solid var(--line); }
.avail__bar {
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: repeat(3, 1fr) auto; align-items: stretch;
}
.avail__field { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.15rem clamp(1rem, 2.5vw, 2rem); border-right: 1px solid var(--line); }
.avail__field:first-child { padding-left: var(--gutter); }
.avail__field label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.avail__field input, .avail__field select { background: transparent; border: 0; color: var(--ink); font-family: var(--sans); font-size: 0.98rem; padding: 0.1rem 0; cursor: pointer; }
.avail__field input:focus, .avail__field select:focus { outline: none; color: var(--gold); }
.avail__submit {
  border: 0; background: var(--gold); color: #fff;
  font-family: var(--sans); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding-inline: clamp(1.4rem, 3vw, 2.4rem); cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap;
  transition: background .3s ease;
}
.avail__submit:hover { background: var(--ink); }
.avail__submit svg { width: 18px; height: 18px; }

@media (max-width: 900px) {
  .avail__bar { grid-template-columns: 1fr 1fr; }
  .avail__field:first-child { padding-left: clamp(1rem,2.5vw,2rem); }
  .avail__field { border-bottom: 1px solid var(--line); }
  .avail__submit { grid-column: 1 / -1; padding-block: 1.1rem; }
}
@media (max-width: 520px) { .avail__bar { grid-template-columns: 1fr; } .avail__field { border-right: 0; } }

/* =========================================================
   INTRO / HISTOIRE
   ========================================================= */
.story { padding-block: var(--pad-section); background: var(--ivory); }
.story__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.story__quote { font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.28; font-weight: 300; color: var(--ink); }
.story__quote .it { font-style: italic; color: var(--gold); }
.story__text { color: var(--ink-soft); margin-top: 1.5rem; }
.story__media { position: relative; }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 2px; }
.story__media::after { content: ""; position: absolute; inset: 14px; border: 1px solid var(--gold-soft); opacity: .5; pointer-events: none; }
.stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem); margin-top: 3rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); line-height: 1; }
.stat__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.5rem; }

/* =========================================================
   PANNEAUX CHAMBRES (image découpée en colonnes, façon Collectionneur)
   ========================================================= */
.panels { background: var(--ivory); padding-top: var(--pad-section); }
.panels__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); padding-inline: var(--gutter); text-align: center; }

/* Scène : UNE seule image plein cadre qui change selon la catégorie survolée.
   Les zones (libellés) ne bougent jamais. */
.panels__stage { position: relative; height: clamp(460px, 74vh, 780px); width: 100%; overflow: hidden; background: var(--dark); }
.panels__slides { position: absolute; inset: 0; }
.panels__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .8s ease; }
.panels__slide.is-active { opacity: 1; }
.panels__overlay { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(23,19,14,.15) 0%, rgba(23,19,14,0) 35%, rgba(23,19,14,.72) 100%); }

/* Zones fixes, transparentes, posées sur l'image */
.panels__zones { position: absolute; inset: 0; display: flex; z-index: 2; }
.panel {
  flex: 1 1 0%; position: relative; border: 0; background: transparent; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start;
  text-align: left; padding: clamp(1.4rem, 3vw, 2.4rem); color: var(--cream);
  border-right: 1px solid rgba(255,255,255,.28);
}
.panel:last-child { border-right: 0; }
.panel__cat { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.7rem); letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.12; text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.panel__more { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.9rem;
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft);
  opacity: 0; transform: translateY(6px); transition: opacity .4s ease, transform .4s ease; }
.panel__more::after { content: "\2192"; }
.panel.is-active .panel__more, .panel:hover .panel__more { opacity: 1; transform: none; }
.panels__note { max-width: var(--maxw); margin: 1.6rem auto 0; padding-inline: var(--gutter); font-size: 0.82rem; color: var(--ink-soft); text-align: center; }

@media (max-width: 820px) {
  /* Mobile : chaque zone redevient une bande avec sa propre photo empilée */
  .panels__stage { height: auto; }
  .panels__slides, .panels__overlay { display: none; }
  .panels__zones { position: static; flex-direction: column; }
  .panel { flex: none; height: 210px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28);
    background-image: linear-gradient(180deg, rgba(23,19,14,.15) 40%, rgba(23,19,14,.78) 100%), var(--bg);
    background-size: cover; background-position: center; }
  .panel__more { opacity: 1; transform: none; }
}

/* =========================================================
   FEATURES — bandes pleine largeur en alternance
   ========================================================= */
.feature { position: relative; min-height: 88svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; background: var(--dark); }
.feature__img { position: absolute; inset: 0; z-index: -2; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.72) contrast(1.03) saturate(0.9); transition: transform 8s ease-out; }
.feature.in .feature__img img { transform: scale(1.07); }
.feature::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(23,19,14,.25) 0%, rgba(23,19,14,0) 30%, rgba(23,19,14,.85) 100%); }
.feature__body { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); padding-bottom: clamp(3rem, 7vw, 6rem); color: var(--cream); }
.feature__inner { max-width: 34rem; }
.feature--right .feature__inner { margin-left: auto; }
.feature__title { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.02; margin-top: 0.8rem; }
.feature__title .it { font-style: italic; color: var(--gold-soft); }
.feature__text { color: rgba(243,236,224,.88); margin-top: 1.1rem; font-size: clamp(1rem, 1.6vw, 1.12rem); max-width: 40ch; }
.feature__link { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.7rem; font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); border-bottom: 1px solid var(--gold-soft); padding-bottom: 0.4rem; transition: gap .3s ease, color .3s ease; }
.feature__link:hover { gap: 1rem; color: var(--gold-soft); }
/* Statut ouvert/fermé (piscine) — pilotable depuis l'ERP plus tard via data-status */
.feature__status { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.7rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); }
.feature__dot { width: 9px; height: 9px; border-radius: 50%; background: #4CAF6E; box-shadow: 0 0 0 4px rgba(76,175,110,.2); }
.feature__status[data-status="closed"] .feature__dot { background: #C0563C; box-shadow: 0 0 0 4px rgba(192,86,60,.2); }

/* =========================================================
   SERVICES / EXPÉRIENCES (grille claire)
   ========================================================= */
.exp { padding-block: var(--pad-section); background: var(--sand); }
.exp__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.card { position: relative; overflow: hidden; border-radius: 2px; min-height: 380px; display: flex; align-items: flex-end; isolation: isolate; }
.card__img { position: absolute; inset: 0; z-index: -1; }
.card__img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.82) saturate(0.92); transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(23,19,14,0) 40%, rgba(23,19,14,.9) 100%); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: clamp(1.4rem, 3vw, 2rem); color: var(--cream); }
.card__kicker { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }
.card__title { font-size: clamp(1.35rem, 2.4vw, 1.8rem); margin-top: 0.4rem; }
.card__text { color: rgba(243,236,224,.85); font-size: 0.92rem; margin-top: 0.6rem; }

/* =========================================================
   BANDEAU RÉSERVER (image sombre)
   ========================================================= */
.reserve { position: relative; padding-block: clamp(5rem, 10vw, 8rem); text-align: center; overflow: hidden; color: var(--cream); }
.reserve__bg { position: absolute; inset: 0; z-index: -1; }
.reserve__bg img { width: 100%; height: 100%; object-fit: cover; }
.reserve__bg::after { content: ""; position: absolute; inset: 0; background: rgba(23,19,14,.78); }
.reserve__title { font-size: clamp(2rem, 5vw, 3.4rem); margin: 1.2rem auto 0; max-width: 20ch; }
.reserve__actions { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.reserve__note { margin-top: 1.6rem; color: rgba(243,236,224,.7); font-size: 0.85rem; }

/* =========================================================
   GALERIE (mosaïque + lightbox)
   ========================================================= */
.gallery { padding-block: var(--pad-section); background: var(--ivory); }
.gallery__grid { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(120px, 15vw, 190px); grid-auto-flow: dense; gap: 12px; }
.gallery__grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 2px; cursor: pointer; }
.gallery__grid figure.wide { grid-column: span 2; }
.gallery__grid figure.tall { grid-row: span 2; }
.gallery__grid figure.big { grid-column: span 2; grid-row: span 2; }
.gallery__grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.gallery__grid figure:hover img { transform: scale(1.07); filter: saturate(1.08); }
.gallery__grid figcaption { position: absolute; left: 1rem; bottom: 0.9rem; right: 1rem; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .4s ease, transform .4s ease; text-shadow: 0 1px 12px rgba(0,0,0,.7); pointer-events: none; }
.gallery__grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,19,14,0) 55%, rgba(23,19,14,.75) 100%); opacity: 0; transition: opacity .4s ease; pointer-events: none; }
.gallery__grid figure:hover figcaption { opacity: 1; transform: none; }
.gallery__grid figure:hover::after { opacity: 1; }

/* =========================================================
   LIGHTBOX & MODALES (fond sombre)
   ========================================================= */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15,12,8,0.95); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 2px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__btn { position: absolute; background: none; border: 1px solid rgba(243,236,224,.4); color: var(--cream); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; transition: border-color .3s ease, color .3s ease; }
.lightbox__btn:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.78rem; letter-spacing: 0.18em; color: rgba(243,236,224,.7); }
@media (max-width: 600px) { .lightbox__prev { left: 0.7rem; } .lightbox__next { right: 0.7rem; } }

/* Modale (chambre + résultat de disponibilité) */
.modal { position: fixed; inset: 0; z-index: 110; background: rgba(15,12,8,.72); display: none; align-items: center; justify-content: center; padding: 1.2rem; }
.modal.open { display: flex; }
.modal__box { background: var(--ivory-2); color: var(--ink); border-radius: 3px; max-width: 720px; width: 100%; max-height: 90vh; overflow: auto; box-shadow: 0 40px 100px rgba(0,0,0,.5); position: relative; }
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 2; background: rgba(255,255,255,.85); border: 1px solid var(--line); color: var(--ink); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.modal__close:hover { border-color: var(--gold); color: var(--gold); }
.modal__close svg { width: 20px; height: 20px; }
.modal__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.modal__body { padding: clamp(1.5rem, 4vw, 2.4rem); }
.modal__cat { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.modal__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 0.4rem; }
.modal__desc { color: var(--ink-soft); margin-top: 0.9rem; }
.modal__price { font-family: var(--serif); font-size: 1.7rem; color: var(--gold); margin-top: 1.2rem; }
.modal__price small { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--ink-soft); text-transform: uppercase; }
.modal__meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.modal__meta span { font-size: 0.78rem; padding: 0.4rem 0.85rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft); }
.modal__actions { margin-top: 1.8rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Parcours de réservation (stepper façon moteur) */
.modal__box--wide { max-width: 920px; }
.flow__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: clamp(1.2rem, 3vw, 1.7rem) clamp(1.5rem, 4vw, 2.4rem); border-bottom: 1px solid var(--line); }
.flow__recap { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.flow__steps { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); counter-reset: st; }
.flow__steps li { counter-increment: st; }
.flow__steps li::before { content: counter(st) ". "; color: var(--gold); }
.flow__steps li.is-active { color: var(--ink); }
.flow__panel { padding: clamp(1.5rem, 4vw, 2.4rem); }
.flow__rooms { display: grid; gap: 0.9rem; margin-top: 1.4rem; }
.flow__room { display: flex; gap: 1.2rem; align-items: center; border: 1px solid var(--line); border-radius: 3px;
  padding: 0.8rem; transition: border-color .25s ease, box-shadow .25s ease; }
.flow__room:hover { border-color: var(--gold); box-shadow: 0 12px 30px rgba(23,19,14,.08); }
.flow__room img { width: 140px; height: 100px; object-fit: cover; border-radius: 2px; flex: none; }
.flow__room__info { flex: 1; min-width: 0; }
.flow__room__name { font-family: var(--serif); font-size: 1.25rem; }
.flow__room__meta { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.25rem; }
.flow__room__price { text-align: right; flex: none; }
.flow__room__amount { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); }
.flow__room__per { font-size: 0.68rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.15rem; }
.flow__room__btn { margin-top: 0.6rem; padding: 0.7rem 1.4rem; }
.flow__back { background: none; border: 0; color: var(--ink-soft); cursor: pointer; font-size: 0.82rem; letter-spacing: 0.06em; padding: 0; margin-bottom: 1.1rem; }
.flow__back:hover { color: var(--gold); }
.flow__grid { display: grid; grid-template-columns: 1fr 300px; gap: clamp(1.5rem, 4vw, 2.5rem); }
.flow__summary { background: var(--sand); border-radius: 3px; padding: 1.5rem; align-self: start; }
.flow__summary h4 { font-family: var(--serif); font-size: 1.25rem; margin-bottom: 0.9rem; }
.flow__summary dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.45rem 0.8rem; font-size: 0.88rem; }
.flow__summary dt { color: var(--ink-soft); }
.flow__summary dd { margin: 0; text-align: right; }
.flow__summary .total { margin-top: 1.1rem; padding-top: 0.9rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.flow__summary .total b { font-family: var(--serif); font-size: 1.45rem; color: var(--gold); }
.flow__success { text-align: center; padding: 2.5rem 1rem; }
.flow__success .btn { margin-top: 1.6rem; }
/* Restaurant : date/personnes + créneaux */
.resto__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.3rem; }
.resto__slots { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.5rem; }
.resto__slot { border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 100px;
  padding: 0.5rem 1.05rem; font-size: 0.85rem; font-family: var(--sans); cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.resto__slot:hover { border-color: var(--gold); }
.resto__slot.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }
.resto__slot--label { border: 0; background: none; color: var(--ink-soft); cursor: default; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; padding-left: 0; width: 100%; margin-top: 0.4rem; }
#restoNext { margin-top: 1.7rem; }
@media (max-width: 600px) { .resto__fields { grid-template-columns: 1fr; } }
@media (max-width: 720px) {
  .flow__grid { grid-template-columns: 1fr; }
  .flow__summary { order: -1; }
  .flow__room { flex-wrap: wrap; }
  .flow__room img { width: 100%; height: 160px; }
  .flow__room__price { text-align: left; width: 100%; }
}

/* Résultat de disponibilité */
.result__status { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem); }
.result__status.ok { color: #2E7D46; }
.result__status.no { color: #A2472F; }
.result__line { color: var(--ink-soft); margin-top: 0.8rem; }
.result__badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 1.2rem; }
.result__note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }

/* =========================================================
   AVIS
   ========================================================= */
.reviews { padding-block: var(--pad-section); background: var(--ivory-2); }
.reviews__head { text-align: center; }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.review { background: var(--ivory); border: 1px solid var(--line); border-radius: 2px; padding: 1.8rem; }
.review__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.9rem; }
.review__text { font-family: var(--serif); font-size: 1.15rem; line-height: 1.5; margin-top: 1rem; font-weight: 300; color: var(--ink); }
.review__author { margin-top: 1.4rem; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--ink-soft); text-transform: uppercase; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding-block: var(--pad-section); background: var(--ivory); }
.contact__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); }
.contact__list { list-style: none; margin: 2.2rem 0 0; padding: 0; display: grid; gap: 1.6rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__list svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }
.contact__k { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.contact__v { font-size: 1.05rem; color: var(--ink); }
.contact__v a:hover { color: var(--gold); }
.contact__socials { display: flex; gap: 1rem; margin-top: 2.4rem; }
.contact__socials a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); transition: border-color .3s ease, color .3s ease, transform .3s ease; }
.contact__socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.contact__socials svg { width: 18px; height: 18px; }

.form { background: var(--ivory-2); border: 1px solid var(--line); border-radius: 2px; padding: clamp(1.6rem, 4vw, 2.6rem); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea { width: 100%; background: #fff; border: 1px solid var(--line); border-radius: 2px; color: var(--ink); font-family: var(--sans); font-size: 0.95rem; padding: 0.85rem 0.9rem; transition: border-color .3s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 96px; }
.form__note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.4rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* =========================================================
   FOOTER (sombre)
   ========================================================= */
.footer { background: var(--dark); color: var(--cream); border-top: 3px solid var(--gold); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__brand img { height: 56px; margin-bottom: 1.2rem; }
.footer__brand p { color: rgba(243,236,224,.7); font-size: 0.9rem; max-width: 34ch; }
.footer h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.2rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; font-size: 0.92rem; color: rgba(243,236,224,.7); }
.footer ul a:hover { color: var(--cream); }
.footer__bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(243,236,224,.15); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: rgba(243,236,224,.55); }

/* =========================================================
   RÉVÉLATIONS + FLOTTANT
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

.wa-float { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 40; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.28); transition: transform .3s ease; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .feature { min-height: 74svh; }
  .feature__inner, .feature--right .feature__inner { max-width: none; margin: 0; }
  .story__grid { grid-template-columns: 1fr; }
  .story__media { order: -1; max-width: 460px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__reserve { margin-left: auto; margin-right: 0.4rem; }
  .reserve-menu { min-width: min(310px, 84vw); }
  .nav.open .nav__links {
    display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh; height: 100svh; z-index: 60;
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    background: var(--ivory); font-size: 1.25rem;
  }
  .nav.open .nav__links a { color: var(--ink); }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid figure.big { grid-column: span 2; grid-row: span 1; }
}
