/* ═══════════════════════════════════════════════════════════
   Chez Moustache — style.css
   ═══════════════════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --black:      #000000;
  --white:      #ffffff;
  --gold:       #c9a96e;
  --gold-light: #e0c99a;
  --gray:       #1a1a1a;
  --gray-mid:   #2d2d2d;
  --gray-text:  #aaaaaa;
  --radius:     2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utilities ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}
.divider { width: 50px; height: 1px; background: var(--gold); margin: 24px 0; }
.divider.centered { margin: 24px auto; }

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s !important;
  cursor: pointer;
  background: transparent;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1100;
}
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-title); font-size: 1.8rem; color: rgba(255,255,255,0.85); transition: color 0.25s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  border-radius: var(--radius);
  margin-top: 8px;
  cursor: pointer;
}

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.72) 60%, rgba(0,0,0,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s forwards;
}
.hero-widget-wrap {
  opacity: 0;
  animation: fadeUp 0.8s 0.95s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
  cursor: pointer;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollAnim 2s 2s infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.4; transform: scaleY(1) translateY(0); }
  50%       { opacity: 1;   transform: scaleY(1.2) translateY(4px); }
}

/* ─── Histoire ───────────────────────────────────────────── */
#histoire { padding: 120px 0; background: var(--black); }
.histoire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.histoire-text p { color: rgba(255,255,255,0.7); margin-bottom: 18px; font-size: 1rem; }
.histoire-text p:last-of-type { margin-bottom: 0; }
.histoire-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 7px 16px;
  border-radius: var(--radius);
}
.histoire-img-wrap { position: relative; }
.histoire-img-wrap::before {
  content: '';
  position: absolute;
  top: 20px; right: -20px;
  width: 100%; height: 100%;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: var(--radius);
  pointer-events: none;
}
.histoire-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); filter: grayscale(20%); }

/* ─── Carte ──────────────────────────────────────────────── */
#carte { padding: 120px 0; background: var(--gray); }
.carte-header { text-align: center; margin-bottom: 72px; }
.carte-categories { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 56px; }
.cat-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.55);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
}
.cat-btn:hover, .cat-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.07); }
.carte-section { display: none; }
.carte-section.active { display: block; }
.carte-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
.plat {
  background: var(--gray-mid);
  padding: 32px 28px;
  border-left: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s,
              opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.plat:hover { border-left-color: var(--gold); background: #333; }
.plat-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 8px; }
.plat-name { font-family: var(--font-title); font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
.plat-price { font-size: 0.9rem; font-weight: 600; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.plat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.5; }

/* ─── Réalisations ───────────────────────────────────────── */
#realisations { padding: 120px 0; background: var(--black); }
.realisations-header { text-align: center; margin-bottom: 64px; }
.gallery-grid { columns: 3; column-gap: 12px; }
.gallery-item { break-inside: avoid; margin-bottom: 12px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; object-fit: cover; transition: transform 0.6s var(--transition), filter 0.4s; filter: grayscale(15%); }
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.4s; }
.gallery-item:hover::after { background: rgba(0,0,0,0.15); }

/* ─── Lightbox ───────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
#lightbox .lb-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 1;
  background: none; border: none;
  transition: color 0.2s;
}
#lightbox .lb-close:hover { color: var(--gold); }

/* ─── Réservation ────────────────────────────────────────── */
#reservation {
  padding: 140px 0;
  background: var(--black);
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#reservation::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.resa-label { margin-bottom: 16px; }
.resa-title { margin-bottom: 16px; }
.resa-text { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 48px; }
.btn-resa-main {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 18px 52px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-resa-main:hover { background: var(--gold-light); transform: translateY(-2px); }
.resa-details { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-top: 56px; }
.resa-detail { text-align: center; }
.resa-detail-num { font-family: var(--font-title); font-size: 2.2rem; font-weight: 600; color: var(--gold); line-height: 1; }
.resa-detail-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 8px; }

/* ─── Infos pratiques ────────────────────────────────────── */
#infos { padding: 100px 0; background: var(--gray); }
.infos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.info-block h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.info-block p, .info-block address { font-style: normal; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.9; }
.horaire-row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.88rem; line-height: 2; }
.horaire-row .jour { color: rgba(255,255,255,0.5); }
.horaire-row .heure { color: rgba(255,255,255,0.85); text-align: right; }
.horaire-row.ferme .heure { color: rgba(255,255,255,0.3); }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 10px 20px;
  border-radius: var(--radius);
  margin-top: 20px;
  transition: background 0.25s, color 0.25s;
}
.map-link:hover { background: var(--gold); color: var(--black); }
.contact-link { display: block; color: rgba(255,255,255,0.65); transition: color 0.25s; }
.contact-link:hover { color: var(--gold); }

/* ─── Avis Google ────────────────────────────────────────── */
#avis { padding: 100px 0; background: var(--gray); }

.avis-header { text-align: center; margin-bottom: 56px; }

.avis-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 56px;
  padding: 36px 48px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.avis-score-wrap { text-align: center; }

.avis-score {
  font-family: var(--font-title);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.avis-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin: 6px 0; }

.avis-count { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

.avis-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }

.avis-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.avis-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}

.avis-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.avis-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, background 0.3s,
              opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.avis-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,169,110,0.22);
}

.avis-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.avis-name { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.avis-meta { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

.avis-stars-sm { color: var(--gold); font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 10px; }

.avis-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.avis-visited {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.22);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Carte CTA "Laisser un avis" */
.avis-card-cta {
  background: rgba(201,169,110,0.04);
  border-color: rgba(201,169,110,0.18);
  align-items: center;
  justify-content: center;
}
.avis-card-cta:hover { border-color: rgba(201,169,110,0.4); background: rgba(201,169,110,0.08); }

.avis-cta-inner { text-align: center; }

.avis-cta-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.avis-cta-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.avis-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.avis-cta-btn:hover { background: var(--gold); color: var(--black); }

/* ─── Google Maps section (redesigned) ──────────────────── */
#map-section {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid rgba(201,169,110,0.1);
}

.map-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

.map-info { }

.map-info-address {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin: 16px 0 24px;
}

.map-frame-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/7;
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(25%) contrast(1.1) brightness(0.9);
  transition: filter 0.4s;
}
.map-frame-wrap:hover iframe { filter: grayscale(0%) contrast(1) brightness(1); }

/* ─── Footer ─────────────────────────────────────────────── */
#footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 24px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-family: var(--font-title); font-size: 1rem; letter-spacing: 0.04em; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.footer-powered { font-size: 0.72rem; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; }
.footer-powered a { color: rgba(201,169,110,0.5); transition: color 0.25s; }
.footer-powered a:hover { color: var(--gold); }
.admin-link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
  transition: color 0.25s;
}
.admin-link:hover { color: rgba(201,169,110,0.5); }

/* ─── CTA flottant réservation ───────────────────────────── */
.float-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 14px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 10px 0 0 10px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: -4px 0 24px rgba(201,169,110,0.25);
  transition: padding 0.25s, background 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.float-cta:hover {
  padding-right: 22px;
  background: #d4aa5e;
  box-shadow: -6px 0 32px rgba(201,169,110,0.4);
}
.float-cta .float-cta-icon {
  transform: rotate(90deg);
  flex-shrink: 0;
}

/* Mobile : pill en bas à droite, horizontal */
@media (max-width: 768px) {
  .float-cta {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    top: auto;
    bottom: 20px;
    right: 16px;
    border-radius: 28px;
    padding: 13px 20px;
    font-size: 0.76rem;
    box-shadow: 0 4px 20px rgba(201,169,110,0.35);
  }
  .float-cta:hover { padding: 13px 20px; }
  .float-cta .float-cta-icon { transform: none; }
}

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .histoire-grid { grid-template-columns: 1fr; gap: 48px; }
  .histoire-img-wrap::before { display: none; }
  .histoire-img { aspect-ratio: 16/9; }
  .infos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .gallery-grid { columns: 2; }
  .infos-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-right { align-items: center; }
  .resa-details { gap: 28px; }
  .avis-grid { grid-template-columns: 1fr; }
  .avis-summary { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-frame-wrap { aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .carte-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .map-wrapper { grid-template-columns: 220px 1fr; gap: 32px; }
}
