/* ============================================
   CAFÉ LUXE — Stylesheet Principal
   Design: Luxury Dark · Accent Or
   ============================================ */

/* ── Imports Typographiques ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Variables CSS ── */
:root {
  /* Palette — alignée avec l'identité Mon Goût (brun chaud + rouge-or) */
  --noir:        #0c0907;
  --noir-soft:   #120e0a;
  --brun:        #1c1510;
  --or:          #c4884a;
  --or-light:    #e0b07a;
  --or-dark:     #9a6530;
  --creme:       #f7f0e8;
  --gris-chaud:  #9a8878;
  --blanc:       #fdf9f5;

  /* Typographie */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  /* Espacement */
  --section-pad: clamp(80px, 12vw, 160px);
  --gap:         clamp(24px, 4vw, 48px);

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:    cubic-bezier(0, 0, 0.3, 1);
  --dur:         0.6s;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--noir);
  color: var(--creme);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utilitaires ── */
.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.gold        { color: var(--or); }
.serif       { font-family: var(--font-serif); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--creme);
}

.section-title em {
  font-style: italic;
  color: var(--or-light);
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--or), transparent);
  margin: 2rem 0;
}

.divider.center { margin: 2rem auto; }

/* ── Boutons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-out);
}

.btn:hover::before { transform: translateX(0); }

.btn-gold {
  background: var(--or);
  color: var(--noir);
}
.btn-gold::before { background: var(--or-light); }

.btn-outline {
  background: transparent;
  color: var(--or);
  border: 1px solid var(--or);
}
.btn-outline::before { background: var(--or); }
.btn-outline:hover    { color: var(--noir); }

.btn span { position: relative; z-index: 1; }
.btn svg  { position: relative; z-index: 1; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.scrolled {
  padding: 16px 0;
  background: rgba(10, 9, 6, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--creme);
}

.logo span { color: var(--or); }

/* Logo image dans la nav */
.logo-img-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  padding: 4px 10px;
  border-radius: 4px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}

.nav-logo-img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-chaud);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--or);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover       { color: var(--or); }
.nav-links a:hover::after { width: 100%; }

.nav-reserve {
  display: flex;
  align-items: center;
}

/* Hamburger mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--creme);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--creme);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--or); }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,9,6,0.3) 0%, rgba(10,9,6,0.6) 60%, var(--noir) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1800&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--blanc);
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--or-light);
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--gris-chaud);
  max-width: 520px;
  margin: 0 auto 2.8rem;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.4s forwards;
}

.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gris-chaud);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--or), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--brun);
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(201,169,110,0.12);
}

.stat-item:last-child { border-right: none; }


.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--or);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-chaud);
}

/* ── Section About ── */
.about {
  padding: var(--section-pad) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(201,169,110,0.3);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  top: 32px;
  right: -32px;
  width: 110px;
  height: 110px;
  background: var(--or);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--noir);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--noir);
  font-weight: 500;
}

.about-text p {
  color: var(--gris-chaud);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--or);
  margin-top: 2rem;
}

/* ── Menu Section ── */
.menu-section {
  padding: var(--section-pad) 0;
  background: var(--brun);
  position: relative;
}

.menu-header {
  text-align: center;
  margin-bottom: 5rem;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(201,169,110,0.25);
  width: fit-content;
  margin: 2.5rem auto 0;
  overflow: hidden;
}

.menu-tab {
  padding: 12px 32px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-chaud);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-right: 1px solid rgba(201,169,110,0.25);
}

.menu-tab:last-child { border-right: none; }

.menu-tab.active,
.menu-tab:hover {
  background: var(--or);
  color: var(--noir);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

.menu-category { display: none; }
.menu-category.active { display: contents; }

.menu-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,110,0.08);
  padding: 32px;
  position: relative;
  transition: all 0.4s var(--ease);
  cursor: default;
}

.menu-card:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-4px);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  gap: 16px;
}

.menu-card-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--creme);
}

.menu-card-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--or);
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 0.85rem;
  color: var(--gris-chaud);
  line-height: 1.6;
}

.menu-card-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  border: 1px solid rgba(201,169,110,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or);
}

.promo-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: #c0392b;
  color: white;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Expérience Section ── */
.experience {
  padding: var(--section-pad) 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feat-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.feat-item:last-child { border-bottom: none; padding-bottom: 0; }

.feat-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--or);
}

.feat-text h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--creme);
  margin-bottom: 6px;
}

.feat-text p {
  font-size: 0.88rem;
  color: var(--gris-chaud);
  line-height: 1.65;
}

.experience-visual {
  position: relative;
}

.exp-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.exp-img-secondary {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--noir);
}

/* ── Témoignages ── */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--brun);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
}

.testi-track {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}

.testi-inner {
  display: flex;
  gap: 2px;
  width: max-content;
  animation: testiScroll 35s linear infinite;
  will-change: transform;
}

.testi-inner:hover {
  animation-play-state: paused;
}

.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  min-width: 400px;
  max-width: 400px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 40px 36px;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.testi-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testi-stars svg { color: var(--or); }

.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--creme);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--or-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--noir);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.85rem;
  color: var(--creme);
  font-weight: 500;
}

.testi-role {
  font-size: 0.72rem;
  color: var(--gris-chaud);
  letter-spacing: 0.08em;
}

@keyframes testiScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Réservation / CTA ── */
.reservation {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.reservation-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--noir) 30%, rgba(10,9,6,0.6) 100%),
    url('https://images.unsplash.com/photo-1424847651672-bf20a4b0982b?w=1600&q=80') center/cover no-repeat;
}

.reservation-content {
  position: relative;
  max-width: 620px;
}

.reservation-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--blanc);
  margin-bottom: 1.2rem;
}

.reservation-sub {
  font-size: 1rem;
  color: var(--gris-chaud);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.reservation-contacts {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--gris-chaud);
  transition: color 0.3s;
}

.contact-link:hover   { color: var(--or); }
.contact-link svg     { color: var(--or); }

/* ── Galerie — Carousel Infini ── */
.gallery-section {
  background: var(--noir);
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* Masques dégradés gauche/droite */
.gallery-section::before,
.gallery-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gallery-section::before {
  left: 0;
  background: linear-gradient(to right, var(--noir), transparent);
}
.gallery-section::after {
  right: 0;
  background: linear-gradient(to left, var(--noir), transparent);
}

.gallery-carousel {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
  will-change: transform;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-slide {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.5s, transform 0.6s var(--ease);
}

.gallery-slide:hover img {
  filter: brightness(1.05);
  transform: scale(1.06);
}

@keyframes galleryScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Témoignages — Auto-scroll ── */

/* ── Footer ── */
.footer {
  background: var(--noir-soft);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 64px;
}

.footer-brand .logo { font-size: 1.8rem; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1.4rem;
}

.footer-col li + li { margin-top: 0.8rem; }

.footer-col a {
  font-size: 0.87rem;
  color: var(--gris-chaud);
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--creme); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--gris-chaud);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-chaud);
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--or);
  color: var(--or);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* ── Animations ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── Notification Toast ── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--or);
  color: var(--noir);
  padding: 14px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  z-index: 200;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s var(--ease-out);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .about-grid      { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; max-width: 520px; margin: 0 auto; }
  .about-badge     { right: 16px; }

  .experience-grid { grid-template-columns: 1fr; }
  .experience-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(201,169,110,0.12); padding: 24px; }
  .stat-item:nth-child(even) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-reserve { display: none; }
  .hamburger { display: flex; }

  .gallery-slide { width: 240px; height: 180px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .testi-card { min-width: 300px; }
  .reservation-contacts { flex-direction: column; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .gallery-slide { width: 180px; height: 140px; }
}

/* ── Menu Card Image ── */
.menu-card-img { width:100%; height:160px; overflow:hidden; margin-bottom:16px; background:rgba(255,255,255,0.03); }
.menu-card-img img { width:100%; height:100%; object-fit:cover; filter:brightness(0.9); transition:transform 0.5s var(--ease),filter 0.4s; }
.menu-card:hover .menu-card-img img { transform:scale(1.05); filter:brightness(1); }

/* ── Formulaire Avis ── */
.review-form-wrap { max-width:680px; margin:0 auto; padding:48px 0 80px; text-align:center; }
.review-form-header { margin-bottom:2rem; }
.review-form { display:flex; flex-direction:column; gap:16px; text-align:left; }
.review-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.review-field { position:relative; }
.review-field input, .review-field textarea {
  width:100%; background:rgba(255,255,255,0.04);
  border:1px solid rgba(196,136,74,0.2); color:var(--creme);
  font-family:var(--font-sans); font-size:0.9rem; font-weight:300;
  padding:14px 18px; outline:none; resize:none;
  transition:border-color 0.25s,background 0.25s;
}
.review-field input::placeholder, .review-field textarea::placeholder { color:rgba(154,144,128,0.5); }
.review-field input:focus, .review-field textarea:focus { border-color:var(--or); background:rgba(255,255,255,0.06); }
.review-field-full { grid-column:1/-1; }
.char-count { position:absolute; bottom:10px; right:14px; font-size:0.65rem; color:var(--gris-chaud); }
.star-selector { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.star-label { font-size:0.72rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gris-chaud); }
.stars-input { display:flex; gap:4px; }
.star-btn { background:none; border:none; font-size:1.8rem; color:rgba(196,136,74,0.25); cursor:pointer; padding:0 2px; transition:color 0.2s,transform 0.15s; line-height:1; }
.star-btn:hover, .star-btn.active { color:var(--or); }
.star-btn:hover { transform:scale(1.15); }
.review-submit { align-self:flex-start; margin-top:4px; }
.review-success { display:flex; flex-direction:column; align-items:center; gap:12px; padding:32px; border:1px solid rgba(196,136,74,0.2); background:rgba(196,136,74,0.05); margin-top:16px; }
.review-success p { font-family:var(--font-serif); font-style:italic; font-size:1.1rem; color:var(--creme); text-align:center; }
@media (max-width:600px) { .review-form-grid { grid-template-columns:1fr; } .star-selector { flex-direction:column; align-items:flex-start; } }

/* ══════════════════════════════════════════
   SECTION GOOGLE MAPS
   ══════════════════════════════════════════ */
.maps-section {
  padding: var(--section-pad) 0 0;
  background: var(--brun);
}

.maps-header {
  text-align: center;
  margin-bottom: 3rem;
}

.maps-embed {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  position: relative;
}

.maps-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  filter: grayscale(20%) contrast(1.05) brightness(0.95);
  transition: filter 0.4s;
}

.maps-embed:hover iframe {
  filter: grayscale(0%) contrast(1) brightness(1);
}

.maps-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2.5rem 0 var(--section-pad);
}

@media (max-width: 480px) {
  .maps-actions { flex-direction: column; align-items: center; }
  .maps-embed iframe { height: 280px; }
}
