/* Palais Zoya — Concept 1 "Dar Al Assad inspired". Mobile-first. */

:root {
  /* Palette alignée sur le dashboard zoya0 (charcoal sobre + orange) */
  --sand: #f7e6d6;
  --sand-deep: #f7e6d6;
  --ink: #242220;
  --ink-soft: #565149;
  --ruby: #c45930;         /* accent = orange du logo */
  --ruby-dark: #a74c29;
  --ruby-light: #e08a68;
  /* Plus de doré sur le site : les libellés qui l'utilisaient (kicker, étoiles,
     eyebrow des cartes) reprennent l'orange du logo. La variable est conservée
     pour ne pas avoir à réécrire les dizaines de règles qui s'y réfèrent. */
  --gold: #c45930;
  --emerald: #275c48;
  --amethyst: #5a3f66;
  --white: #ffffff;
  --line: #f7e6d6;
  --shadow: 0 20px 50px rgba(36, 34, 32, 0.12);
  --container: 1180px;
  --radius: 2px;
}

* { box-sizing: border-box; }
/* `clip` bloque le défilement horizontal SANS créer de conteneur de
   défilement — contrairement à `hidden`, qui casse tout position:sticky
   descendant (colonne latérale des articles). Repli pour vieux navigateurs. */
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--sand);
  color: var(--ink);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
/* Titres : Montserrat Bold (graisse 700).
   Le gras remplit davantage : on resserre légèrement l'interlettrage, sinon
   les mots paraissent délavés, et on réduit l'interligne pour compacter les
   titres sur deux lignes. Heebo assure l'hébreu, absent de Montserrat. */
h1, h2, h3, h4 {
  font-family: "Montserrat", "Heebo", -apple-system, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.16;
  margin: 0;
  color: var(--ink);
}
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-family: "Heebo", "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
p { margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 0; top: -100px;
  background: var(--ruby); color: #fff; padding: 12px 20px; z-index: 200;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.kicker {
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; border: 1px solid transparent; border-radius: var(--radius);
  transition: all .25s ease; white-space: nowrap;
}
.btn-primary { background: var(--ruby); color: #fff; }
.btn-primary:hover { background: var(--ruby-dark); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.75); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.discount-bar {
  background: var(--ink); color: var(--sand); text-align: center;
  font-size: 0.78rem; letter-spacing: 0.05em; padding: 9px 16px;
}
.discount-bar strong { color: var(--gold); }
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--sand); border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }
@media (min-width: 640px) { .nav-row { height: 76px; } }
.logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: clamp(1.15rem, 4.5vw, 1.55rem);
  letter-spacing: 0.02em; color: var(--ink); white-space: nowrap;
}
/* Brand mark = the real Z monogram from the client logo */
.logo-z { width: 1.62em; height: 1.62em; display: block; flex: none; object-fit: contain; }
.site-footer .logo-z { color: var(--ruby); }
/* Full stacked logo (footer) */
.footer-logo { display: inline-block; }
.footer-logo img { width: 152px; max-width: 60vw; height: auto; display: block; }
.nav-links { display: none; gap: 2.1rem; align-items: center; }
.nav-links > a {
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); padding-bottom: 4px; border-bottom: 1px solid transparent;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--ruby); border-color: var(--ruby); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-book-btn { display: none; }
.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; background: none; padding: 0; color: var(--ink);
  min-width: 44px; min-height: 44px; flex-shrink: 0;
}
.hamburger svg { width: 24px; height: 24px; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-book-btn { display: inline-flex; }
}

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(20,16,14,.55);
  z-index: 98; opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(78vw, 320px);
  background: var(--sand); z-index: 99; box-shadow: var(--shadow);
  padding: 24px 28px calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; gap: 26px;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(100%); transition: transform .3s ease;
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-backdrop { opacity: 1; pointer-events: auto; }
body.drawer-open { overflow: hidden; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; }
.drawer-close { border: none; background: none; padding: 4px; }
.drawer-close svg { width: 22px; height: 22px; }
.drawer-links { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.drawer-links a { font-size: 0.94rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.drawer .btn { margin-top: auto; }
@media (min-width: 1024px) { .drawer, .drawer-backdrop { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 80vh; min-height: 80svh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,16,14,.4) 0%, rgba(20,16,14,.15) 45%, rgba(20,16,14,.6) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 20px; max-width: 720px; }
.hero-content .kicker { color: var(--sand-deep); margin-bottom: 16px; display: block; }
.hero-content h1 { font-size: clamp(2.1rem, 7vw, 3.8rem); color: #fff; margin-bottom: 18px; font-style: italic; }
.hero-content .lede { font-size: 1.05rem; opacity: .92; max-width: 480px; margin: 0 auto 32px; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.hero-ctas .btn { width: 100%; }
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
  .hero-ctas .btn { width: auto; }
}

/* ---------- Sections generic ---------- */
section { padding: 60px 0; }
.section-alt { background: var(--sand-deep); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); margin-top: 10px; font-style: italic; }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.02rem; }
@media (min-width: 1024px) { section { padding: 110px 0; } }

/* ---------- Triptych banner ---------- */
.triptych { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2px; background: var(--line); }
.triptych-cell { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.triptych-cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
.triptych-cell.is-text { display: flex; align-items: center; justify-content: center; }
.triptych-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(196,89,48,.90), rgba(167,76,41,.93));
}
.triptych-content { position: relative; z-index: 2; color: #fff; text-align: center; padding: 40px 32px; }
.triptych-content .kicker { color: var(--sand-deep); margin-bottom: 16px; display: block; }
.triptych-content h2 {
  font-size: clamp(1.4rem, 4.5vw, 1.9rem); color: #fff; font-style: italic;
  line-height: 1.35; margin-bottom: 22px;
}
.triptych-content a {
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.6);
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; padding-bottom: 4px;
}
.triptych-content a:hover { border-color: #fff; }
@media (min-width: 900px) {
  .triptych { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr); }
  .triptych-cell { aspect-ratio: auto; height: 560px; }
}

/* ---------- Story split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
.split-media { position: relative; width: 100%; padding-top: 120%; overflow: hidden; }
.split-media img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.split-copy p { color: var(--ink-soft); margin-top: 20px; font-size: 1.02rem; }
.split-copy h3 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin-top: 10px; font-style: italic; }
.text-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--ruby);
  border-bottom: 1px solid var(--ruby); font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding-bottom: 4px; margin-top: 24px;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 64px; }
  .split.reverse { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }
  .split.reverse .split-media { order: 2; }
}

/* ═══ PAGE QUI OUVRE SUR UN SPLIT (sans hero) ═══
   Le header est opaque et collant : il faut lui laisser sa hauteur, sinon le
   titre passe dessous. */
/* Photos horizontales. Le cadre par défaut de `.split-media` est en portrait
   (120 %), pensé pour les photos verticales de l'accueil ; les photos du riad
   sont en 3:2 et s'y retrouvaient rognées de moitié. 66,7 % = exactement leur
   proportion, donc aucun recadrage. */
.split-media.is-wide { padding-top: 66.7%; }

.page-open { padding-top: 48px; }
@media (min-width: 1024px) { .page-open { padding-top: 76px; } }
.split-copy h1 { font-size: clamp(1.9rem, 4.6vw, 2.8rem); margin-top: 12px; }
.split-title { font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin-top: 10px; }
.open-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ═══ MENU DÉROULANT « ÉVÉNEMENTS » ═══
   Ouvert au survol ET au clic : le survol suffit à la souris, le clic rend
   l'entrée utilisable au clavier et sur les écrans tactiles hybrides. */
.nav-drop { position: relative; display: inline-flex; align-items: center; }
.nav-drop-btn {
  display: inline-flex; align-items: center; gap: 5px; background: none; border: none;
  padding: 0; cursor: pointer; font: inherit; color: inherit;
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
/* Le bouton reprend la mise en forme des entrees de premier niveau : elle
   vivait sur `.nav-links a`, qui ne le concerne pas (ce n est pas un lien). */
.nav-links .nav-drop-btn { font-family: inherit; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); padding-bottom: 4px; }
.nav-drop-btn:hover, .nav-drop.is-open .nav-drop-btn { color: var(--ruby); border-color: var(--ruby); }
.nav-caret { width: 13px; height: 13px; opacity: .6; transition: transform .2s; }
.nav-drop.is-open .nav-caret { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 244px; margin: 0; padding: 7px; list-style: none;
  background: var(--white, #fff); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 20px 46px rgba(36,34,32,.17); z-index: 70; display: none;
}
.nav-drop:hover .nav-drop-menu, .nav-drop.is-open .nav-drop-menu { display: block; }
/* Bande invisible entre le bouton et le menu : sans elle, le menu se referme
   quand la souris traverse l'espace vide. */
.nav-drop-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav-drop-menu a {
  display: block; padding: 10px 12px; border-radius: 7px; font-size: .84rem;
  letter-spacing: 0; text-transform: none; color: var(--ink); white-space: nowrap;
}
.nav-drop-menu a:hover { background: var(--sand-deep, #f7e6d6); color: var(--ruby); }
.nav-drop-menu li:last-child a { border-top: 1px solid var(--line); border-radius: 0 0 7px 7px; margin-top: 4px; padding-top: 12px; font-weight: 600; }
body.room-page .site-header .nav-drop-btn { color: rgba(255,255,255,.82); }
body.room-page .site-header .nav-drop-btn:hover { color: #fff; border-color: var(--gold); }
body.room-page .site-header.is-scrolled .nav-drop-btn { color: var(--ink-soft); }
body.room-page .site-header.is-scrolled .nav-drop-btn:hover { color: var(--ruby); border-color: var(--ruby); }

/* Sous-entrées du tiroir mobile */
.drawer-group {
  display: block; margin-top: 18px; font-family: "Work Sans", sans-serif; font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase; opacity: .55;
}
.drawer-links .drawer-sub { padding-left: 14px; font-size: .95rem; opacity: .92; }
[dir="rtl"] .drawer-links .drawer-sub { padding-left: 0; padding-right: 14px; }

/* ═══ PAGE CONTACT ═══ */
.ct-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 18px; }
.ct-list li { display: flex; gap: 13px; align-items: flex-start; }
.ct-list svg { width: 19px; height: 19px; color: var(--ruby); flex: none; margin-top: 2px; }
.ct-list span { display: block; color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }
.ct-list b { display: block; color: var(--ink); font-family: "Work Sans", sans-serif; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 4px; }
.ct-list a { color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.ct-list a:hover { color: var(--ruby); border-color: var(--ruby); }
.ct-form { max-width: 720px; margin: 0 auto; }
.ct-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 760px) { .ct-row { grid-template-columns: 1fr 1fr; } }
.ct-f { display: block; margin-bottom: 16px; }
.ct-f > span { display: block; font-family: "Work Sans", sans-serif; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.ct-f > span i { font-style: normal; opacity: .6; letter-spacing: .06em; }
.ct-f input, .ct-f textarea {
  width: 100%; font: inherit; font-size: .96rem; padding: 12px 14px;
  border: 1px solid var(--ink-soft); background: var(--white); color: var(--ink);
  border-radius: 2px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.ct-f input:focus, .ct-f textarea:focus { border-color: var(--ruby); box-shadow: 0 0 0 3px rgba(196,89,48,.14); }
.ct-f textarea { resize: vertical; line-height: 1.6; }
.ct-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ct-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.ct-ok { max-width: 720px; margin: 0 auto; display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--ruby); padding: 22px 24px; }
.ct-ok svg { width: 24px; height: 24px; color: var(--ruby); flex: none; }
.ct-ok b { display: block; margin-bottom: 5px; }
.ct-ok span { color: var(--ink-soft); font-size: .95rem; }
.ct-err { max-width: 720px; margin: 0 auto 20px; background: var(--white); border-left: 3px solid var(--ruby); padding: 13px 16px; color: var(--ink); font-size: .95rem; }

/* Carte de prestation cliquable (pages services) */
.svc-card { color: inherit; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.svc-card:hover { border-color: var(--ruby); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(36,34,32,.12); }
.svc-card h3 { color: var(--ink); }

/* Étapes numérotées (réutilise la carte des prestations) */
.step-card { position: relative; }
.step-num {
  font-family: "Montserrat", sans-serif; font-size: 1.45rem; font-weight: 700;
  color: var(--ruby); line-height: 1; font-variant-numeric: tabular-nums;
}

/* ---------- Suite cards (gemstone accent) ---------- */
.rooms-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; }
.room-card { display: block; color: inherit; border-top: 3px solid var(--accent, var(--ruby)); }
.room-card-media { position: relative; width: 100%; padding-top: 100%; overflow: hidden; }
.room-card-media img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-card:hover .room-card-media img { transform: scale(1.06); }
.room-card-body { padding: 20px 4px 0; }
.room-price {
  position: absolute; top: 14px; right: 14px; background: rgba(245,243,240,.94);
  padding: 7px 14px; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent, var(--ruby));
}
.room-card h3 { font-size: 1.3rem; margin-bottom: 8px; font-style: italic; color: var(--accent, var(--ruby)); }
.room-card p { color: var(--ink-soft); font-size: 0.96rem; }
@media (min-width: 900px) { .rooms-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- Service highlights ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
}
.service-item {
  background: var(--white); border: 1px solid var(--line); padding: 24px 18px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
}
.service-item svg { width: 26px; height: 26px; color: var(--ruby); }
.service-item span { font-size: 0.84rem; letter-spacing: 0.02em; }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

/* ---------- Excursions ---------- */
.excursions-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
.excursion-card {
  background: var(--white); border: 1px solid var(--line); padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.excursion-card .kicker { color: var(--emerald); }
.excursion-card h3 { font-size: 1.2rem; font-style: italic; }
.excursion-card p { color: var(--ink-soft); font-size: 0.95rem; }
@media (min-width: 900px) { .excursions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- Bandeau temoignage ---------- */

.testimonial { text-align: center; }
.testimonial blockquote {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.8rem); line-height: 1.5; max-width: 700px; margin: 0 auto 20px;
}
.testimonial cite { font-style: normal; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.testimonial .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 3px; }

/* ---------- Footer ---------- */
.site-footer { padding: 60px 0 30px; background: var(--ink); color: var(--sand-deep); }
.site-footer .logo { color: var(--sand); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; text-align: center; }
.footer-brand p { color: var(--sand-deep); opacity: .8; max-width: 320px; margin: 0 auto; }
.footer-col h4 {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 16px; font-family: "Work Sans", sans-serif; font-weight: 600;
}
.footer-col a, .footer-col p { display: block; color: var(--sand-deep); opacity: .85; margin-bottom: 10px; font-size: 0.95rem; }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(235,231,225,.15); margin-top: 44px; padding-top: 24px;
  text-align: center; font-size: 0.76rem; letter-spacing: 0.08em; color: var(--sand-deep); opacity: .7;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); text-align: left; }
  .footer-brand p { margin: 0; }
}

/* ---------- Mobile sticky booking bar ---------- */
.mobile-book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(245,243,240,.97); border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; padding: 12px 20px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
}
.mobile-book-bar .price-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.mobile-book-bar .price { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; color: var(--ruby); }
@media (min-width: 1024px) { .mobile-book-bar { display: none; } }
.has-mobile-bar { padding-bottom: 76px; }
@media (min-width: 1024px) { .has-mobile-bar { padding-bottom: 0; } }

/* ---------- Suite detail page ---------- */
.suite-hero { position: relative; min-height: 62vh; min-height: 62svh; display: flex; align-items: flex-end; overflow: hidden; }
.suite-hero-content { position: relative; z-index: 2; color: #fff; padding-top: 32px; padding-bottom: 40px; width: 100%; }
.suite-hero-content .kicker { display: block; margin-bottom: 10px; color: var(--sand-deep); }
.suite-hero-content h1 { color: #fff; font-size: clamp(2.1rem, 6vw, 3.6rem); margin-bottom: 16px; font-style: italic; }
.suite-meta { display: flex; flex-wrap: wrap; gap: 20px; opacity: .92; }
.suite-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.92rem; }
.suite-meta svg { width: 18px; height: 18px; }
@media (min-width: 640px) {
  .suite-hero { min-height: 72vh; min-height: 72svh; }
  .suite-hero-content { padding-top: 48px; padding-bottom: 48px; }
  .suite-hero-content .kicker { margin-bottom: 14px; }
}

.suite-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 48px; }
.suite-desc p { color: var(--ink-soft); margin-top: 18px; font-size: 1.02rem; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 32px; }
.amenity { background: var(--white); border: 1px solid var(--line); padding: 20px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.amenity svg { width: 22px; height: 22px; color: var(--ruby); }
.amenity span { font-size: 0.82rem; letter-spacing: 0.02em; }

.booking-card { background: var(--white); border: 1px solid var(--line); padding: 28px; box-shadow: var(--shadow); }
.booking-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.booking-card .price-row .amount { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1.7rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: var(--ruby); }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select { border: none; border-bottom: 1px solid var(--line); padding: 10px 2px; font: inherit; background: transparent; outline: none; }
.field input:focus, .field select:focus { border-color: var(--ruby); }
.booking-note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }
.booking-note.is-success { color: var(--ruby); font-weight: 600; }
.nights-note {
  font-size: 0.82rem; color: var(--ruby); background: var(--sand);
  border: 1px solid var(--line); padding: 10px 14px; margin: -8px 0 18px; text-align: center;
}

/* ---------- Availability calendar ---------- */
.availability-calendar { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.cal-header { text-align: center; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
.cal-dow { font-size: 0.66rem; text-align: center; color: var(--ink-soft); text-transform: uppercase; padding-bottom: 4px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.76rem; border-radius: 2px; background: var(--sand); color: var(--ink); }
.cal-day.is-empty { visibility: hidden; }
.cal-day.is-booked { background: transparent; color: #b9a98f; text-decoration: line-through; }
.cal-day.is-stay { background: var(--ruby); color: #fff; font-weight: 600; }
.cal-legend { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 14px; font-size: 0.72rem; color: var(--ink-soft); }
.cal-legend .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 5px; vertical-align: middle; }
.dot-stay { background: var(--ruby); }
.dot-booked { background: #b9a98f; }
.dot-free { background: var(--sand); border: 1px solid var(--line); }
@media (min-width: 960px) {
  .suite-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 64px; align-items: start; }
  .amenities-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .booking-card { position: sticky; top: 96px; }
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figure { margin: 0; overflow: hidden; aspect-ratio: 4/3; }
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); 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; }
}

/* ---------- Rooms carousel (centre focus) ---------- */
.accent-word { color: var(--gold); }
.room-carousel { position: relative; overflow: hidden; margin-top: 8px; }
.rc-track {
  display: flex; gap: 26px; padding: 30px 0 8px;
  transition: transform .5s cubic-bezier(.4,0,.2,1); will-change: transform;
}
.rc-card {
  flex: 0 0 auto; width: min(82vw, 384px);
  opacity: .5; transform: scale(.88); filter: blur(2.5px);
  transition: transform .5s cubic-bezier(.4,0,.2,1), opacity .5s ease, filter .5s ease;
}
.rc-card.is-active { opacity: 1; transform: scale(1); filter: none; }
.rc-photo {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 4px; box-shadow: 0 14px 34px rgba(36,34,32,.18);
  transition: box-shadow .5s ease;
}
.rc-card.is-active .rc-photo { box-shadow: 0 34px 66px rgba(36,34,32,.30); }
.rc-photo img { width: 100%; height: 100%; object-fit: cover; }
.rc-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,16,14,.92) 0%, rgba(20,16,14,.38) 46%, rgba(20,16,14,0) 70%);
}
.rc-card:not(.is-active) .rc-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: rgba(36,34,32,.34);
}
.rc-price {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: var(--ink); color: #fff;
  font-family: "Montserrat", sans-serif; font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 8px 13px; font-variant-numeric: tabular-nums;
}
.rc-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 26px 26px 28px; text-align: left; }
.rc-eyebrow {
  display: block; font-family: "Work Sans", sans-serif;
  font-size: .64rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.rc-name { font-family: "Cormorant Garamond", serif; color: #fff; font-size: 1.95rem; font-style: italic; margin-bottom: 12px; }
.rc-specs { display: flex; gap: 22px; font-family: "Work Sans", sans-serif; font-size: .8rem; color: rgba(255,255,255,.92); }
.rc-specs span { position: relative; white-space: nowrap; }
.rc-specs span + span::before {
  content: ""; position: absolute; left: -12px; top: 50%;
  width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.5); transform: translateY(-50%);
}
.rc-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.rc-dots button {
  width: 30px; height: 30px; padding: 0; border: 1px solid var(--line); border-radius: 999px;
  background: transparent; color: var(--ink-soft); cursor: pointer;
  font-family: "Work Sans", sans-serif; font-size: .74rem; font-weight: 600; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s ease;
}
.rc-dots button:hover { border-color: var(--ruby); color: var(--ruby); }
.rc-dots button.is-active { background: var(--ruby); border-color: var(--ruby); color: #fff; }
/* Mobile: let the neighbouring (blurred) rooms peek in on both sides */
@media (max-width: 700px) {
  .rc-track { gap: 14px; }
  .rc-card { width: min(72vw, 320px); }
}

/* ═══════════════ ROOM PAGE REDESIGN (mockup) ═══════════════ */

/* --- Logo: flower mark + wordmark --- */
.logo-mark { width: 40px; height: 40px; color: var(--gold); flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text b { font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: 1.28rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ruby); }
.logo-text span { font-family: "Work Sans", sans-serif; font-size: .5rem; letter-spacing: .34em; text-transform: uppercase; color: var(--ruby); margin-top: 5px; }
.site-footer .logo-text b { color: var(--sand); }

/* --- Transparent header over the room hero, solid on scroll --- */
body.room-page .site-header { position: fixed; top: 0; left: 0; right: 0; background: transparent; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease; }
body.room-page .site-header .logo-text b { color: #fff; }
body.room-page .site-header .nav-links > a { color: rgba(255,255,255,.82); }
body.room-page .site-header .nav-links > a:hover, body.room-page .site-header .nav-links > a.active { color: #fff; border-color: var(--gold); }
body.room-page .site-header .hamburger { color: #fff; }
body.room-page .site-header.is-scrolled { background: var(--sand); border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(36,34,32,.07); }
body.room-page .site-header.is-scrolled .logo-text b { color: var(--ruby); }
body.room-page .site-header.is-scrolled .nav-links > a { color: var(--ink-soft); }
body.room-page .site-header.is-scrolled .hamburger { color: var(--ink); }

/* --- Hero --- */
.room-hero { position: relative; min-height: 82vh; min-height: 82svh; display: flex; align-items: center; overflow: hidden; }
.room-hero-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,16,14,.88) 0%, rgba(20,16,14,.6) 40%, rgba(20,16,14,.12) 72%, rgba(20,16,14,0) 100%); }
.room-hero-inner { position: relative; z-index: 2; color: #fff; max-width: 760px; padding: 120px 0 130px; }
.room-hero-inner .kicker { display: block; color: var(--gold); margin-bottom: 18px; }
.room-hero-inner h1 { color: #fff; font-style: italic; font-size: clamp(2.4rem, 6vw, 4.1rem); line-height: 1.04; margin-bottom: 20px; }
.room-hero-sub { font-size: 1.08rem; color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 26px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 32px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.92); }
.hero-meta svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.room-hero-cta { gap: 10px; }
.room-hero-cta svg { width: 16px; height: 16px; }
/* Desktop: pull the hero copy to the far left over the dark scrim */
@media (min-width: 1024px) {
  .room-hero-inner { max-width: none; margin: 0; padding-left: clamp(40px, 6vw, 130px); padding-right: 40px; }
  .room-hero-inner > * { max-width: 620px; }
}
.room-hero-inner h1 { overflow-wrap: break-word; }
body.room-page { overflow-x: clip; }
/* Navigateurs sans support de `clip` : on retombe sur hidden (pas de sticky,
   mais pas de débordement horizontal non plus). */
@supports not (overflow-x: clip) {
  html, body, body.room-page { overflow-x: hidden; }
}
/* Mobile: tighter hero so it fits without the huge dead space */
@media (max-width: 640px) {
  .room-hero { min-height: 60vh; min-height: 60svh; }
  .room-hero-inner { padding: 88px 0 40px; }
  .room-hero-inner h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); margin-bottom: 14px; }
  .room-hero-inner .kicker { margin-bottom: 10px; }
  .room-hero-sub { font-size: 1rem; margin-bottom: 16px; }
  .hero-meta { gap: 9px 16px; margin-bottom: 2px; }
  .hero-meta span { font-size: .82rem; }
  /* Centre the Check-availability button when the row wraps on phones */
  .booking-bar .bb-cta { margin-left: auto; margin-right: auto; }
}

/* --- Floating booking bar --- */
/* Desktop = original layout: booking form floats over the hero, then info | gallery. */
.booking-wrap { position: relative; z-index: 5; margin-top: -68px; margin-bottom: 24px; }
.room-main { display: contents; }
/* Mobile only: reflow to Hero → Gallery → Info → Booking form */
@media (max-width: 959px) {
  .room-main { display: flex; flex-direction: column; }
  .room-main #suite-detail { order: 1; }
  .room-main #booking { order: 2; margin-top: 0; margin-bottom: 44px; }
  .suite-layout { display: flex; flex-direction: column; }
  .suite-layout .suite-gallery { order: 1; }
  .suite-layout .suite-desc { order: 2; }
}
.booking-bar { background: var(--white); box-shadow: 0 24px 60px rgba(36,34,32,.16); border: 1px solid var(--line); padding: 22px 24px; }
.bb-row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 18px; }
.bb-field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 150px; min-width: 130px; }
.bb-field label { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.bb-field input, .bb-field select { border: none; border-bottom: 1px solid var(--line); padding: 8px 2px; font: inherit; background: transparent; outline: none; color: var(--ink); width: 100%; }
.bb-field input:focus, .bb-field select:focus { border-color: var(--ruby); }
.bb-field-grow { flex: 2 1 220px; }
.bb-price { display: flex; align-items: baseline; gap: 6px; flex: 0 0 auto; padding: 0 4px 4px; }
.bb-price .bb-from { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.bb-price .amount { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: var(--ruby); }
.bb-price .bb-per { font-size: .8rem; color: var(--ink-soft); }
.bb-cta { flex: 0 0 auto; }
.booking-bar .nights-note { text-align: center; margin-top: 16px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.booking-request { margin-top: 18px; padding-top: 20px; border-top: 1px solid var(--line); }
.booking-note { text-align: center; margin-top: 14px; font-size: .84rem; color: var(--ink-soft); }
.booking-note.is-success { color: var(--emerald); }

/* --- Suite detail: title + amenity tiles --- */
.suite-desc-title { font-size: clamp(1.7rem, 4vw, 2.3rem); font-style: italic; margin-top: 10px; }
.amenities-title { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-top: 40px; margin-bottom: 18px; }
.amenity-tiles { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.amenity-tile { border: 1px solid var(--line); background: var(--white); padding: 18px 10px; display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; }
.amenity-tile svg { width: 22px; height: 22px; color: var(--ruby); }
.amenity-tile span { font-size: .76rem; color: var(--ink-soft); line-height: 1.3; }
@media (min-width: 560px) { .amenity-tiles { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* --- Gallery (1 big + 2 small) --- */
.suite-gallery { display: flex; flex-direction: column; gap: 12px; }
.suite-gallery figure { margin: 0; overflow: hidden; }
.suite-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gf-main { aspect-ratio: 4 / 3; border-radius: 6px; }
/* Thumbnail strip below the main photo — e-commerce product-page style */
.gf-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gf-thumb { flex: 0 0 auto; width: 84px; height: 66px; padding: 0; border: 2px solid transparent; border-radius: 5px; overflow: hidden; cursor: pointer; background: none; transition: border-color .18s, opacity .18s; opacity: .78; }
.gf-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gf-thumb:hover { opacity: 1; }
.gf-thumb.is-active { border-color: var(--accent, var(--gold)); opacity: 1; }
.gf-view { justify-content: center; width: 100%; gap: 10px; margin-top: 2px; }
.gf-view svg { width: 15px; height: 15px; }
@media (max-width: 560px) { .gf-thumb { width: 64px; height: 50px; } .gf-thumbs { gap: 8px; } }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-ghost:hover { background: var(--sand-deep); }

/* --- After Dark band --- */
.after-dark { position: relative; overflow: hidden; padding: 0; }
.after-dark .hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.after-dark-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,16,14,.9) 0%, rgba(20,16,14,.72) 45%, rgba(20,16,14,.5) 100%); }
.after-dark-inner { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; padding: 80px 0; color: #fff; }
.after-dark-copy { max-width: 480px; }
.after-dark-copy .kicker { display: block; color: var(--gold); margin-bottom: 14px; }
.after-dark-copy h3 { color: #fff; font-style: italic; font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: 14px; }
.after-dark-copy p { color: rgba(255,255,255,.85); }
@media (min-width: 900px) { .after-dark-inner { flex-direction: row; justify-content: space-between; align-items: center; padding: 120px 0; } }

/* --- Footer: socials + contact + 4-col --- */
.footer-social { display: flex; gap: 12px; margin-top: 18px; justify-content: center; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: var(--sand-deep); transition: all .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: minmax(0,1.6fr) repeat(3, minmax(0,1fr)); } .footer-social { justify-content: flex-start; } }

/* ═══════════════ BOOKING MODAL ═══════════════ */
body.bk-open { overflow: hidden; }
.bk-modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 16px; }
.bk-modal[hidden] { display: none; }
.bk-backdrop { position: absolute; inset: 0; background: rgba(20,16,14,.62); backdrop-filter: blur(2px); }
.bk-dialog { position: relative; z-index: 2; background: var(--sand); width: 100%; max-width: 620px; max-height: 92vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(20,16,14,.4); }
.bk-x { position: absolute; top: 14px; right: 16px; z-index: 3; border: none; background: none; font-size: 1.7rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
.bk-x:hover { color: var(--ink); }
.bk-head { padding: 18px 24px 0; }
.bk-head .kicker { display: block; color: var(--gold); margin-bottom: 12px; }
.bk-steps { display: flex; gap: 8px; }
.bk-dot { flex: 1; display: flex; align-items: center; gap: 8px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--ink-mute, #9a8c7d); padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.bk-dot i { width: 22px; height: 22px; border-radius: 50%; background: var(--line); color: var(--ink-soft); display: flex; align-items: center; justify-content: center; font-style: normal; font-size: .72rem; flex: none; }
.bk-dot.is-active { color: var(--ink); border-bottom-color: var(--ruby); }
.bk-dot.is-active i { background: var(--ruby); color: #fff; }
.bk-dot.is-done i { background: var(--emerald); color: #fff; }
.bk-body { padding: 16px 24px 20px; }
.bk-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bk-field-grow, .bb-field-grow { grid-column: 1 / -1; }
.bk-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.bk-foot .btn svg { width: 15px; height: 15px; }
.bk-hint { font-size: .82rem; color: var(--ink-soft); }

/* calendar */
.bk-cal { border: 1px solid var(--line); background: var(--white); padding: 10px 14px 12px; margin-bottom: 14px; }
.bk-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.bk-cal-head span { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; }
.bk-cal-nav { border: 1px solid var(--line); background: var(--sand); width: 30px; height: 30px; cursor: pointer; font-size: 1.1rem; color: var(--ink-soft); }
.bk-cal-nav:hover { border-color: var(--ruby); color: var(--ruby); }
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.bk-dow { text-align: center; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute, #9a8c7d); padding-bottom: 4px; }
.bk-day { min-height: 38px; border: none; background: transparent; font: inherit; color: var(--ink); cursor: pointer; border-radius: 3px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding: 3px 2px; }
.bk-day .bk-d { font-size: .8rem; line-height: 1; }
.bk-day .bk-p { font-size: .54rem; font-weight: 600; color: var(--gold); letter-spacing: .01em; line-height: 1; }
.bk-day:hover:not(.is-past):not(.is-empty) { background: var(--sand-deep); }
.bk-day.is-empty { visibility: hidden; cursor: default; }
.bk-day.is-past { color: #c9bda9; cursor: not-allowed; }
.bk-day.is-booked { color: #b9a98f; cursor: not-allowed; text-decoration: line-through; background: repeating-linear-gradient(135deg, transparent, transparent 4px, rgba(185,169,143,.14) 4px, rgba(185,169,143,.14) 6px); }

/* ═══ LANGUAGE SWITCHER + RTL ═══ */
.lang-switch { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 7px; background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; cursor: pointer; font-family: "Work Sans", sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: var(--ink); transition: border-color .2s; }
.lang-btn:hover { border-color: var(--ruby); }
.lang-btn svg:first-child, .lang-menu svg, .drawer-langs svg { width: 20px; height: 13px; border-radius: 2px; flex: none; box-shadow: 0 0 0 1px rgba(36,34,32,.12); }
.lang-caret { width: 12px !important; height: 12px !important; box-shadow: none !important; opacity: .55; transition: transform .2s; }
.lang-switch.is-open .lang-caret { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px; margin: 0; padding: 6px; list-style: none; background: var(--white, #fff); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 18px 44px rgba(36,34,32,.16); z-index: 60; display: none; }
.lang-switch.is-open .lang-menu { display: block; }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 7px; font-size: .82rem; color: var(--ink); text-decoration: none; }
.lang-menu a:hover { background: var(--sand-deep, #f7e6d6); }
/* Le nom de langue garde son sens d'écriture sans déplacer le drapeau (hébreu) */
.lang-menu .lang-name { unicode-bidi: isolate; text-align: left; flex: 1; }
[dir="rtl"] .lang-menu a, [dir="rtl"] .drawer-langs a { flex-direction: row; }
[dir="rtl"] .lang-menu .lang-name { text-align: right; }
.lang-menu .is-current a { color: var(--ruby); font-weight: 600; }
.drawer-langs { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 0 6px; border-top: 1px solid rgba(36,34,32,.14); margin-top: 14px; }
.drawer-langs a { display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(36,34,32,.18); border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: inherit; text-decoration: none; }
.drawer-langs a.is-current { border-color: var(--ruby); color: var(--ruby); }
.drawer > .btn { flex: none; }
@media (max-width: 1023px) { .site-header .lang-switch { display: none; } }
/* RTL (Hebrew): flexbox flips automatically with dir; fix the few absolutes */
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .room-hero-scrim { background: linear-gradient(-100deg, rgba(20,16,14,.88) 0%, rgba(20,16,14,.6) 40%, rgba(20,16,14,.12) 72%, rgba(20,16,14,0) 100%); }
[dir="rtl"] .rc-info, [dir="rtl"] .suite-desc, [dir="rtl"] .split-copy { text-align: right; }
[dir="rtl"] .bb-field input, [dir="rtl"] .bb-field select { text-align: right; }
.bk-day.is-stay { background: var(--ruby); color: #fff; }
.bk-day.is-stay .bk-p { color: rgba(255,255,255,.9); }

/* coupon */
.bk-coupon { display: flex; gap: 10px; margin-top: 20px; }
.bk-coupon input { flex: 1; border: 1px solid var(--line); background: var(--white); padding: 11px 14px; font: inherit; outline: none; }
.bk-coupon input:focus { border-color: var(--ruby); }
.bk-coupon .btn { flex: 0 0 auto; }
.bk-coupon-msg { margin-top: 8px; font-size: .84rem; }
.bk-coupon-msg.is-ok { color: var(--emerald); }
.bk-coupon-msg.is-err { color: var(--ruby); }

/* recap */
.bk-recap { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 14px; }
.bk-line { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; font-size: .92rem; color: var(--ink-soft); }
.bk-line b { color: var(--ink); font-weight: 600; }
.bk-line.bk-disc { color: var(--emerald); }
.bk-line.bk-disc b { color: var(--emerald); }
.bk-line.bk-total { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; font-size: 1rem; }
.bk-line.bk-total b { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; color: var(--ruby); }

/* payment */
.bk-pay { margin-top: 18px; }
.bk-pay-opt { border: 1px solid var(--line); background: var(--white); padding: 20px; }
.bk-pay-h { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.bk-pay-h b { font-size: 1rem; }
.bk-pay-tag { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--emerald); border: 1px solid var(--emerald); padding: 2px 7px; border-radius: 999px; }
.bk-pay-opt p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 16px; }
.bk-pay-btn { text-align: center; padding: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; font-size: .8rem; cursor: pointer; color: #fff; }
.bk-paypal { background: #ffc439; color: #253b80; }
.bk-cmi { background: #1a4a8b; }
.bk-bank { display: grid; gap: 10px; }
.bk-bank div { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.bk-bank span { color: var(--ink-mute, #9a8c7d); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

/* done */
.bk-done { text-align: center; padding: 20px 6px; }
.bk-done-mark { width: 60px; height: 60px; margin: 0 auto 18px; color: var(--emerald); }
.bk-done h3 { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.7rem; margin-bottom: 12px; }
.bk-done p { color: var(--ink-soft); margin-bottom: 22px; line-height: 1.7; }

@media (max-width: 520px) {
  .bk-fields { grid-template-columns: 1fr; }
  .bk-head, .bk-body { padding-left: 16px; padding-right: 16px; }
  .bk-dot em, .bk-dot { font-size: .62rem; }
  .bk-foot { flex-direction: column; align-items: stretch; gap: 10px; }
  .bk-foot .btn { width: 100%; justify-content: center; }
  .bk-foot .bk-hint { text-align: center; order: 2; }
  .bk-coupon { flex-wrap: wrap; }
  .bk-coupon input, .bk-coupon .btn { width: 100%; flex: 1 1 100%; }
}

/* ═══════════════ LIGHTBOX ═══════════════ */
body.lb-open { overflow: hidden; }
.lightbox { position: fixed; inset: 0; z-index: 130; display: flex; align-items: center; justify-content: center; background: rgba(20,16,14,.93); padding: 40px; }
.lightbox[hidden] { display: none; }
.lb-stage { margin: 0; max-width: 92vw; max-height: 86vh; }
.lb-stage img { max-width: 92vw; max-height: 86vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-btn { position: absolute; border: none; background: rgba(255,255,255,.12); color: #fff; cursor: pointer; width: 48px; height: 48px; border-radius: 50%; font-size: 1.7rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.26); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: .82rem; letter-spacing: .12em; }
@media (max-width: 640px) { .lb-btn { width: 40px; height: 40px; font-size: 1.4rem; } .lb-close { top: 12px; right: 12px; } .lb-prev { left: 8px; } .lb-next { right: 8px; } .lightbox { padding: 16px; } }

/* ═══════════════ SUITES PAGE ═══════════════ */
.suites-hero { position: relative; min-height: 40vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.suites-hero .hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.suites-hero-scrim { position: absolute; inset: 0; background: linear-gradient(rgba(20,16,14,.5), rgba(20,16,14,.66)); }
.suites-hero-inner { position: relative; z-index: 2; color: #fff; padding: 70px 20px; }
.suites-hero-inner .kicker { display: block; color: var(--gold); margin-bottom: 14px; }
.suites-hero-inner h1 { color: #fff; font-style: italic; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.suites-hero-inner p { color: rgba(255,255,255,.9); max-width: 520px; margin: 16px auto 0; }
.suites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
/* La page Suites réutilise .rc-card : neutraliser le flou/échelle du carrousel */
.suites-grid .rc-card { opacity: 1; transform: none; width: auto; filter: none; }
.suites-grid .rc-card:hover { transform: translateY(-5px); }
.suites-grid .rc-card:hover .rc-photo { box-shadow: 0 26px 54px rgba(36,34,32,.26); }
.suites-grid .rc-photo { aspect-ratio: 3 / 4; }

/* ═══════════════ BLOG ═══════════════ */
.blog-hero .suites-hero-inner p { color: rgba(255,255,255,.9); max-width: 560px; margin-top: 14px; }
.blog-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 26px; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.bp-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; color: inherit; transition: transform .25s ease, box-shadow .25s ease; }
.bp-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(36,34,32,.16); }
.bp-photo { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--sand-deep); }
.bp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bp-photo[data-noimg] { display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #efe9e2, #ddd3c7); }
.bp-mark { font-family: "Cormorant Garamond", serif; font-size: 3.4rem; color: var(--ruby); opacity: .32; line-height: 1; }
.bp-tag { position: absolute; top: 12px; left: 12px; background: var(--ink); color: #fff; font-family: "Work Sans", sans-serif; font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 6px 11px; }
.bp-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.bp-title { font-size: 1.24rem; font-style: italic; line-height: 1.25; margin-bottom: 10px; }
.bp-exc { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.bp-meta { display: flex; gap: 16px; margin-top: 16px; font-family: "Work Sans", sans-serif; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.bp-meta span + span { position: relative; }
.bp-meta span + span::before { content: ""; position: absolute; left: -9px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--line); transform: translateY(-50%); }
.blog-empty { text-align: center; padding: 60px 0; }
.blog-empty h2 { font-style: italic; font-size: 1.8rem; margin-bottom: 12px; }
.blog-empty p { color: var(--ink-soft); margin-bottom: 24px; }
/* Article */
.article-hero { min-height: 62vh; min-height: 62svh; }
.art-byline { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 22px; font-family: "Work Sans", sans-serif; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.9); }
.art-byline span + span { position: relative; }
.art-byline span + span::before { content: ""; position: absolute; left: -11px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.5); transform: translateY(-50%); }
.article-body { padding-top: 66px; }
.art-col { max-width: 760px; margin: 0 auto; }
.art-lede { font-size: 1.14rem; line-height: 1.75; color: var(--ink); padding-bottom: 24px; margin-bottom: 30px; border-bottom: 1px solid var(--line); font-style: italic; }
.art-col h2 { font-size: clamp(1.45rem, 3.4vw, 1.95rem); font-style: italic; margin: 40px 0 14px; }
.art-col h3 { font-size: 1.16rem; margin: 28px 0 10px; }
.art-col p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 18px; font-size: 1.02rem; }
.art-col ul { color: var(--ink-soft); line-height: 1.85; margin: 0 0 20px; padding-left: 22px; }
.art-col li { margin-bottom: 8px; }
.art-col strong { color: var(--ink); font-weight: 600; }
/* Liens dans le corps d'un article : le style global des liens est
   `color: inherit; text-decoration: none`, donc sans cette règle un lien
   inséré dans un paragraphe serait rigoureusement invisible. */
.art-col p a, .art-col li a {
  color: var(--ruby); border-bottom: 1px solid rgba(196,89,48,.35);
  transition: border-color .2s, color .2s;
}
.art-col p a:hover, .art-col li a:hover { border-bottom-color: var(--ruby); }
.art-col blockquote { margin: 28px 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--ruby); font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-style: italic; color: var(--ink); }
.art-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); }
.art-tags span { font-family: "Work Sans", sans-serif; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
[dir="rtl"] .art-col ul { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .art-col blockquote { border-left: none; border-right: 2px solid var(--ruby); padding: 4px 24px 4px 0; }

/* --- Article : colonne latérale chambres --- */
.art-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 44px; }
.art-layout .art-col { max-width: 760px; margin: 0; }
@media (min-width: 1000px) {
  .art-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
  .art-side { position: sticky; top: 96px; max-height: calc(100vh - 116px); overflow-y: auto; scrollbar-width: thin; }
}
.art-side { display: flex; flex-direction: column; gap: 18px; }
.as-box { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 22px 20px; }
.as-box .kicker { display: block; margin-bottom: 6px; }
.as-title { font-size: 1.28rem; font-style: italic; margin-bottom: 16px; }
.as-box.as-alt { background: var(--sand-deep); }
.as-box.as-alt p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 16px; }
.as-room { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); color: inherit; }
.as-room:first-of-type { border-top: none; padding-top: 0; }
.as-photo { width: 78px; height: 62px; flex: none; overflow: hidden; border-radius: 3px; background: var(--sand-deep); }
.as-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.as-room:hover .as-photo img { transform: scale(1.06); }
.as-info { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.as-info > b { font-family: "Cormorant Garamond", serif; font-size: 1.14rem; font-style: italic; color: var(--ink); line-height: 1.2; }
.as-specs { font-family: "Work Sans", sans-serif; font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); }
.as-price { font-family: "Work Sans", sans-serif; font-size: .72rem; color: var(--ink-soft); }
.as-price b { font-family: "Montserrat", sans-serif; color: var(--ruby); font-weight: 700; font-variant-numeric: tabular-nums; }
.as-cta { margin-top: 18px; }
[dir="rtl"] .art-layout .art-col { margin: 0; }

/* --- Champs de la modale de réservation : vrais encadrés ---
   Le style « souligné » du bandeau de réservation passe mal dans une
   fenêtre : les champs ne se lisent pas comme des zones de saisie.
   Ici on leur donne un contour complet, cohérent avec le champ Coupon. */
.bk-modal .bb-field label,
.bk-modal .bk-field label { display: block; margin-bottom: 6px; }
.bk-modal .bb-field input,
.bk-modal .bb-field select,
.bk-modal .bb-field textarea,
.bk-modal .bk-field input,
.bk-modal .bk-field select,
.bk-modal .bk-field textarea {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  padding: 11px 13px;
  font: inherit;
  color: var(--ink);
  width: 100%;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.bk-modal .bb-field input:hover,
.bk-modal .bb-field select:hover,
.bk-modal .bb-field textarea:hover,
.bk-modal .bk-field input:hover,
.bk-modal .bk-field select:hover,
.bk-modal .bk-field textarea:hover { border-color: #cfc7bb; }
.bk-modal .bb-field input:focus,
.bk-modal .bb-field select:focus,
.bk-modal .bb-field textarea:focus,
.bk-modal .bk-field input:focus,
.bk-modal .bk-field select:focus,
.bk-modal .bk-field textarea:focus {
  border-color: var(--ruby);
  box-shadow: 0 0 0 3px rgba(196,89,48,.13);
}
.bk-modal ::placeholder { color: #b3aa9d; }
/* Le menu déroulant doit se voir comme tel */
.bk-modal .bb-field select,
.bk-modal .bk-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 36px; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23565149' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 15px 15px;
}
[dir="rtl"] .bk-modal .bb-field select,
[dir="rtl"] .bk-modal .bk-field select { padding-right: 13px; padding-left: 36px; background-position: left 12px center; }
.bk-modal textarea { min-height: 76px; resize: vertical; }

/* --- Titres Montserrat Thin : pas d'italique (choix graphique) ---
   Montserrat possede une italique, mais le parti pris retenu est le droit ;
   on la neutralise donc explicitement.
   (L'italique est conservée là où Cormorant Garamond reste en place :
    citations, prix, nom de chambre en médaillon, logo.) */
.hero-content h1,
.section-head h2,
.split-copy h3,
.room-card h3,
.excursion-card h3,
.suite-hero-content h1,
.room-hero-inner h1,
.suite-desc-title,
.after-dark-copy h3,
.bk-done h3,
.suites-hero-inner h1,
.bp-title,
.blog-empty h2,
.art-col h2,
.art-col h3,
.as-title,
.triptych-content h2,
.testimonial h2 { font-style: normal; }
[dir="rtl"] .hero-content h1,
[dir="rtl"] .section-head h2,
[dir="rtl"] .room-hero-inner h1,
[dir="rtl"] .suites-hero-inner h1,
[dir="rtl"] .art-col h2,
[dir="rtl"] .bp-title { font-weight: 700; }
/* Tres gros titres en gras : on resserre un peu plus */
.hero-content h1,
.room-hero-inner h1,
.suites-hero-inner h1 { letter-spacing: -0.02em; }

/* Titres par-dessus une photo : une ombre legere detache le texte des zones
   claires de l'image (moins critique en gras qu'en Thin, mais toujours utile
   sur une photo de patio ensoleille). */
.hero-content h1,
.room-hero-inner h1,
.suites-hero-inner h1,
.triptych-content h2,
.after-dark-copy h3,
.rc-name { text-shadow: 0 2px 16px rgba(20,16,14,.32); }

/* ═══ CHAMBRES SIMILAIRES — défilement horizontal ═══
   Défilement natif (scroll-snap) plutôt qu'un carrousel JS : le glissement
   au doigt fonctionne d'emblée sur mobile, et la page reste utilisable même
   si le JavaScript ne se charge pas. Les flèches ne sont qu'un confort. */
.sim-section { overflow: hidden; }
.sim-wrap { position: relative; }
.sim-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory; padding: 6px 20px 24px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.sim-track::-webkit-scrollbar { display: none; }
/* « safe center » centre les cartes quand elles tiennent dans la largeur, et
   repasse tout seul en alignement à gauche dès que ça déborde — un simple
   « center » rendrait au contraire les premières cartes inatteignables au
   défilement. Le @supports evite ce piege sur les navigateurs anciens. */
@supports (justify-content: safe center) { .sim-track { justify-content: safe center; } }
.sim-card { flex: 0 0 auto; width: min(76vw, 300px); scroll-snap-align: start; color: inherit; }
.sim-photo {
  position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 4px;
  box-shadow: 0 14px 34px rgba(36,34,32,.18); transition: box-shadow .35s ease, transform .35s ease;
}
.sim-card:hover .sim-photo { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(36,34,32,.28); }
.sim-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.sim-card:hover .sim-photo img { transform: scale(1.05); }
.sim-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(20,16,14,.92) 0%, rgba(20,16,14,.34) 46%, rgba(20,16,14,0) 70%); }
.sim-price {
  position: absolute; top: 14px; right: 14px; z-index: 3; background: var(--ink); color: #fff;
  font-family: "Montserrat", sans-serif; font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 11px; font-variant-numeric: tabular-nums;
}
.sim-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 22px 20px 22px; text-align: left; }
.sim-name { color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.sim-specs { display: flex; gap: 18px; font-family: "Work Sans", sans-serif; font-size: .74rem; color: rgba(255,255,255,.9); }
.sim-specs span + span { position: relative; }
.sim-specs span + span::before { content: ""; position: absolute; left: -10px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.5); transform: translateY(-50%); }
.sim-nav {
  position: absolute; top: calc(50% - 14px); transform: translateY(-50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--white);
  box-shadow: 0 6px 22px rgba(36,34,32,.22); display: none; align-items: center; justify-content: center;
  color: var(--ink); transition: background .2s, color .2s, opacity .2s;
}
.sim-nav:hover { background: var(--ruby); color: #fff; }
.sim-nav svg { width: 20px; height: 20px; }
.sim-nav[disabled] { opacity: .3; cursor: default; }
.sim-nav[disabled]:hover { background: var(--white); color: var(--ink); }
.sim-prev { left: 14px; }
.sim-next { right: 14px; }
@media (min-width: 1024px) { .sim-nav { display: flex; } }
/* [hidden] doit gagner sur le display:flex ci-dessus (sinon la fleche masquee
   par le script reste visible). */
.sim-nav[hidden] { display: none !important; }
[dir="rtl"] .sim-info { text-align: right; }
[dir="rtl"] .sim-price { right: auto; left: 14px; }
[dir="rtl"] .sim-prev { left: auto; right: 14px; }
[dir="rtl"] .sim-next { right: auto; left: 14px; }

/* ═══ PAGES LÉGALES ═══
   Colonne de lecture sobre : ces pages se lisent, elles ne vendent rien. */
.legal-page { padding-top: 48px; }
@media (min-width: 1024px) { .legal-page { padding-top: 76px; } }
.legal-head { max-width: 760px; margin: 0 auto 34px; }
.legal-head h1 { font-size: clamp(1.8rem, 4.2vw, 2.5rem); margin-top: 12px; }
.legal-updated { color: var(--ink-soft); font-size: .86rem; margin-top: 14px; }
.legal-body h2 { font-size: 1.18rem; font-style: normal; margin: 34px 0 12px; }
.legal-body p, .legal-body li { font-size: .98rem; }
.legal-body em { color: var(--ink-soft); font-size: .9rem; }
.legal-more { max-width: 760px; margin: 46px auto 0; padding-top: 24px; border-top: 1px solid rgba(36,34,32,.14); display: flex; gap: 22px; flex-wrap: wrap; }
.legal-more a { color: var(--ruby); font-size: .86rem; border-bottom: 1px solid transparent; }
.legal-more a:hover { border-bottom-color: var(--ruby); }
/* Rangée légale du pied de page */
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; padding: 22px 0 0; }
.footer-legal a { font-size: .78rem; opacity: .72; }
.footer-legal a:hover { opacity: 1; color: var(--ruby); }

/* ═══ DIAPORAMA DU HERO ═══
   Les images sont empilées (`.hero-media` est déjà en absolute inset:0).
   La première porte `is-active` DANS LE HTML : pas de fondu au chargement,
   et le site reste correct sans JavaScript. */
.hero .hero-media { opacity: 0; transition: opacity 1.4s ease; }
.hero .hero-media.is-active { opacity: 1; }
/* Une seule image : rien à animer. */
.hero .hero-media:only-of-type { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero .hero-media { transition: none; } }

/* ═══ POINTS DU DIAPORAMA D'ACCUEIL ═══ */
.hero-dots {
  position: absolute; left: 0; right: 0; bottom: 26px; z-index: 4;
  display: flex; justify-content: center; gap: 10px;
}
.hero-dots button {
  position: relative; width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none;
  background: rgba(255,255,255,.45); cursor: pointer;
  transition: background .25s ease, transform .25s ease, width .25s ease;
}
.hero-dots button:hover { background: rgba(255,255,255,.8); }
.hero-dots button.is-active { background: #fff; width: 26px; border-radius: 999px; }
/* Cible tactile confortable sans grossir le point lui-même. */
.hero-dots button::before { content: ""; position: absolute; width: 34px; height: 34px; margin: -12px 0 0 -12px; }
@media (max-width: 640px) { .hero-dots { bottom: 18px; } }

/* ═══ VIDÉO DE FOND — MOBILE UNIQUEMENT ═══
   Sur ordinateur c'est le diaporama photo qui reste ; sur mobile la vidéo
   prend sa place. Les deux sont dans la page, seul l'affichage change. */
.hero-video { position: absolute; inset: 0; display: none; overflow: hidden; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 899px) {
  .hero-video { display: block; }
  /* La photo reste visible dessous tant que la vidéo n'a pas démarré :
     les .hero-media sont AVANT .hero-video dans le HTML, un combinateur
     `~` ne pourrait pas les atteindre — on passe par une classe sur la
     section. */
  .hero.is-video .hero-media { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .hero-video { display: none !important; } }

/* Deux jeux de points : les photos (ordinateur) et les vidéos (mobile).
   Le second ne prend le relais que lorsque la vidéo joue réellement — si
   elle échoue, on reste sur les photos et leurs points. */
.hero-dots[data-for="videos"] { display: none; }
@media (max-width: 899px) {
  .hero.is-video .hero-dots[data-for="photos"] { display: none; }
  .hero.is-video .hero-dots[data-for="videos"] { display: flex; }
}

/* Ouverture d'article : même bloc que les pages services (texte / photo).
   Le chapo et la signature vivent désormais dans la colonne de texte, plus
   par-dessus une image sombre — ils reprennent donc les couleurs du fond
   clair. */
.page-open .split-copy .art-lede {
  font-size: 1.06rem; line-height: 1.7; color: var(--ink-soft); margin-top: 18px;
}
.page-open .split-copy .art-byline {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px;
  font-family: "Work Sans", sans-serif; font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft);
}
.page-open .split-copy .art-byline span + span { position: relative; }
.page-open .split-copy .art-byline span + span::before {
  content: ""; position: absolute; left: -10px; top: 50%; width: 3px; height: 3px;
  border-radius: 50%; background: var(--ink-soft); opacity: .5; transform: translateY(-50%);
}

/* ═══ ICÔNES PAR CLASSE ═══
   `.ic` peint la couleur courante à travers un masque SVG : l'icône suit donc
   la couleur du lien (y compris au survol), reste nette à toute taille, et
   n'entraîne aucune requête vers un service extérieur. */
.ic {
  display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em;
  background-color: currentColor;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.ic-facebook {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12c0 5 3.66 9.13 8.44 9.88v-6.99H7.9V12h2.54V9.8c0-2.5 1.49-3.89 3.77-3.89 1.09 0 2.23.2 2.23.2v2.46h-1.26c-1.24 0-1.63.77-1.63 1.56V12h2.78l-.44 2.89h-2.34v6.99C18.34 21.13 22 17 22 12c0-5.52-4.48-10-10-10z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12c0 5 3.66 9.13 8.44 9.88v-6.99H7.9V12h2.54V9.8c0-2.5 1.49-3.89 3.77-3.89 1.09 0 2.23.2 2.23.2v2.46h-1.26c-1.24 0-1.63.77-1.63 1.56V12h2.78l-.44 2.89h-2.34v6.99C18.34 21.13 22 17 22 12c0-5.52-4.48-10-10-10z'/%3E%3C/svg%3E");
}
.ic-instagram {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.16c3.2 0 3.58.01 4.85.07 1.17.05 1.8.25 2.23.41.56.22.96.48 1.38.9.42.42.68.82.9 1.38.16.42.36 1.06.41 2.23.06 1.27.07 1.65.07 4.85s-.01 3.58-.07 4.85c-.05 1.17-.25 1.8-.41 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.16-1.06.36-2.23.41-1.27.06-1.65.07-4.85.07s-3.58-.01-4.85-.07c-1.17-.05-1.8-.25-2.23-.41-.56-.22-.96-.48-1.38-.9-.42-.42-.68-.82-.9-1.38-.16-.42-.36-1.06-.41-2.23C2.17 15.58 2.16 15.2 2.16 12s.01-3.58.07-4.85c.05-1.17.25-1.8.41-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.16 1.06-.36 2.23-.41C8.42 2.17 8.8 2.16 12 2.16M12 0C8.74 0 8.33.01 7.05.07c-1.27.06-2.15.26-2.91.56-.79.3-1.46.72-2.13 1.38C1.35 2.68.93 3.35.63 4.14.33 4.9.13 5.78.07 7.05.01 8.33 0 8.74 0 12s.01 3.67.07 4.95c.06 1.27.26 2.15.56 2.91.3.79.72 1.46 1.38 2.13.67.66 1.34 1.08 2.13 1.38.76.3 1.64.5 2.91.56C8.33 23.99 8.74 24 12 24s3.67-.01 4.95-.07c1.27-.06 2.15-.26 2.91-.56.79-.3 1.46-.72 2.13-1.38.66-.67 1.08-1.34 1.38-2.13.3-.76.5-1.64.56-2.91.06-1.28.07-1.69.07-4.95s-.01-3.67-.07-4.95c-.06-1.27-.26-2.15-.56-2.91-.3-.79-.72-1.46-1.38-2.13C21.32 1.35 20.65.93 19.86.63c-.76-.3-1.64-.5-2.91-.56C15.67.01 15.26 0 12 0zm0 5.84A6.16 6.16 0 1 0 18.16 12 6.16 6.16 0 0 0 12 5.84zm0 10.16A4 4 0 1 1 16 12a4 4 0 0 1-4 4zm6.41-11.85a1.44 1.44 0 1 0 1.44 1.44 1.44 1.44 0 0 0-1.44-1.44z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.16c3.2 0 3.58.01 4.85.07 1.17.05 1.8.25 2.23.41.56.22.96.48 1.38.9.42.42.68.82.9 1.38.16.42.36 1.06.41 2.23.06 1.27.07 1.65.07 4.85s-.01 3.58-.07 4.85c-.05 1.17-.25 1.8-.41 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.16-1.06.36-2.23.41-1.27.06-1.65.07-4.85.07s-3.58-.01-4.85-.07c-1.17-.05-1.8-.25-2.23-.41-.56-.22-.96-.48-1.38-.9-.42-.42-.68-.82-.9-1.38-.16-.42-.36-1.06-.41-2.23C2.17 15.58 2.16 15.2 2.16 12s.01-3.58.07-4.85c.05-1.17.25-1.8.41-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.16 1.06-.36 2.23-.41C8.42 2.17 8.8 2.16 12 2.16M12 0C8.74 0 8.33.01 7.05.07c-1.27.06-2.15.26-2.91.56-.79.3-1.46.72-2.13 1.38C1.35 2.68.93 3.35.63 4.14.33 4.9.13 5.78.07 7.05.01 8.33 0 8.74 0 12s.01 3.67.07 4.95c.06 1.27.26 2.15.56 2.91.3.79.72 1.46 1.38 2.13.67.66 1.34 1.08 2.13 1.38.76.3 1.64.5 2.91.56C8.33 23.99 8.74 24 12 24s3.67-.01 4.95-.07c1.27-.06 2.15-.26 2.91-.56.79-.3 1.46-.72 2.13-1.38.66-.67 1.08-1.34 1.38-2.13.3-.76.5-1.64.56-2.91.06-1.28.07-1.69.07-4.95s-.01-3.67-.07-4.95c-.06-1.27-.26-2.15-.56-2.91-.3-.79-.72-1.46-1.38-2.13C21.32 1.35 20.65.93 19.86.63c-.76-.3-1.64-.5-2.91-.56C15.67.01 15.26 0 12 0zm0 5.84A6.16 6.16 0 1 0 18.16 12 6.16 6.16 0 0 0 12 5.84zm0 10.16A4 4 0 1 1 16 12a4 4 0 0 1-4 4zm6.41-11.85a1.44 1.44 0 1 0 1.44 1.44 1.44 1.44 0 0 0-1.44-1.44z'/%3E%3C/svg%3E");
}
.ic-tiktok {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.6 5.82A4.28 4.28 0 0 1 15.54 3h-3.09v12.4a2.59 2.59 0 0 1-2.59 2.5 2.59 2.59 0 1 1 .77-5.06V9.69a5.67 5.67 0 0 0-.77-.05A5.66 5.66 0 1 0 15.5 15.3V8.9a7.3 7.3 0 0 0 4.5 1.54V7.35a4.29 4.29 0 0 1-3.4-1.53z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.6 5.82A4.28 4.28 0 0 1 15.54 3h-3.09v12.4a2.59 2.59 0 0 1-2.59 2.5 2.59 2.59 0 1 1 .77-5.06V9.69a5.67 5.67 0 0 0-.77-.05A5.66 5.66 0 1 0 15.5 15.3V8.9a7.3 7.3 0 0 0 4.5 1.54V7.35a4.29 4.29 0 0 1-3.4-1.53z'/%3E%3C/svg%3E");
}
.footer-social .ic { font-size: 17px; }
/* ═══ BULLE WHATSAPP ═══
   Bouton flottant discret mais toujours atteignable. Le vert est celui de
   la marque : c'est ce qui le rend reconnaissable sans texte. Il se place
   du côté opposé à la lecture en hébreu, et remonte au-dessus de la barre
   de réservation mobile des pages chambre pour ne jamais la recouvrir. */
.wa-bubble {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-bubble .ic { font-size: 30px; }
.wa-bubble:hover { transform: scale(1.07); box-shadow: 0 8px 26px rgba(0,0,0,.3); color: #fff; }
.wa-bubble:focus-visible { outline: 3px solid var(--ruby); outline-offset: 3px; }
[dir="rtl"] .wa-bubble { right: auto; left: 18px; }
/* La barre de réservation mobile fait 76 px de haut et n'existe qu'en dessous de 1024 px. */
@media (max-width: 1023px) { .wa-bubble.is-lifted { bottom: 94px; } }
@media (max-width: 480px) { .wa-bubble { width: 48px; height: 48px; right: 14px; bottom: 14px; } [dir="rtl"] .wa-bubble { left: 14px; right: auto; } .wa-bubble .ic { font-size: 27px; } }
@media (prefers-reduced-motion: reduce) { .wa-bubble, .wa-bubble:hover { transition: none; transform: none; } }
.ic-whatsapp {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.96-.94 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.39-1.47-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.06 2.87 1.21 3.07.15.2 2.1 3.2 5.08 4.49.71.3 1.26.49 1.69.63.71.22 1.36.19 1.87.12.57-.09 1.76-.72 2.01-1.41.25-.7.25-1.29.17-1.42-.07-.13-.27-.2-.57-.35z'/%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.87 9.87 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91C21.96 6.45 17.5 2 12.04 2zm0 18.15h-.01a8.2 8.2 0 0 1-4.18-1.15l-.3-.18-3.11.82.83-3.04-.2-.31a8.16 8.16 0 0 1-1.25-4.38c0-4.54 3.7-8.24 8.24-8.24 2.2 0 4.27.86 5.83 2.41a8.19 8.19 0 0 1 2.41 5.83c0 4.54-3.7 8.24-8.26 8.24z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.96-.94 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.39-1.47-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.06 2.87 1.21 3.07.15.2 2.1 3.2 5.08 4.49.71.3 1.26.49 1.69.63.71.22 1.36.19 1.87.12.57-.09 1.76-.72 2.01-1.41.25-.7.25-1.29.17-1.42-.07-.13-.27-.2-.57-.35z'/%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.87 9.87 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91C21.96 6.45 17.5 2 12.04 2zm0 18.15h-.01a8.2 8.2 0 0 1-4.18-1.15l-.3-.18-3.11.82.83-3.04-.2-.31a8.16 8.16 0 0 1-1.25-4.38c0-4.54 3.7-8.24 8.24-8.24 2.2 0 4.27.86 5.83 2.41a8.19 8.19 0 0 1 2.41 5.83c0 4.54-3.7 8.24-8.26 8.24z'/%3E%3C/svg%3E");
}

/* ═══ CONTACT : FORMULAIRE À CÔTÉ DES COORDONNÉES ═══
   La photo a laissé la place au formulaire. Les deux colonnes s'alignent en
   haut (et non centrées) : les coordonnées et le formulaire n'ont pas la même
   hauteur, un centrage ferait flotter la liste au milieu du vide. */
.split.ct-split { align-items: start; }
.ct-panel {
  background: var(--white); border: 1px solid var(--line);
  padding: 30px 30px 34px;
}
.ct-panel-head { margin-bottom: 22px; }
.ct-panel-head h2 { font-size: clamp(1.45rem, 3vw, 1.85rem); margin-top: 8px; }
/* Dans une colonne, les champs côte à côte deviennent trop étroits pour être
   confortables : on les empile jusqu'à ce qu'il y ait vraiment la place. */
.ct-panel .ct-form, .ct-panel .ct-ok, .ct-panel .ct-err { max-width: none; margin-left: 0; margin-right: 0; }
.ct-panel .ct-row { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 1180px) { .ct-panel .ct-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .ct-panel { padding: 24px 20px 28px; } }

/* ═══ CARTE DES DISTANCES (page contact) ═══
   La liste porte l'information (km, durée) et fonctionne sans la carte ;
   la carte n'est qu'une illustration du trajet sélectionné. */
.section-lede { max-width: 640px; margin: 14px auto 0; color: var(--ink-soft); font-size: .98rem; line-height: 1.6; }
.rt-wrap { display: grid; grid-template-columns: minmax(0, 1fr); gap: 22px; margin-top: 34px; }
@media (min-width: 900px) { .rt-wrap { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 26px; align-items: start; } }
.rt-list { display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--white); }
.rt-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; text-align: left; font: inherit; cursor: pointer;
  background: none; border: 0; border-bottom: 1px solid var(--line);
  border-left: 3px solid transparent; padding: 15px 18px;
  transition: background .18s ease, border-color .18s ease;
}
[dir="rtl"] .rt-item { text-align: right; border-left: 0; border-right: 3px solid transparent; }
.rt-item:last-child { border-bottom: 0; }
.rt-item:hover { background: var(--bg); }
.rt-item.is-active { background: var(--bg); border-left-color: var(--ruby); }
[dir="rtl"] .rt-item.is-active { border-left-color: transparent; border-right-color: var(--ruby); }
.rt-name { font-family: "Work Sans", sans-serif; font-weight: 600; font-size: .95rem; color: var(--ink); }
.rt-figs { display: flex; gap: 8px; flex: none; }
.rt-figs span {
  font-family: "Work Sans", sans-serif; font-size: .72rem; letter-spacing: .04em;
  color: var(--ink-soft); background: var(--bg); border: 1px solid var(--line);
  padding: 4px 9px; border-radius: 999px; white-space: nowrap;
}
.rt-item.is-active .rt-figs span { background: var(--white); }
.rt-side { border: 1px solid var(--line); background: var(--white); overflow: hidden; }
.rt-map { height: 380px; background: var(--bg); }
@media (max-width: 620px) { .rt-map { height: 300px; } }
.rt-figs-bar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.rt-figs-bar div { padding: 14px 18px; text-align: center; }
.rt-figs-bar div + div { border-left: 1px solid var(--line); }
[dir="rtl"] .rt-figs-bar div + div { border-left: 0; border-right: 1px solid var(--line); }
.rt-figs-bar span { display: block; font-family: "Work Sans", sans-serif; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 5px; }
.rt-figs-bar b { font-family: "Montserrat", sans-serif; font-size: 1.05rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.rt-note { text-align: center; margin-top: 20px; color: var(--ink-soft); font-size: .93rem; }
/* Repères de la carte, dessinés en CSS : aucune image à télécharger. */
.rt-pin { display: block; width: 22px; height: 22px; border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 2px 6px rgba(0,0,0,.3); }
.rt-pin-dest { background: var(--ruby); }
.rt-pin-from { background: var(--ink); }
/* Leaflet impose ses polices et son z-index : on le ramène sous l'en-tête
   et sous la bulle WhatsApp, sinon la carte passe par-dessus au défilement. */
.rt-side .leaflet-container { font: inherit; z-index: 1; }
.rt-side .leaflet-control-attribution { font-size: 10px; }

/* ═══ REPÈRE WHATSAPP À CÔTÉ D'UN NUMÉRO ═══
   Signale lequel des numéros accepte WhatsApp, et y mène directement.
   Vert de la marque : reconnaissable d'un coup d'œil, sans le lire. */
.wa-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: "Work Sans", sans-serif; font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: #128c4a; background: rgba(37,211,102,.13);
  border: 1px solid rgba(37,211,102,.4); border-radius: 999px;
  padding: 2px 9px 2px 7px; margin-left: 7px;
  vertical-align: middle; white-space: nowrap;
  transition: background .18s ease, color .18s ease;
}
[dir="rtl"] .wa-tag { margin-left: 0; margin-right: 7px; }
.wa-tag .ic { font-size: 13px; }
.wa-tag:hover { background: #25d366; color: #fff; border-color: #25d366; }
/* Le pied de page est sombre : le vert doit y rester lisible. */
.footer-contact .wa-tag { color: #7ee2a8; background: rgba(37,211,102,.16); border-color: rgba(126,226,168,.45); }
.footer-contact .wa-tag:hover { background: #25d366; color: #08301c; border-color: #25d366; }
/* Dans le pied de page, numéro et repère partagent une ligne : on autorise le
   retour à la ligne plutôt que de forcer un débordement. Ciblé sur la ligne
   de téléphone uniquement — l'adresse utilise des <br/> qu'un flex casserait. */
.footer-contact p.ft-phone { display: flex; align-items: center; flex-wrap: wrap; row-gap: 4px; }
/* La colonne du pied de page est étroite : le repère y garde la pastille verte
   (reconnaissable sans être lue) mais pas le mot, pour rester sur la même ligne
   que son numéro — sinon il tombe en dessous et on ne sait plus lequel il
   désigne. Le nom reste accessible via aria-label et l'infobulle. */
.wa-tag-mini { padding: 3px; margin-left: 8px; }
.wa-tag-mini .wa-tag-t { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wa-tag-mini .ic { font-size: 15px; }

/* ═══ GALERIE ═══
   Vraie grille, et non des colonnes CSS : les colonnes se remplissent de haut
   en bas (1, 7, 13, puis 2, 8, 14…), l'ordre à l'écran ne correspondait donc
   pas à celui du back-office. Une grille remplit ligne par ligne, de gauche à
   droite — ce qui est classé en 2e position s'affiche bien en 2e.
   Cadre 3:2 pour tout le monde : c'est la proportion native des photos du
   palais, le recadrage est donc quasi nul et les lignes restent alignées. */
.gal-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
@media (min-width: 620px) { .gal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .gal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } }
.gal-item {
  display: block; width: 100%; padding: 0; margin: 0;
  border: 0; background: none; cursor: zoom-in;
  overflow: hidden; position: relative;
  aspect-ratio: 3 / 2;
}
.gal-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s ease; }
.gal-item:hover img { transform: scale(1.035); filter: brightness(1.03); }
.gal-item:focus-visible { outline: 3px solid var(--ruby); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .gal-item img, .gal-item:hover img { transition: none; transform: none; } }
.gal-empty { text-align: center; color: var(--ink-soft); padding: 40px 0; }
/* La grille suit directement le titre dans la même section : on ajoute le
   seul écart nécessaire plutôt que d'empiler deux sections. */
.gal-grid { margin-top: 40px; }

/* ═══ FORMULES TARIFÉES ═══
   Cartes de même hauteur, prix lisible d'un coup d'œil, bouton aligné en bas
   quelle que soit la longueur de la liste — sinon les cartes se décalent. */
.plan-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; margin-top: 38px; }
@media (min-width: 620px) { .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.plan-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  padding: 26px 24px 24px;
}
.plan-card.is-top { border-color: var(--ruby); box-shadow: 0 6px 26px rgba(196,89,48,.11); }
.plan-head { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 18px; }
.plan-head h3 { font-size: 1.18rem; letter-spacing: .01em; }
.plan-price { margin-top: 12px; font-family: "Work Sans", sans-serif; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.plan-price span {
  font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: 2rem; letter-spacing: -0.02em; color: var(--ruby);
  font-variant-numeric: tabular-nums; margin-right: 5px;
}
[dir="rtl"] .plan-price span { margin-right: 0; margin-left: 5px; }
.plan-per { font-size: .78rem; color: var(--ink-mute, var(--ink-soft)); margin-top: 3px; }
.plan-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; flex: 1; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.plan-list svg { width: 16px; height: 16px; color: var(--ruby); flex: none; margin-top: 3px; }
.plan-card .btn { align-self: flex-start; }

/* ═══ FENÊTRE « DEMANDER » ═══
   Ouverte par les boutons d'appel à l'action des pages services, mariages et
   privatisation. Le bouton garde son lien mailto : sans JavaScript, rien ne
   se casse, la messagerie s'ouvre comme avant. */
.eq-modal { position: fixed; inset: 0; z-index: 140; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(20,16,14,.62); overflow-y: auto; }
.eq-modal[hidden] { display: none; }
body.eq-open { overflow: hidden; }
.eq-box { position: relative; width: 100%; max-width: 560px; background: var(--white); border: 1px solid var(--line); padding: 34px 32px 30px; margin: auto; }
@media (max-width: 620px) { .eq-box { padding: 28px 20px 24px; } }
.eq-close { position: absolute; right: 12px; top: 8px; border: 0; background: none; font-size: 30px; line-height: 1; color: var(--ink-soft); cursor: pointer; padding: 4px 8px; }
.eq-close:hover { color: var(--ruby); }
[dir="rtl"] .eq-close { right: auto; left: 12px; }
.eq-box h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 8px; }
.eq-lede { color: var(--ink-soft); font-size: .96rem; margin: 10px 0 22px; line-height: 1.6; }
.eq-row { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0 16px; }
@media (min-width: 520px) { .eq-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.eq-err { background: var(--white); border-left: 3px solid var(--ruby); padding: 11px 14px; color: var(--ink); font-size: .93rem; margin: 0 0 16px; }
[dir="rtl"] .eq-err { border-left: 0; border-right: 3px solid var(--ruby); }
.eq-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.eq-thanks { text-align: center; padding: 14px 0 6px; }
.eq-thanks svg { width: 46px; height: 46px; color: var(--ruby); margin-bottom: 14px; }
.eq-thanks h2 { margin-bottom: 10px; }
.eq-thanks p { color: var(--ink-soft); font-size: .96rem; line-height: 1.65; margin-bottom: 22px; }

/* ═══ QUESTIONS FRÉQUENTES ═══
   <details>/<summary> natifs : la réponse est dans le HTML même repliée, donc
   lisible par les moteurs et les assistants, et la page marche sans script. */
.faq-list { max-width: 820px; margin: 38px auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative;
  font-family: "Work Sans", sans-serif; font-weight: 600; font-size: 1.02rem;
  color: var(--ink); line-height: 1.45;
}
[dir="rtl"] .faq-item summary { padding: 20px 0 20px 44px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px;
  margin-top: -7px; border-right: 2px solid var(--ruby); border-bottom: 2px solid var(--ruby);
  transform: rotate(45deg); transition: transform .25s ease;
}
[dir="rtl"] .faq-item summary::after { right: auto; left: 8px; }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq-item summary:hover { color: var(--ruby); }
.faq-a { padding: 0 44px 22px 0; }
[dir="rtl"] .faq-a { padding: 0 0 22px 44px; }
.faq-a p { color: var(--ink-soft); font-size: .98rem; line-height: 1.7; margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item summary::after { transition: none; } }

/* ═══ ÉTIQUETTES DES CARTES CHAMBRE ═══
   Sur la photo, dans le voile sombre : bord clair et fond translucide pour
   rester lisibles quelle que soit la photo dessous. */
.rc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.rc-tags span {
  font-family: "Work Sans", sans-serif; font-size: .66rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
  color: #fff; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.42); border-radius: 999px;
  padding: 4px 10px; backdrop-filter: blur(2px);
}
@media (max-width: 480px) { .rc-tags span { font-size: .62rem; padding: 3px 8px; } }
