/* =========================================================
   Fly-Inn Madagascar — Refonte
   Direction : Aviation chic tropical
   Palette  : Bleu nuit / Ivoire / Cuivre / Vert vanille
   ========================================================= */

:root {
  --ink:           #0B1C2E;       /* bleu nuit profond */
  --ink-2:         #142b44;
  --ink-soft:      #1e3555;
  --cream:         #F4EEE2;       /* ivoire */
  --cream-2:       #EBE2D0;
  --paper:         #FBF8F1;
  --copper:        #B8804A;       /* accent cuivre/laiton */
  --copper-2:      #C99465;
  --copper-deep:   #8E5E2E;
  --vanilla:       #D9C88A;
  --jungle:        #2E4A3B;       /* vert vanille malgache */
  --line:          rgba(11,28,46,.12);
  --line-cream:    rgba(244,238,226,.18);
  --muted:         #5a6b7c;

  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono:  "JetBrains Mono", "SFMono-Regular", Menlo, monospace;

  --rad-s: 6px;
  --rad-m: 14px;
  --rad-l: 22px;
  --container: min(1340px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ========= TYPO ========= */
.display {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.96;
}
.italic { font-style: italic; color: var(--copper); }
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px; background: currentColor; display:inline-block;
}

/* ========= NAV ========= */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 90;
  padding: 18px 0;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, color .35s ease;
  color: var(--cream);
}
.nav.scrolled {
  background: rgba(251,248,241,.92);
  backdrop-filter: blur(14px);
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: 38px; width: auto;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .2s ease;
}
.brand:hover .brand-logo { transform: scale(1.04); }
.footer .brand-logo { height: 56px; opacity: .96; }

.hero-logo {
  display: block;
  height: 120px; width: auto;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeIn .9s ease .15s forwards;
}
@media (max-width: 768px) {
  .hero-logo { height: 88px; margin-bottom: 18px; }
}

.nav-links {
  display: flex; gap: 30px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative; padding: 6px 0;
  opacity: .85;
  transition: opacity .2s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-tel {
  font-family: var(--mono, monospace); font-size: 13px; font-weight: 500;
  letter-spacing: .02em; color: inherit; opacity: .85; white-space: nowrap;
  text-decoration: none; transition: color .2s, opacity .2s;
}
.nav-tel:hover { color: var(--copper); opacity: 1; }
.hero-book-secure {
  margin-top: 6px; font-size: 12px; line-height: 1.4;
  color: var(--ink-soft, #1e3555); opacity: .85; text-align: center;
}
.footer-tel { color: inherit; text-decoration: none; transition: color .2s; }
.footer-tel:hover { color: var(--copper); }
/* ========= Sélecteur de langue (dropdown + drapeaux) ========= */
.lang-switcher { position: relative; }
.flag {
  display: inline-block; width: 22px; height: 15px; flex-shrink: 0;
  border-radius: 2px; overflow: hidden; line-height: 0;
  box-shadow: inset 0 0 0 1px rgba(11,28,46,.12);
}
.flag svg { width: 100%; height: 100%; display: block; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 5px 12px;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  color: inherit; cursor: pointer; transition: border-color .2s ease, background .2s ease;
}
.lang-toggle:hover { border-color: var(--copper); }
.lang-current-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.lang-caret { font-size: 10px; opacity: .6; transition: transform .25s ease; }
.lang-toggle[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 190px; padding: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--rad-m);
  box-shadow: 0 14px 44px rgba(11,28,46,.16);
  display: none; z-index: 120;
}
.lang-menu.open { display: block; animation: langfade .18s ease; }
@keyframes langfade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.lang-option {
  display: flex; align-items: center; gap: 11px; width: 100%;
  padding: 9px 12px; background: none; border: none; border-radius: 8px;
  cursor: pointer; color: var(--ink); text-align: left;
  font-family: var(--sans); font-size: 14.5px;
}
.lang-option:hover { background: var(--paper); }
.lang-option[aria-selected="true"] { font-weight: 600; }
.lang-option[aria-selected="true"]::after {
  content: "✓"; margin-left: auto; color: var(--copper); font-weight: 700;
}

/* Bannière de suggestion de langue */
.lang-banner {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 140%);
  z-index: 210; max-width: calc(100vw - 32px);
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; background: var(--ink); color: var(--cream);
  border-radius: var(--rad-m); box-shadow: 0 16px 50px rgba(11,28,46,.32);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.lang-banner.show { transform: translate(-50%, 0); }
.lang-banner .flag { box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.lang-banner-msg { font-size: 14px; }
.lang-banner-yes, .lang-banner-no {
  border: none; border-radius: 999px; cursor: pointer;
  font-family: var(--sans); font-size: 13px; padding: 7px 14px; white-space: nowrap;
}
.lang-banner-yes { background: var(--copper); color: #fff; }
.lang-banner-yes:hover { background: var(--copper-deep); }
.lang-banner-no { background: transparent; color: rgba(255,255,255,.7); padding: 7px 8px; }
.lang-banner-no:hover { color: #fff; }
@media (max-width: 520px) {
  .lang-banner { flex-wrap: wrap; justify-content: center; text-align: center; left: 16px; right: 16px; transform: translateY(140%); max-width: none; }
  .lang-banner.show { transform: translateY(0); }
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .35s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--copper); color: var(--cream);
}
.btn-primary:hover {
  background: var(--copper-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(184,128,74,.6);
}
.btn-ghost {
  background: transparent; color: currentColor;
  border-color: currentColor;
}
.btn-ghost:hover { background: currentColor; color: var(--ink); }
.nav.scrolled .btn-ghost:hover { color: var(--cream); }

.btn-dark {
  background: var(--ink); color: var(--cream);
}
.btn-dark:hover { background: var(--ink-2); }

.btn-inline {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding: 4px 0;
  cursor: pointer;
  color: var(--copper);
  transition: gap .3s ease;
}
.btn-inline:hover { gap: 14px; }

/* ========= HERO ========= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 160px 0 80px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at top right, rgba(184,128,74,.25), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(46,74,59,.4), transparent 55%),
    linear-gradient(180deg, #0B1C2E 0%, #081420 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,238,226,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,238,226,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-stars .star {
  position: absolute;
  width: 2px; height: 2px; border-radius: 50%;
  background: var(--cream);
  opacity: .5;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity: .15; transform: scale(1); }
  50%     { opacity: .9;  transform: scale(1.4); }
}

.hero-inner {
  position: relative; z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 80px;
  align-items: center;
}
.hero-copy { max-width: 780px; }
.hero-copy .eyebrow { color: var(--vanilla); }
.hero-copy .eyebrow::before { background: var(--vanilla); }

.hero-title {
  font-size: clamp(54px, 8.5vw, 128px);
  margin: 24px 0 28px;
  color: var(--cream);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .line:nth-child(2) > span { animation-delay: .1s; }
.hero-title .line:nth-child(3) > span { animation-delay: .2s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-sub {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(244,238,226,.78);
  margin-bottom: 42px;
  opacity: 0;
  animation: fadeIn .9s ease .5s forwards;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeIn .9s ease .65s forwards; }
@keyframes fadeIn { to { opacity: 1; } }

/* ========= HERO BOOKING CARD ========= */
.hero-book {
  position: relative;
  background: linear-gradient(180deg, rgba(20,43,68,.55), rgba(11,28,46,.65));
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(244,238,226,.12);
  border-radius: var(--rad-l);
  padding: 32px 32px 24px;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(244,238,226,.08);
  opacity: 0;
  animation: heroBookRise .9s cubic-bezier(.2,.7,.2,1) .45s forwards;
}
@keyframes heroBookRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Decorative copper corner — subtle, editorial */
.hero-book::before {
  content: "";
  position: absolute;
  top: -1px; right: -1px;
  width: 54px; height: 54px;
  border-top: 1px solid var(--copper-2);
  border-right: 1px solid var(--copper-2);
  border-top-right-radius: var(--rad-l);
  pointer-events: none;
  opacity: .85;
}
.hero-book::after {
  content: "";
  position: absolute;
  bottom: -1px; left: -1px;
  width: 54px; height: 54px;
  border-bottom: 1px solid var(--copper-2);
  border-left: 1px solid var(--copper-2);
  border-bottom-left-radius: var(--rad-l);
  pointer-events: none;
  opacity: .4;
}

.hero-book-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.hero-book-stars {
  display: inline-flex; gap: 3px; align-items: center;
  color: var(--copper-2);
}
.hero-book-stars svg {
  width: 15px; height: 15px;
  fill: currentColor;
  filter: drop-shadow(0 0 6px rgba(201,148,101,.45));
}
.hero-book-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(244,238,226,.62);
}

.hero-book-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(244,238,226,.1);
}

.hero-book-form {
  display: flex; flex-direction: column; gap: 18px;
}
.hero-book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-book-field {
  display: flex; flex-direction: column; gap: 7px;
  position: relative;
}
.hero-book-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(244,238,226,.5);
}
.hero-book-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,238,226,.2);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 0 9px;
  outline: none;
  transition: border-color .25s ease;
  color-scheme: dark;
  width: 100%;
}
.hero-book-input:focus {
  border-bottom-color: var(--copper-2);
}
.hero-book-input::-webkit-calendar-picker-indicator {
  filter: invert(.72) sepia(.5) saturate(2.2) hue-rotate(351deg) brightness(.95);
  cursor: pointer;
  opacity: .8;
}

.hero-book-stepper {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(244,238,226,.2);
  padding: 2px 0 6px;
}
.stepper-btn {
  width: 30px; height: 30px;
  border: 1px solid rgba(244,238,226,.22);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font-size: 16px;
  font-family: var(--sans);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .15s ease;
  display: grid; place-items: center;
  line-height: 1;
  padding: 0;
}
.stepper-btn:hover {
  background: var(--copper-2);
  border-color: var(--copper-2);
  color: var(--ink);
}
.stepper-btn:active { transform: scale(.94); }
.stepper-btn:disabled {
  opacity: .3; cursor: not-allowed;
  background: transparent; border-color: rgba(244,238,226,.22); color: var(--cream);
}
.stepper-val {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: .02em;
}

.hero-book-cta {
  margin-top: 8px;
  background: var(--copper-2);
  color: var(--ink);
  border: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 17px 22px;
  border-radius: var(--rad-s);
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .3s ease;
}
.hero-book-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.hero-book-cta:hover::before { transform: translateY(0); }
.hero-book-cta > * { position: relative; z-index: 1; }
.hero-book-cta .arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.hero-book-cta:hover .arrow { transform: translateX(5px); }

.hero-book-trust {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,238,226,.5);
  text-align: center;
  line-height: 1.5;
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%; bottom: 28px; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(244,238,226,.55);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.hero-scroll-indicator::after {
  content: ""; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(.2); transform-origin: top; }
  50%  { transform: scaleY(1);  transform-origin: top; }
  100% { transform: scaleY(.2); transform-origin: bottom; }
}

/* airplane svg flying path */
.hero-plane {
  position: absolute;
  top: 35%; left: -8%;
  width: 120px; color: var(--copper-2);
  opacity: .6;
  animation: planeFly 22s linear infinite;
  z-index: 1;
}
@keyframes planeFly {
  0%   { transform: translate(0, 0) rotate(-5deg); }
  50%  { transform: translate(50vw, -80px) rotate(-8deg); }
  100% { transform: translate(120vw, 40px) rotate(-5deg); }
}

/* ========= MARQUEE ========= */
.marquee {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: scroll-x 40s linear infinite;
  font-family: var(--serif);
  font-size: 28px; font-style: italic; font-weight: 300;
  color: var(--cream);
}
.marquee-track span { opacity: .85; }
.marquee-track .dot {
  width: 8px; height: 8px; background: var(--copper);
  border-radius: 50%; display: inline-block;
  align-self: center;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========= SECTIONS BASE ========= */
.section {
  padding: 120px 0;
  position: relative;
}
.section-inner { width: var(--container); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
}

.section-dark { background: var(--ink); color: var(--cream); }
.section-dark .section-head p { color: rgba(244,238,226,.65); }
.section-dark .eyebrow { color: var(--vanilla); }

.section-cream { background: var(--cream); }

/* ========= INTRO ========= */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-copy h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 16px 0 28px;
}
.intro-copy p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.intro-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.intro-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.intro-feature .n {
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  color: var(--copper); padding-top: 4px;
}
.intro-feature h4 {
  font-family: var(--serif); font-weight: 400; font-size: 22px;
  margin: 0 0 6px; letter-spacing: -0.01em;
}
.intro-feature p { margin: 0; color: var(--muted); font-size: 15px; }

.intro-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--rad-l);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.intro-visual .placeholder {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg,
      rgba(244,238,226,.04) 0 2px,
      transparent 2px 14px),
    linear-gradient(135deg, #142b44, #0B1C2E);
  display: grid; place-items: center;
}
.intro-visual .placeholder-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(244,238,226,.5);
}
.intro-visual .badge {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  background: var(--copper);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: var(--rad-m);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.intro-visual .badge-num {
  font-family: var(--serif); font-size: 40px; line-height: 1; font-weight: 300;
}
.intro-visual .badge-txt {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  text-align: right;
}

/* ========= ROOMS ========= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-l);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -30px rgba(11,28,46,.25);
}
.room-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink-soft);
  overflow: hidden;
}
.room-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.room-card:hover .room-visual img { transform: scale(1.06); }
.room-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(244,238,226,.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}
.room-body { padding: 28px 26px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.room-body h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 28px; margin: 0;
  letter-spacing: -0.01em;
}
.room-body > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; flex: 1; }
.room-amenities {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.room-amenities span {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
  background: var(--cream-2);
  padding: 6px 10px;
  border-radius: 999px;
}
.room-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.room-price {
  font-family: var(--serif);
  font-size: 34px; font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}
.room-price small {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
  display: block; margin-top: 6px;
  font-weight: 400;
}

/* ========= SERVICES ========= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-cream);
  border-left: 1px solid var(--line-cream);
}
.service {
  padding: 40px 30px;
  border-right: 1px solid var(--line-cream);
  border-bottom: 1px solid var(--line-cream);
  transition: background .4s ease;
  cursor: default;
  min-height: 220px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.section-dark .service:hover { background: rgba(244,238,226,.03); }
.service-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .2em; color: var(--copper);
}
.service h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 22px; margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.service p { margin: 0; color: rgba(244,238,226,.65); font-size: 14.5px; line-height: 1.55; }

/* ========= RESTAURANT — dual cards (Rooftop + Salle) ========= */
.resto-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.resto-head h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 16px 0 22px;
}
.resto-head p {
  color: var(--muted);
  font-size: 17px; line-height: 1.7;
  margin: 0;
}

.resto-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.resto-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-l);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.resto-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,128,74,.35);
  box-shadow: 0 24px 48px -28px rgba(11,28,46,.25);
}
.resto-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-soft);
}
.resto-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.resto-card:hover .resto-card-img img { transform: scale(1.04); }
.resto-card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,28,46,.65) 100%);
  pointer-events: none;
}
.resto-card-loc {
  position: absolute; left: 18px; bottom: 16px; z-index: 1;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream);
}
.resto-card-body {
  display: flex; flex-direction: column;
  padding: 32px 32px 28px;
  flex: 1;
}
.resto-card-body .eyebrow { color: var(--copper); }
.resto-card-body h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05; letter-spacing: -0.01em;
  margin: 10px 0 14px;
}
.resto-card-body p {
  color: var(--muted);
  font-size: 15.5px; line-height: 1.65;
  margin: 0 0 22px;
}
.resto-card-meta {
  display: flex; flex-wrap: wrap;
  gap: 0 10px;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  padding: 14px 0;
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}
.resto-card-meta .dot { color: var(--copper); }
.resto-card-actions {
  display: flex; align-items: center; gap: 18px;
  margin-top: auto;
  flex-wrap: wrap;
}
.resto-card-menu {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.resto-card-menu:hover {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.resto-card-menu[data-menu-soon] {
  /* placeholder state — la carte n'est pas encore en ligne */
  cursor: pointer;
  border-style: dashed;
  color: var(--muted);
  border-color: var(--line);
}
.resto-card-menu[data-menu-soon]:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
  border-style: solid;
}
.resto-card-badge {
  display: inline-block;
  padding: 3px 8px;
  background: var(--vanilla);
  color: var(--ink);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .15em;
  font-weight: 600;
}
.resto-card-menu:not([data-menu-soon]) .resto-card-badge { display: none; }

.resto-card-book {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--copper);
  position: relative;
}
.resto-card-book::after {
  content: ""; position: absolute; left: 0; right: 24px; bottom: -4px;
  height: 1px; background: currentColor;
  transform: scaleX(.6); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.resto-card-book:hover { color: var(--copper-deep); }
.resto-card-book:hover::after { transform: scaleX(1); }
.resto-card-book .arrow { transition: transform .35s ease; }
.resto-card-book:hover .arrow { transform: translateX(4px); }

/* Toast "carte bientôt en ligne" */
.resto-toast {
  position: fixed;
  left: 50%; bottom: 110px;
  transform: translate(-50%, 12px);
  z-index: 70;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .08em;
  box-shadow: 0 18px 40px -18px rgba(11,28,46,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.resto-toast[hidden] { display: none; }
.resto-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Modal "Réserver une table" — déclenchée par [data-table-book] */
.resto-modal-overlay {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(11,28,46,.62);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  padding: 20px;
}
.resto-modal-overlay[hidden] { display: none; }
.resto-modal-overlay.open { opacity: 1; pointer-events: auto; }
.resto-modal {
  background: var(--paper);
  border-radius: var(--rad-l);
  width: min(540px, 100%);
  max-height: 92vh; overflow: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(.98);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.resto-modal-overlay.open .resto-modal { transform: translateY(0) scale(1); }
.resto-modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; display: grid; place-items: center;
  transition: all .2s ease;
}
.resto-modal-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.resto-modal-eyebrow { color: var(--copper); }
.resto-modal h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: 34px; line-height: 1.05;
  margin: 12px 0 10px; letter-spacing: -0.02em;
}
.resto-modal-sub {
  margin: 0 0 28px; color: var(--muted);
  font-size: 15px; line-height: 1.6;
  max-width: 92%;
}

.resto-modal-list {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.resto-modal-card {
  border: 1px solid var(--line);
  border-radius: var(--rad-m);
  padding: 20px 22px;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.resto-modal-card:hover {
  border-color: rgba(184,128,74,.4);
  background: var(--cream);
}
.resto-modal-card.is-target {
  border-color: var(--copper);
  background: var(--cream);
}
.resto-modal-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin-bottom: 8px;
  flex-wrap: wrap;
}
.resto-modal-card-eyebrow {
  font-family: var(--serif); font-weight: 400;
  font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink);
}
.resto-modal-card-cuisine {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
}
.resto-modal-card-phone {
  font-family: var(--mono); font-size: 13px;
  letter-spacing: .12em;
  color: var(--ink);
  margin-bottom: 14px;
}
.resto-modal-card-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.resto-modal-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.resto-modal-btn:hover { transform: translateY(-1px); }
.resto-modal-btn-wa {
  background: #25D366;
  color: #fff;
}
.resto-modal-btn-wa:hover { background: #1faa54; }
.resto-modal-btn-tel {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.resto-modal-btn-tel:hover {
  background: var(--ink); color: var(--cream);
}

.resto-modal-note {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
  line-height: 1.55;
  font-style: italic;
}

@media (max-width: 900px) {
  .resto-pair { grid-template-columns: 1fr; gap: 28px; }
  .resto-card-body { padding: 26px 24px 24px; }
  .resto-card-actions { gap: 14px; }
  .resto-toast { bottom: 96px; max-width: calc(100% - 32px); text-align: center; }
  .resto-modal { padding: 32px 24px 28px; }
  .resto-modal h3 { font-size: 28px; }
  .resto-modal-card { padding: 18px 18px; }
  .resto-modal-card-actions { gap: 8px; }
  .resto-modal-btn { padding: 10px 14px; font-size: 10.5px; }
}

/* ========= REVIEWS ========= */
.reviews-head {
  display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 40px;
  margin-bottom: 48px;
}
.reviews-score {
  display: flex; align-items: center; gap: 24px;
}
.score-big {
  font-family: var(--serif); font-size: 96px; font-weight: 300;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--copper);
}
.score-meta { display: flex; flex-direction: column; gap: 6px; }
.stars {
  font-size: 20px; color: var(--copper); letter-spacing: 2px;
}
.score-meta small {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-m);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, border-color .3s ease;
}
.review:hover {
  transform: translateY(-3px);
  border-color: var(--copper);
}
.review-head {
  display: flex; justify-content: space-between; align-items: start; gap: 12px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--jungle); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 17px;
  font-weight: 500;
}
.review-name { font-weight: 500; font-size: 14.5px; }
.review-date {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}
.review-stars { color: var(--copper); font-size: 13px; letter-spacing: 2px; }
.review h5 {
  font-family: var(--serif); font-weight: 400;
  font-size: 18px; margin: 0;
  letter-spacing: -0.01em;
}
.review p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.review-badge {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--jungle); display: inline-flex; gap: 6px; align-items: center;
  margin-top: 4px;
}
.review-badge::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: var(--jungle);
  color: white;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 10.2L4 7.7l-1.1 1.1L6.5 12.4 13.1 5.8 12 4.7z'/></svg>") center/70% no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 10.2L4 7.7l-1.1 1.1L6.5 12.4 13.1 5.8 12 4.7z'/></svg>") center/70% no-repeat;
}

/* ========= FAQ ========= */
.faq-list {
  max-width: 920px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  padding: 28px 0;
  background: none; border: none;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  color: inherit;
  transition: color .3s ease;
}
.faq-q:hover { color: var(--copper); }
.faq-plus {
  width: 32px; height: 32px; flex-shrink: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .3s ease, border-color .3s ease, transform .4s ease;
}
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .4s ease, opacity .4s ease;
}
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-plus { background: var(--copper); border-color: var(--copper); color: var(--cream); }
.faq-item.open .faq-plus::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 60px 28px 0;
  color: var(--muted);
  font-size: 16px; line-height: 1.7;
  max-width: 720px;
}

/* ========= LOCATION ========= */
.location-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: center;
}
.location-map {
  aspect-ratio: 1.2/1;
  border-radius: var(--rad-l);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-cream);
}
.location-map::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(184,128,74,.3), transparent 50%),
    repeating-linear-gradient(0deg, rgba(244,238,226,.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(244,238,226,.05) 0 1px, transparent 1px 40px);
}
.map-pin {
  position: absolute;
  left: 50%; top: 55%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  background: var(--copper); border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(184,128,74,.25), 0 0 0 22px rgba(184,128,74,.12);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 10px rgba(184,128,74,.25), 0 0 0 22px rgba(184,128,74,.12); }
  50%     { box-shadow: 0 0 0 16px rgba(184,128,74,.18), 0 0 0 32px rgba(184,128,74,.06); }
}
.map-plane {
  position: absolute; top: 30%; left: 10%;
  width: 44px; height: 44px; color: var(--cream); opacity: .85;
  transform: rotate(-30deg);
}
.map-label {
  position: absolute;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,238,226,.6);
}
.map-label-1 { left: 24px; top: 24px; }
.map-label-2 { right: 24px; bottom: 24px; }
.map-hotel-label {
  position: absolute;
  left: calc(50% + 30px); top: calc(55% - 8px);
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--copper-2);
}

.location-pois { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.poi {
  display: grid; grid-template-columns: 50px 1fr 1fr;
  gap: 20px; align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s ease;
}
.poi:hover { padding-left: 12px; }
.poi-num { font-family: var(--mono); font-size: 11px; color: var(--copper); letter-spacing: .2em; }
.poi-name {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: -0.01em;
}
.poi-detail { font-size: 14px; color: var(--muted); text-align: right; }

/* ========= CTA BLOCK ========= */
.cta-block {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(184,128,74,.2), transparent 60%);
}
.cta-inner { position: relative; width: var(--container); margin: 0 auto; }
.cta-block h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(42px, 6.5vw, 96px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--cream);
}
.cta-block h2 .italic { color: var(--vanilla); }
.cta-block p {
  font-size: 17px; max-width: 540px; margin: 0 auto 40px;
  color: rgba(244,238,226,.7);
}

/* ========= FOOTER ========= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 36px;
  border-top: 1px solid var(--line-cream);
}
.footer-inner { width: var(--container); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-cream);
}
.footer h5 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--copper-2);
  margin: 0 0 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer a { color: rgba(244,238,226,.78); transition: color .2s ease; }
.footer a:hover { color: var(--copper-2); }
.footer-tag { color: rgba(244,238,226,.7); font-size: 14.5px; line-height: 1.65; max-width: 320px; margin-top: 18px; }
.footer-contact { font-size: 14px; line-height: 1.8; color: rgba(244,238,226,.78); }
.footer-contact strong { color: var(--cream); font-weight: 500; display: block; margin-bottom: 4px; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,238,226,.5);
  gap: 20px;
}
.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom .socials a { color: rgba(244,238,226,.6); }
.footer-credit {
  width: var(--container); margin: 22px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line-cream);
  text-align: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(244,238,226,.4);
}
.footer-credit a {
  color: rgba(244,238,226,.65);
  border-bottom: 1px solid rgba(244,238,226,.2);
  transition: color .2s ease, border-color .2s ease;
}
.footer-credit a:hover { color: var(--copper-2); border-bottom-color: var(--copper-2); }
.footer-legal-links {
  width: var(--container); margin: 0 auto;
  padding-top: 18px;
  text-align: center;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,238,226,.5);
}
.footer-legal-links a {
  color: rgba(244,238,226,.7);
  margin: 0 2px;
  transition: color .2s ease;
}
.footer-legal-links a:hover { color: var(--copper-2); }

/* ========= MODAL ========= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11,28,46,.6);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  border-radius: var(--rad-l);
  width: min(560px, 100%);
  max-height: 92vh; overflow: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(.98);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  cursor: pointer; display: grid; place-items: center;
  transition: all .2s ease;
}
.modal-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.modal h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: 36px; margin: 0 0 10px; letter-spacing: -0.02em;
}
.modal > p.sub { margin: 0 0 28px; color: var(--muted); font-size: 15px; }
.modal-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.modal-field { display: flex; flex-direction: column; gap: 6px; }
.modal-field label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.modal-field input, .modal-field select {
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--rad-s);
  padding: 12px 14px;
  font-family: var(--sans); font-size: 14.5px;
  color: var(--ink);
  transition: border-color .2s ease;
}
.modal-field input:focus, .modal-field select:focus {
  outline: none; border-color: var(--copper);
}
.modal-field.full { grid-column: 1 / -1; }
.modal-estimate {
  grid-column: 1/-1;
  margin-top: 8px;
  padding: 18px 20px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--rad-m);
  display: flex; justify-content: space-between; align-items: baseline;
}
.modal-estimate label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,238,226,.6);
}
.modal-estimate .amount {
  font-family: var(--serif); font-size: 34px; font-weight: 300;
  color: var(--copper-2);
}
.modal-confirm {
  grid-column: 1 / -1;
}
.modal-note {
  grid-column: 1/-1;
  font-size: 12px; color: var(--muted);
  text-align: center; margin-top: -4px;
}

/* ========= FLOATING BOOK BUTTON ========= */
.floating-book {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 50;
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.floating-book.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}

/* ========= REVEAL ANIMATION ========= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .56s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ========= ROOM DETAIL PAGE ========= */
.detail-nav-wrap {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  position: sticky; top: 0; z-index: 80;
  backdrop-filter: blur(10px);
  background: rgba(251,248,241,.92);
}
.detail-nav-inner {
  width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.detail-back-link {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink);
}
.detail-back-link:hover { color: var(--copper); }

.detail-hero {
  padding: 60px 0 40px;
}
.detail-hero-inner { width: var(--container); margin: 0 auto; }
.detail-hero .hero-sub {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  opacity: 1;
  animation: none;
}
.detail-head {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end;
  margin-bottom: 48px;
}
.detail-head h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 14px 0 0;
}
.detail-price-box {
  text-align: right;
}
.detail-price-box .price {
  font-family: var(--serif); font-size: 56px; font-weight: 300;
  line-height: 1; color: var(--copper);
}
.detail-price-box small {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); display: block; margin-top: 6px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  aspect-ratio: 16/8;
  border-radius: var(--rad-l);
  overflow: hidden;
}
.detail-gallery > * { background: var(--ink-soft); overflow: hidden; }
.detail-gallery > *:first-child { grid-row: span 2; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }

.detail-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  padding: 80px 0;
  width: var(--container); margin: 0 auto;
}
.detail-main { padding-right: 20px; }
.detail-section { margin-bottom: 60px; }
.detail-section h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.detail-section p { font-size: 17px; color: var(--muted); line-height: 1.7; margin: 0 0 14px; }

.detail-amenities-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 14px;
}
.detail-amenity {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--rad-s);
  font-size: 14.5px;
}
.detail-amenity-icon {
  width: 8px; height: 8px; background: var(--copper); border-radius: 50%;
  flex-shrink: 0;
}

.detail-policies { display: grid; gap: 0; border-top: 1px solid var(--line); }
.detail-policy {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.detail-policy strong {
  font-family: var(--serif); font-weight: 400; font-size: 18px;
}
.detail-policy span { color: var(--muted); font-size: 15px; }

.detail-sidebar {
  position: sticky; top: 100px;
  align-self: start;
  background: var(--ink);
  color: var(--cream);
  padding: 32px;
  border-radius: var(--rad-l);
}
.detail-sidebar h4 {
  font-family: var(--serif); font-weight: 300;
  font-size: 28px; margin: 0 0 8px;
}
.detail-sidebar > small {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,238,226,.5);
}
.sidebar-price {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: var(--copper-2); margin: 20px 0 4px;
}
.sidebar-price-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(244,238,226,.6);
  margin-bottom: 22px;
}
.detail-sidebar .btn { width: 100%; }
.sidebar-features {
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line-cream);
}
.sidebar-feature {
  font-size: 13.5px; color: rgba(244,238,226,.8);
  display: flex; gap: 10px;
}
.sidebar-feature::before {
  content: "✓"; color: var(--copper-2);
  font-family: var(--mono);
}

.similar-rooms {
  background: var(--cream);
  padding: 100px 0;
}

/* ========= RESPONSIVE ========= */
/* Nav crowding: tighten then hide as width shrinks */
@media (max-width: 1100px) {
  .nav-links { gap: 22px; font-size: 13px; }
  .nav-right .btn-primary { display: none; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
}

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-book { max-width: 480px; }
  .intro-grid, .location-grid { grid-template-columns: 1fr; gap: 50px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .rooms-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .detail-body { grid-template-columns: 1fr; gap: 50px; }
  .detail-sidebar { position: static; }
  .detail-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; aspect-ratio: auto; }
  .detail-gallery > *:first-child { grid-column: span 2; aspect-ratio: 16/9; }
  .detail-gallery > *:not(:first-child) { aspect-ratio: 4/3; }
}
@media (max-width: 720px) {
  :root { --container: calc(100% - 32px); }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .rooms-grid, .reviews-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .detail-amenities-grid { grid-template-columns: 1fr; }
  .modal-form { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: start; }
  .detail-head { grid-template-columns: 1fr; }
  .marquee-track { font-size: 22px; gap: 28px; }
  .hero { padding-top: 130px; padding-bottom: 60px; }

  /* Nav fits on narrow screens: hide CTA (already in hero), shrink brand */
  .nav-inner { padding: 0 16px; gap: 12px; }
  .brand-logo { height: 32px; }
  .footer .brand-logo { height: 48px; }
  .nav-right { gap: 8px; }
  .nav-right .btn-primary { display: none; }
  .lang-toggle { padding: 5px 9px; gap: 6px; }

  /* Hero: stop overflow, stack nicely */
  .hero-title { font-size: clamp(32px, 9.5vw, 48px); margin: 18px 0 22px; }
  .hero-sub { font-size: 15px; line-height: 1.55; margin-bottom: 30px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; padding-left: 18px; padding-right: 18px; }
  .hero-plane { opacity: 0.35; width: 55%; }
  .hero-inner { gap: 36px; }
  .hero-book { padding: 26px 22px 20px; border-radius: var(--rad-m); }
  .hero-book::before, .hero-book::after { width: 42px; height: 42px; border-radius: 0; }
  .hero-book-title { font-size: 24px; margin-bottom: 20px; padding-bottom: 18px; }
  .hero-book-row { gap: 12px; }
  .hero-book-cta { padding: 15px 18px; font-size: 12px; }

  /* Prevent any runaway element breaking the layout */
  html, body { overflow-x: hidden; }
}

/* Small phones: stack hero CTAs, tighten hero-book */
@media (max-width: 560px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { flex: 1 1 100%; width: 100%; }
}

/* Very small phones ≤ 420px */
@media (max-width: 420px) {
  .brand-name { font-size: 14px; }
  .hero-title { font-size: clamp(28px, 9vw, 38px); letter-spacing: -0.01em; }
  .hero-sub { font-size: 14px; }
  .lang-current-label { display: none; } /* sur très petits écrans : drapeau + flèche seuls */
  .eyebrow { font-size: 10px !important; letter-spacing: .18em !important; }
  .hero-eyebrow { font-size: 10px !important; }
  /* Marquee: shorter to reduce horizontal pressure */
  .marquee-track { font-size: 18px; gap: 20px; }

  /* Hero booking card: tighter padding, smaller trust text */
  .hero-book { padding: 22px 18px 18px; }
  .hero-book::before, .hero-book::after { width: 36px; height: 36px; }
  .hero-book-head { gap: 10px; flex-wrap: wrap; }
  .hero-book-kicker { font-size: 9px; letter-spacing: .2em; }
  .hero-book-title { font-size: 21px; margin-bottom: 18px; padding-bottom: 16px; }
  .hero-book-row { grid-template-columns: 1fr; gap: 16px; }
  .hero-book-input { font-size: 13px; }
  .hero-book-trust { font-size: 9px; letter-spacing: .14em; }
}

/* ========= GALLERY ========= */
/* ========= GALLERY SLIDER ========= */
.gallery-slider {
  position: relative;
  margin-top: 8px;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  width: 100%;
  transition: transform .6s cubic-bezier(.4,.0,.1,1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px 240px;
  gap: 14px;
}
/* Layout 1 — héro haut-gauche */
.gallery-grid--1 {
  grid-template-areas:
    "a a a a a b b b c c c c"
    "a a a a a d d d c c c c"
    "e e e e f f f f g g g g";
}
/* Layout 2 — héro haut-droite */
.gallery-grid--2 {
  grid-template-areas:
    "b b b c c c c a a a a a"
    "d d d e e e e a a a a a"
    "f f f f f f g g g g g g";
}
/* Layout 3 — héro bas-gauche */
.gallery-grid--3 {
  grid-template-areas:
    "b b b b c c c c d d d d"
    "a a a a a e e e f f f f"
    "a a a a a g g g g g g g";
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--rad-m);
  cursor: zoom-in;
  display: block;
  isolation: isolate;
  background: var(--ink-2);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,28,46,.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-caption {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.g-item:hover .g-caption {
  opacity: 1; transform: translateY(0);
}
.g-a { grid-area: a; }
.g-b { grid-area: b; }
.g-c { grid-area: c; }
.g-d { grid-area: d; }
.g-e { grid-area: e; }
.g-f { grid-area: f; }
.g-g { grid-area: g; }

/* Decorative copper pin on the big hero cell — reflète la vue courante */
.g-a::before {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--vanilla);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.gallery-grid--1 .g-a::before { content: "01 / 03"; }
.gallery-grid--2 .g-a::before { content: "02 / 03"; }
.gallery-grid--3 .g-a::before { content: "03 / 03"; }

/* ----- Flèches de navigation ----- */
.gallery-nav {
  position: absolute;
  top: calc(50% - 24px);
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(11,28,46,.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--cream);
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  transition: opacity .35s ease, background .25s ease, transform .25s ease;
}
.gallery-slider:hover .gallery-nav { opacity: 1; }
.gallery-nav:hover { background: var(--copper, #b07a3f); }
.gallery-nav:focus-visible { opacity: 1; outline: 2px solid var(--vanilla); outline-offset: 2px; }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-nav svg { display: block; }

/* ----- Points ----- */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.gallery-dot {
  width: 9px; height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(11,28,46,.22);
  cursor: pointer;
  transition: background .3s ease, transform .3s ease, width .3s ease;
}
.gallery-dot:hover { background: rgba(11,28,46,.45); }
.gallery-dot.is-active {
  width: 26px;
  border-radius: 6px;
  background: var(--copper, #b07a3f);
}
.gallery-dot:focus-visible { outline: 2px solid var(--copper, #b07a3f); outline-offset: 3px; }

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 260px 220px 220px 220px;
    grid-template-areas:
      "a a a a a a"
      "b b b c c c"
      "d d e e f f"
      "g g g g g g";
  }
  .g-a::before { font-size: 9px; top: 12px; left: 14px; }
}
@media (max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 200px);
    grid-template-areas: "a" "b" "c" "d" "e" "f" "g";
  }
}

/* ========= LIGHTBOX ========= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(6,14,24,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  padding: 40px;
}
.lightbox.open {
  opacity: 1; pointer-events: auto;
}
.lb-figure {
  margin: 0;
  max-width: min(1200px, 100%);
  max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lb-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--rad-s);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,.8);
  animation: lbZoom .4s cubic-bezier(.2,.7,.2,1);
}
@keyframes lbZoom {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lb-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(244,238,226,.75);
}
.lb-counter {
  position: absolute;
  top: 24px; left: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(244,238,226,.5);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(244,238,226,.06);
  border: 1px solid rgba(244,238,226,.18);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  font-family: var(--serif);
  transition: all .25s ease;
  z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--copper-2);
  border-color: var(--copper-2);
  color: var(--ink);
}
.lb-close {
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  font-size: 18px;
}
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px;
  font-size: 36px;
  line-height: 1;
  padding-bottom: 4px;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lb-prev, .lb-next { width: 42px; height: 42px; font-size: 28px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-close { top: 12px; right: 12px; width: 38px; height: 38px; }
  .lb-counter { top: 14px; left: 14px; font-size: 10px; }
}

/* ========= CONTACT ========= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  display: flex; flex-direction: column; gap: 22px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-field {
  display: flex; flex-direction: column; gap: 8px;
}
.contact-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-label em {
  font-style: normal;
  color: rgba(90,107,124,.65);
  text-transform: none;
  letter-spacing: .12em;
}
.contact-form input,
.contact-form textarea,
.contact-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0 12px;
  outline: none;
  transition: border-color .25s ease;
  width: 100%;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-select:focus {
  border-bottom-color: var(--copper);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--sans);
  line-height: 1.6;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(11,28,46,.3);
}
.contact-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23B8804A'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px;
  padding-right: 22px;
  cursor: pointer;
}
.contact-submit {
  align-self: start;
  margin-top: 8px;
}
.contact-form-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--jungle);
  max-width: 520px;
  line-height: 1.65;
  min-height: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}
.contact-form-note.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-form-note.err { color: var(--copper-deep); }

/* Contact — actions directes (e-mail + WhatsApp) */
.contact-actions {
  display: flex; flex-direction: column; gap: 16px;
  align-self: start;
}
.contact-action {
  display: flex; align-items: center; gap: 18px;
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-m);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.contact-action:hover { transform: translateY(-2px); border-color: var(--copper); background: #fff; }
.contact-action-ico { width: 26px; height: 26px; flex-shrink: 0; }
.contact-action-text { display: flex; flex-direction: column; gap: 5px; min-width: 0; flex: 1; }
.contact-action-label {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--ink);
}
.contact-action-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  word-break: break-word;
}
.contact-action-arrow {
  font-size: 20px;
  color: var(--copper);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.contact-action:hover .contact-action-arrow { transform: translateX(4px); }
.contact-action--mail .contact-action-ico { fill: var(--copper); }
.contact-action--wa { border-color: rgba(37,211,102,.45); }
.contact-action--wa:hover { border-color: #25D366; }
.contact-action--wa .contact-action-ico { fill: #25D366; }
.contact-action--wa .contact-action-arrow { color: #25D366; }

.contact-aside {
  display: flex; flex-direction: column; gap: 14px;
}
.contact-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad-m);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--copper);
  background: #fff;
}
.contact-ico {
  width: 22px; height: 22px;
  fill: var(--copper);
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-card > div {
  display: flex; flex-direction: column; gap: 5px;
  min-width: 0;
}
.contact-card-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -.005em;
  word-break: break-word;
}
.contact-card-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--copper-deep);
  margin-top: 2px;
}

.contact-social {
  margin-top: 8px;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}
.contact-social-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-social-links {
  display: flex; gap: 22px; flex-wrap: wrap;
}
.contact-social-links a {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: color .25s ease;
}
.contact-social-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.contact-social-links a:hover { color: var(--copper); }
.contact-social-links a:hover::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 600px) {
  .contact-row { grid-template-columns: 1fr; gap: 22px; }
}

/* ========= WHATSAPP FLOATING BUBBLE =========
   Stacking strategy:
   - Default position: bottom-right corner (aligné sur .floating-book).
   - Quand le bouton "Réserver" (.floating-book.visible) apparaît au scroll,
     la bulle WA monte au-dessus via :has() — pas de superposition.
   - z-index 9999 > .floating-book (50) : la bulle reste cliquable même si
     un transform/animation déborde.
*/
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .35), 0 4px 12px rgba(0, 0, 0, .18);
  transition: transform .25s cubic-bezier(.2,.7,.2,1),
              box-shadow .25s ease,
              bottom .35s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .45), 0 6px 16px rgba(0, 0, 0, .22);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Lift WA above the reserve FAB when it becomes visible (scroll > 700px). */
body:has(.floating-book.visible) .wa-float { bottom: 96px; }

/* Hide WA while a reservation modal is open — focus user on the form / phone. */
body:has(.modal-overlay.open) .wa-float,
body:has(.resto-modal-overlay.open) .wa-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

@media (max-width: 600px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
  body:has(.floating-book.visible) .wa-float { bottom: 84px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
  .wa-float:hover { transform: none; }
  .wa-float { transition: none; }
}
