/* ============================================================
   NOMADE — style.css
   Palette : #ffffff  |  #bf490d  |  #695f58
   ============================================================ */

/* ============================================================
   SPLASH SCREEN v6 — Premium · Doré · Cinématique
   ============================================================ */

/* Couleurs splash */
:root {
  --sp-gold:      #c9a84c;
  --sp-gold-lt:   #e8c96a;
  --sp-gold-dk:   #a07830;
  --sp-rust:      #bf490d;
  --sp-cream:     #f5efe6;
  --sp-dark:      #080604;
  --sp-dark2:     #0f0c08;
}

#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: all;
  overflow: hidden;
  will-change: opacity, transform;
}

/* ── Fond noir profond avec grain ── */
.sp-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 100% at 50% -10%,
      rgba(201,168,76,.08) 0%,
      transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 110%,
      rgba(191,73,13,.06) 0%,
      transparent 60%),
    #080604;
}

/* Texture grain subtile */
.sp-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .55;
  pointer-events: none;
}

/* ── Rayons lumineux partant du centre ── */
.sp-rays {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(201,168,76,.025) 10deg,
    transparent 20deg,
    rgba(201,168,76,.015) 30deg,
    transparent 40deg,
    rgba(201,168,76,.025) 60deg,
    transparent 80deg,
    rgba(201,168,76,.018) 100deg,
    transparent 120deg,
    rgba(201,168,76,.022) 150deg,
    transparent 180deg,
    rgba(201,168,76,.025) 210deg,
    transparent 240deg,
    rgba(201,168,76,.018) 270deg,
    transparent 300deg,
    rgba(201,168,76,.025) 330deg,
    transparent 360deg
  );
  opacity: 0;
  pointer-events: none;
}
#splash-screen.sp-active .sp-rays {
  animation: spRaysIn 1.8s 0.2s ease forwards;
}

/* ── Particules flottantes ── */
.sp-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sp-p {
  position: absolute;
  border-radius: 50%;
  background: var(--sp-gold);
  opacity: 0;
  will-change: transform, opacity;
}

/* Tailles et positions variées */
.sp-p1 { width: 2px; height: 2px; left: 15%; top: 25%; }
.sp-p2 { width: 3px; height: 3px; left: 78%; top: 18%; }
.sp-p3 { width: 2px; height: 2px; left: 62%; top: 72%; }
.sp-p4 { width: 4px; height: 4px; left: 25%; top: 68%; }
.sp-p5 { width: 2px; height: 2px; left: 88%; top: 45%; }
.sp-p6 { width: 3px; height: 3px; left: 8%;  top: 55%; }

#splash-screen.sp-active .sp-p1 { animation: spFloat1 3.5s 0.8s ease-in-out infinite; }
#splash-screen.sp-active .sp-p2 { animation: spFloat2 4.2s 1.1s ease-in-out infinite; }
#splash-screen.sp-active .sp-p3 { animation: spFloat3 3.8s 0.5s ease-in-out infinite; }
#splash-screen.sp-active .sp-p4 { animation: spFloat1 4.5s 1.4s ease-in-out infinite; }
#splash-screen.sp-active .sp-p5 { animation: spFloat2 3.2s 0.9s ease-in-out infinite; }
#splash-screen.sp-active .sp-p6 { animation: spFloat3 4.8s 1.6s ease-in-out infinite; }

/* ── Vignette ── */
.sp-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 50%,
    transparent 20%,
    rgba(0,0,0,.65) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ── Cadre ornemental ── */
.sp-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* Coins */
.sp-frame-tl,
.sp-frame-tr,
.sp-frame-bl,
.sp-frame-br {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--sp-gold);
}
.sp-frame-tl { top: 32px;    left: 32px;  }
.sp-frame-tr { top: 32px;    right: 32px; }
.sp-frame-bl { bottom: 32px; left: 32px;  }
.sp-frame-br { bottom: 32px; right: 32px; }

#splash-screen.sp-active .sp-frame-tl { animation: spFrameTL .8s .25s cubic-bezier(.22,1,.36,1) forwards; }
#splash-screen.sp-active .sp-frame-tr { animation: spFrameTR .8s .25s cubic-bezier(.22,1,.36,1) forwards; }
#splash-screen.sp-active .sp-frame-bl { animation: spFrameBL .8s .35s cubic-bezier(.22,1,.36,1) forwards; }
#splash-screen.sp-active .sp-frame-br { animation: spFrameBR .8s .35s cubic-bezier(.22,1,.36,1) forwards; }

/* Lignes horizontales décoratives (haut et bas) */
.sp-line-top,
.sp-line-bot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 0;
  opacity: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,.2) 15%,
    rgba(201,168,76,.75) 50%,
    rgba(201,168,76,.2) 85%,
    transparent 100%);
}
.sp-line-top { top: 32px; }
.sp-line-bot { bottom: 32px; }

#splash-screen.sp-active .sp-line-top { animation: spLineGrow 1s .5s ease forwards; }
#splash-screen.sp-active .sp-line-bot { animation: spLineGrow 1s .6s ease forwards; }

/* ── Centre ── */
.sp-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  gap: 0;
}

/* ── Logo avec anneau lumineux ── */
.sp-logo-wrap {
  position: relative;
  width: min(110px, 26vw);
  height: min(110px, 26vw);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.75) translateY(12px);
  filter: blur(8px);
  margin-bottom: 28px;
}
#splash-screen.sp-active .sp-logo-wrap {
  animation: spLogoIn 1s .3s cubic-bezier(.22,1,.36,1) forwards;
}

/* Anneau pulsé doré */
.sp-logo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0);
}
#splash-screen.sp-active .sp-logo-ring {
  animation: spRingPulse 2.6s 1.3s ease-out infinite;
}

/* Second anneau plus grand */
.sp-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0);
}
#splash-screen.sp-active .sp-logo-wrap::after {
  animation: spRingPulse 2.6s 1.65s ease-out infinite;
}

.sp-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

/* ── Ornement central (lignes + losange) ── */
.sp-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  opacity: 0;
}
#splash-screen.sp-active .sp-ornament {
  animation: spFadeUp .7s .75s ease forwards;
}

.sp-orn-line {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sp-gold), transparent);
  transition: width .8s ease;
}
#splash-screen.sp-active .sp-orn-line {
  animation: spOrnLine .9s .9s ease forwards;
}

.sp-orn-diamond {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--sp-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Nom NOMADE ── */
.sp-brand {
  display: flex;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--sp-cream);
  padding-right: .45em;
  margin-bottom: 12px;
  line-height: 1;
}

/* Dégradé doré sur le texte */
.sp-brand span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  background: linear-gradient(135deg, var(--sp-cream) 30%, var(--sp-gold-lt) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  will-change: opacity, transform, filter;
}
#splash-screen.sp-active .sp-brand span {
  animation: spLetterIn .6s cubic-bezier(.22,1,.36,1) forwards;
}

/* ── Tagline ── */
.sp-tagline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(.55rem, 1.2vw, .72rem);
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: rgba(201,168,76,.7);
  opacity: 0;
  transform: translateY(8px);
  margin-bottom: 8px;
}
#splash-screen.sp-active .sp-tagline {
  animation: spFadeUp .65s 1.2s ease forwards;
}

/* ── Sous-titre ── */
.sp-sub {
  font-family: 'Imperial Script', cursive;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: rgba(191,73,13,.65);
  opacity: 0;
  transform: translateY(6px);
  letter-spacing: .05em;
}
#splash-screen.sp-active .sp-sub {
  animation: spFadeUp .7s 1.45s ease forwards;
}

/* ── Sortie : fondu + zoom doux ── */
#splash-screen.sp-exit {
  animation: spExitFade 1s cubic-bezier(.4,0,1,1) forwards;
}

/* ── Keyframes ── */
@keyframes spRaysIn {
  from { opacity: 0; transform: rotate(-5deg) scale(.9); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes spFloat1 {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: .8; }
  80%  { opacity: .6; }
  100% { opacity: 0; transform: translateY(-60px) scale(1.5); }
}
@keyframes spFloat2 {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  25%  { opacity: .7; }
  75%  { opacity: .5; }
  100% { opacity: 0; transform: translateY(-45px) translateX(15px) scale(1.3); }
}
@keyframes spFloat3 {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  30%  { opacity: .9; }
  70%  { opacity: .5; }
  100% { opacity: 0; transform: translateY(-50px) translateX(-10px); }
}

@keyframes spFrameTL { to { width: 60px; height: 60px; border-width: 1px 0 0 1px; } }
@keyframes spFrameTR { to { width: 60px; height: 60px; border-width: 1px 1px 0 0; } }
@keyframes spFrameBL { to { width: 60px; height: 60px; border-width: 0 0 1px 1px; } }
@keyframes spFrameBR { to { width: 60px; height: 60px; border-width: 0 1px 1px 0; } }

@keyframes spLineGrow {
  from { width: 0;    opacity: 0; }
  to   { width: min(420px, 70vw); opacity: 1; }
}

@keyframes spLogoIn {
  from { opacity: 0; transform: scale(.75) translateY(12px); filter: blur(8px); }
  to   { opacity: 1; transform: scale(1)   translateY(0);    filter: blur(0px); }
}

@keyframes spRingPulse {
  0%   { inset: -18px; border-color: rgba(201,168,76,.55); opacity: 1; }
  100% { inset: -56px; border-color: rgba(201,168,76,.0);  opacity: 0; }
}

@keyframes spOrnLine {
  from { width: 0;   opacity: 0; }
  to   { width: 64px; opacity: 1; }
}

@keyframes spLetterIn {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);   }
}

@keyframes spFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}

@keyframes spExitFade {
  0%   { opacity: 1; transform: scale(1)    blur(0px); }
  40%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.06); filter: blur(8px); }
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Suppression globale du surlignage bleu sur mobile et des outlines de focus par défaut */
a, button, input, textarea, select, .dot, .pc-dot, .hamburger, [role="button"], label, .star {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

*:focus-visible {
  outline: none;
}

:root {
  /* Palette principale */
  --clr-white: #ffffff;
  --clr-rust: #bf490d;
  /* accent principal */
  --clr-rust-lt: #d9602a;
  /* hover accent */
  --clr-brown: #695f58;
  /* surface / secondaire */
  --clr-brown-dk: #4a4440;
  /* surface foncée */
  --clr-brown-lt: #857870;
  /* muted */

  /* Rôles sémantiques — fond blanc */
  --clr-bg: #ffffff;
  /* fond page blanc */
  --clr-surface: #f4f1ef;
  /* sections alternées */
  --clr-card: #ffffff;
  --clr-border: rgba(105, 95, 88, .15);
  --clr-accent: var(--clr-rust);
  --clr-accent-h: var(--clr-rust-lt);
  --clr-text: #3a3330;
  /* texte principal foncé */
  --clr-muted: var(--clr-brown);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-script: 'Imperial Script', cursive;
  --ff-body: 'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 40px rgba(0, 0, 0, .45);

  --header-h: 52px;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
}

html::-webkit-scrollbar {
  display: none;
}

/* Chrome / Safari / Edge */

body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}


/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: stretch;
  /* les enfants s'étirent sur toute la hauteur */
  justify-content: space-between;
  padding: 0 0 0 40px;
  /* pas de padding à droite : la nav colle au bord */
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(105, 95, 88, .10);
}

/* Le logo reste centré verticalement */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Nav */
#main-nav {
  display: flex;
  align-self: stretch;
  /* la nav prend toute la hauteur du header */
}

#main-nav ul {
  display: flex;
  align-items: stretch;
  /* les li s'étirent aussi */
  gap: 0;
  list-style: none;
  height: 100%;
}

#main-nav li {
  display: flex;
  align-items: stretch;
}

#main-nav a {
  display: flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-brown-dk);
  padding: 0 16px;
  transition: color .18s, background .18s;
}

#main-nav a:hover {
  color: #ffffff;
  background: #1a1a1a;
}

/* CTA "Réserver" — dernier item */
#main-nav li:last-child a {
  background: var(--clr-rust);
  color: #ffffff;
  font-weight: 700;
  padding: 0 22px;
  border-left: none;
}

#main-nav li:last-child a:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-brown-dk);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h));
  min-height: 480px;
  overflow: hidden;
  padding: 0 !important;
  /* pas de padding sur le hero */
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(58, 51, 48, .10) 0%,
      rgba(58, 51, 48, .50) 60%,
      rgba(58, 51, 48, .80) 100%);
}

.slide-content {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: min(700px, 90%);
}

.slide-content.centered-content {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.slide-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--clr-rust);
  border-radius: 50px;
  padding: 5px 18px;
  margin-bottom: 18px;
}

.slide-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 14px;
}

.slide-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .82);
}

/* Arrows hero — discrets */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .80);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, color .25s;
  backdrop-filter: blur(4px);
}

.arrow:hover {
  background: rgba(255, 255, 255, .25);
  color: #ffffff;
}

.arrow svg {
  width: 18px;
  height: 18px;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.dot.active {
  background: var(--clr-rust);
  transform: scale(1.4);
}

/* Progress bar */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  z-index: 10;
  display: none;
}

.progress-fill {
  height: 100%;
  background: var(--clr-rust);
  width: 0%;
}


/* ============================================================
   SECTION COMMUNE
   ============================================================ */
section {
  padding: 80px 40px;
}

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-rust);
  margin-bottom: 14px;
}

h2.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 20px;
}


/* ============================================================
   SECTION RÉSUMÉ
   ============================================================ */
.summary {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

/* Titre de section générique sur fond clair */
h2.section-title {
  color: var(--clr-brown-dk);
}

.summary-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.summary-image-box {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 2px solid var(--clr-rust);
}

.box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.box p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--clr-brown);
  font-style: italic;
  text-align: justify;
}


/* ============================================================
   SECTION NOS PLATS
   ============================================================ */
.dishes {
  background: var(--clr-white);
  text-align: center;
  padding-bottom: 60px;
}

.dishes h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--clr-rust);
}

.dishes-subtitle {
  color: var(--clr-brown);
  font-size: .95rem;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Preview carousel */
.preview-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.pc-track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}

.pc-track {
  display: flex;
  gap: 28px;
  will-change: transform;
}

.pc-item {
  flex: 0 0 calc((100% - 56px) / 3);
  border-radius: var(--radius);
  overflow: hidden;
}

.carousel-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .4s ease, filter .4s;
  display: block;
}

.pc-item:hover .carousel-img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

/* Flèches carousel plats — discrètes */
.pc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: none;
  border: none;
  color: var(--clr-brown);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .2s;
}

.pc-arrow:hover {
  color: #1a1a1a;
}

.pc-arrow svg {
  width: 22px;
  height: 22px;
}

.pc-left {
  left: -22px;
}

.pc-right {
  right: -22px;
}

/* Dots preview */
.pc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.pc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(105, 95, 88, .25);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.pc-dot.active {
  background: var(--clr-rust);
  transform: scale(1.4);
}


/* ============================================================
   SECTION ACTIONS (Événements + Privatisation)
   ============================================================ */
.actions {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.actions-content {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.actions-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--clr-brown-dk);
}

.actions-content p {
  color: var(--clr-brown);
  font-size: .97rem;
  line-height: 1.8;
}

.actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.action-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(105, 95, 88, .10);
}

.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(191, 73, 13, .18);
  border-color: var(--clr-rust);
}

.action-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--clr-brown-dk);
  padding: 22px 24px 16px;
}

.img-box {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}



/* ============================================================
   SECTION AVIS CLIENTS — thème sombre premium
   ============================================================ */
.reviews {
  background: #2e2825;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

/* Motif de fond subtil */
.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(191, 73, 13, .12) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(105, 95, 88, .15) 0%, transparent 60%);
  pointer-events: none;
}

.reviews-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* En-tête de section */
.reviews .section-label {
  color: var(--clr-rust);
}

h2.reviews-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.reviews-subtitle {
  color: rgba(242, 237, 232, .50);
  font-size: .95rem;
  margin-bottom: 48px;
}

/* Ligne décorative sous le titre */
.reviews-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  background: var(--clr-rust);
  margin-top: 14px;
  margin-bottom: 40px;
}

/* ---- Formulaire ---- */
.review-form {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(242, 237, 232, .12);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 56px;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .35);
}

/* ---- Suppression outline bleu natif — remplacé par focus rust ---- */
.review-field input:focus-visible,
.review-field textarea:focus-visible,
.review-submit:focus-visible,
.reviews-more-btn:focus-visible,
.star-picker .star:focus-visible {
  outline: none;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.review-field:last-child {
  margin-bottom: 0;
}

.review-field label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
}

.review-field input,
.review-field textarea {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: #f2ede8;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(242, 237, 232, .15);
  border-radius: 10px;
  padding: 14px 18px;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  resize: vertical;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.review-field input::placeholder,
.review-field textarea::placeholder {
  color: rgba(242, 237, 232, .28);
}

.review-field input:focus,
.review-field textarea:focus {
  border-color: var(--clr-rust);
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 0 0 3px rgba(191, 73, 13, .22);
  outline: none;
}

/* Étoiles */
.star-picker {
  display: flex;
  gap: 8px;
  font-size: 2.2rem;
  cursor: pointer;
  user-select: none;
  margin-top: 2px;
}

.star-picker .star {
  color: rgba(242, 237, 232, .18);
  transition: color .15s, transform .18s;
  line-height: 1;
}

.star-picker .star.active {
  color: #f5a623;
}

.star-picker .star:hover {
  color: rgba(245, 166, 35, .7);
}

/* Pied de formulaire */
.review-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 237, 232, .10);
  flex-wrap: wrap;
}

.review-error {
  font-size: .85rem;
  color: #e07070;
  font-weight: 500;
}

.review-submit {
  font-family: var(--ff-body);
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--clr-rust);
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  cursor: pointer;
  outline: none;
  transition: background .25s, transform .2s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.review-submit:hover {
  background: #d9602a;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(191, 73, 13, .40);
}

.review-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---- Grille des avis ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

/* Supprime le flash bleu sur tap mobile pour tous les éléments interactifs de la section */
.reviews button,
.reviews input,
.reviews textarea,
.reviews .star,
.reviews .reviews-more-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.reviews-empty {
  text-align: center;
  color: rgba(242, 237, 232, .35);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  padding: 20px 0;
  display: none;
}

/* ---- En-tête liste avis ---- */
.reviews-list-header {
  display: none;
  margin-bottom: 28px;
}

.reviews-list-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: #f2ede8;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.reviews-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 50px;
  background: var(--clr-rust);
  color: #ffffff;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.reviews-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(191, 73, 13, .6), rgba(242, 237, 232, .08), transparent);
}

/* ---- Bouton "Voir plus" ---- */
.reviews-more-wrap {
  display: none;
  justify-content: center;
  margin-top: 36px;
}

.reviews-more-btn {
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #f2ede8;
  background: transparent;
  border: 1.5px solid rgba(242, 237, 232, .25);
  border-radius: 50px;
  padding: 13px 32px;
  cursor: pointer;
  transition: border-color .25s, background .25s, color .25s, box-shadow .25s;
}

.reviews-more-btn:hover {
  border-color: var(--clr-rust);
  background: var(--clr-rust);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(191, 73, 13, .35);
}

/* ---- Toast confirmation ---- */
.review-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: #2e2825;
  border: 1px solid rgba(191, 73, 13, .50);
  border-left: 4px solid var(--clr-rust);
  color: #f2ede8;
  font-size: .92rem;
  font-weight: 500;
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .40);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

.review-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clr-rust);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Carte avis ---- */
@keyframes reviewIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card {
  background: #f7f3ef;
  border: none;
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .28);
  animation: reviewIn .45s ease both;
  position: relative;
  overflow: hidden;
}

/* Fine barre rust en haut de chaque carte */
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-rust);
}

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

.rc-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-rust), #e8621e);
  color: #ffffff;
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(191, 73, 13, .30);
  letter-spacing: .05em;
}

.rc-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rc-meta strong {
  font-size: .97rem;
  font-weight: 600;
  color: var(--clr-brown-dk);
}

.rc-date {
  font-size: .72rem;
  color: var(--clr-brown-lt);
  letter-spacing: .04em;
}

.rc-stars {
  font-size: 1.1rem;
  color: #f5a623;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.rc-stars-empty {
  color: rgba(105, 95, 88, .18);
}

.rc-text {
  font-family: var(--ff-display);
  font-size: .92rem;
  font-weight: 400;
  color: var(--clr-brown);
  line-height: 1.75;
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #ffffff;
  border-top: 1px solid #000000;
  padding: 20px 60px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Logo footer */
.footer-logo {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-logo:hover .footer-logo-img {
  /* Aucun effet au survol */
}

/* Liens footer — centrés */
.footer-links {
  flex: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-links a {
  font-size: .92rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: .04em;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--clr-rust);
  border-bottom-color: var(--clr-rust);
}

/* Icônes réseaux sociaux */
.footer-socials {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, .20);
  color: #1a1a1a;
  transition: color .3s, border-color .3s, background .3s, transform .3s;
}

.social-link svg {
  width: 28px;
  height: 28px;
}

/* Facebook — dégradé bleu ciel → blanc */
.social-facebook:hover {
  background: linear-gradient(135deg, #4fc3f7, #e0f7fa, #ffffff);
  border-color: #4fc3f7;
  color: #1565c0;
  transform: translateY(-3px);
}

/* Instagram — dégradé violet → orange → jaune */
.social-instagram:hover {
  background: linear-gradient(135deg, #833ab4, #e1306c, #fd1d1d, #fcb045);
  border-color: #833ab4;
  color: #ffffff;
  transform: translateY(-3px);
}

/* LinkedIn — dégradé bleu ciel → bleu foncé */
.social-linkedin:hover {
  background: linear-gradient(135deg, #87ceeb, #1e88e5, #0d47a1);
  border-color: #1e88e5;
  color: #ffffff;
  transform: translateY(-3px);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .box .section-label {
    align-self: center;
  }

  .summary-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .summary-image-box {
    height: 280px;
  }

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

  .pc-item {
    flex: 0 0 calc((100% - 28px) / 2);
  }

  .pc-left {
    left: 4px;
  }

  .pc-right {
    right: 4px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 64px;
  }

  header {
    padding: 0 20px;
  }

  section {
    padding: 60px 20px;
  }

  /* Mobile nav */
  .hamburger {
    display: flex;
    align-self: center;
  }

  #main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    display: block;
    background: #ffffff;
    border-bottom: 2px solid var(--clr-rust);
    box-shadow: 0 4px 20px rgba(105, 95, 88, .12);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s;
  }

  #main-nav.open {
    max-height: 400px;
    padding: 0;
  }

  #main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    width: 100%;
    height: auto;
  }

  #main-nav li {
    display: block;
    width: 100%;
  }

  #main-nav a {
    display: block;
    text-align: center;
    padding: 14px 20px;
    color: var(--clr-brown-dk);
    width: 100%;
  }

  #main-nav li:last-child a {
    padding: 14px 20px;
    background: var(--clr-rust);
    color: #ffffff;
  }

  .slide-content {
    bottom: 80px;
  }

  .arrow {
    width: 38px;
    height: 38px;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .pc-item {
    flex: 0 0 85%;
  }

  .pc-left,
  .pc-right {
    display: none;
  }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    gap: 28px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo-img {
    height: 70px;
  }

  /* ---- Avis section mobile ---- */
  .reviews {
    padding: 52px 18px;
  }

  .reviews-inner {
    max-width: 100%;
  }

  h2.reviews-title {
    font-size: 1.75rem;
  }

  .reviews-title::after {
    margin-bottom: 28px;
  }

  .review-form {
    padding: 24px 18px;
    margin-bottom: 36px;
    border-radius: 16px;
  }

  .review-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .review-field {
    margin-bottom: 18px;
  }

  .review-field input,
  .review-field textarea {
    font-size: 1rem;
    padding: 15px 16px;
    border-radius: 12px;
  }

  .star-picker {
    font-size: 2.6rem;
    gap: 10px;
    padding: 6px 0;
  }

  .review-form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 20px;
    padding-top: 18px;
  }

  .review-error {
    text-align: center;
  }

  .review-submit {
    width: 100%;
    padding: 16px 20px;
    font-size: .88rem;
    letter-spacing: .08em;
    border-radius: 12px;
    text-align: center;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .rc-avatar {
    width: 42px;
    height: 42px;
    font-size: .82rem;
  }

  .rc-meta strong {
    font-size: .92rem;
  }

  .reviews-more-btn {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: .85rem;
  }

  .review-toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    font-size: .88rem;
    padding: 14px 18px;
    border-radius: 12px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
  }

  .footer-socials {
    flex-direction: row;
    gap: 14px;
    justify-content: center;
  }

  .social-link {
    width: 52px;
    height: 52px;
  }

  .social-link svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================================
   SECTION RÉSERVATION
   ============================================================ */
.reservation-page {
  padding: 60px 40px;
  background: var(--clr-surface);
  min-height: calc(100vh - var(--header-h) - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reservation-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
}

.reservation-header .page-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--clr-rust);
  line-height: 1.2;
}

.reservation-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.reservation-box {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(105, 95, 88, .06);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  overflow: hidden;
  width: 100%;
  align-items: stretch;
}

.reservation-info-pane {
  background: #faf8f7;
  padding: 40px;
  border-right: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 36px;
  height: 100%;
}

.hours-section {
  display: flex;
  flex-direction: column;
}

.map-section {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sub-section-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--clr-brown-dk);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.sub-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--clr-rust);
}

.sub-section-title.centered {
  text-align: center;
}

.sub-section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(105, 95, 88, .15);
  padding-bottom: 8px;
}

.hours-list .day {
  font-weight: 600;
  color: var(--clr-brown-dk);
}

.hours-list .time {
  color: var(--clr-brown);
}

.map-container {
  width: 100%;
  flex-grow: 1;
  min-height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.address-text {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--clr-brown-dk);
  font-weight: 500;
  font-size: 0.95rem;
}

.addr-icon {
  color: var(--clr-rust);
  flex-shrink: 0;
}

/* Formulaire Section */
.reservation-form-pane {
  background: var(--clr-white);
  padding: 40px;
  height: 100%;
}

.booking-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full-width {
  grid-column: span 2;
  margin-top: 24px;
}

.form-field.span-2 {
  grid-column: span 2;
}

.form-field label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-brown-dk);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--clr-text);
  background: var(--clr-surface);
  border: 1px solid rgba(105, 95, 88, .15);
  border-radius: 8px;
  padding: 13px 18px;
  outline: none;
  transition: border-color .25s, background .25s;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(105, 95, 88, .4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--clr-rust);
  background: var(--clr-white);
}

.form-error {
  color: #e07070;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

.form-submit-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.booking-submit {
  font-family: var(--ff-body);
  font-size: .80rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--clr-rust);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  cursor: pointer;
  width: auto;
}

/* Toast de succès */
.booking-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid rgba(191, 73, 13, .2);
  border-left: 4px solid var(--clr-rust);
  color: var(--clr-text);
  font-size: .92rem;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.booking-toast.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-success-icon {
  color: #2e7d32;
  flex-shrink: 0;
}

/* Responsivité Réservation */
@media (max-width: 900px) {
  .reservation-box {
    grid-template-columns: 1fr;
  }

  .reservation-info-pane {
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
    padding: 32px 24px;
    gap: 32px;
  }

  .reservation-form-pane {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .reservation-page {
    padding: 40px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-field.full-width {
    grid-column: span 1;
    margin-top: 16px;
  }

  .form-field.span-2 {
    grid-column: span 1;
  }
}

/* Badge de Statut Ouvert/Fermé */
.status-badge {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  line-height: 1;
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.status-badge.status-open {
  background: rgba(46, 125, 50, 0.08);
  color: #2e7d32;
  border: 1px solid rgba(46, 125, 50, 0.2);
}

.status-badge.status-open::before {
  background: #2e7d32;
  animation: pulse-green 2s infinite;
}

.status-badge.status-closed {
  background: rgba(198, 40, 40, 0.08);
  color: #c62828;
  border: 1px solid rgba(198, 40, 40, 0.2);
}

.status-badge.status-closed::before {
  background: #c62828;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(46, 125, 50, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
  }
}

/* ============================================================
   PAGE LES MENUS
   ============================================================ */
.menus-page {
  padding: 80px 40px;
  background: var(--clr-surface);
}

.menus-container {
  max-width: 1100px;
  margin: 0 auto;
}

.menus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.menu-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 20px 20px 0 20px;
  box-shadow: 0 10px 30px rgba(105, 95, 88, .04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}



.menu-title {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--clr-rust);
  text-align: center;
  margin-bottom: 6px;
  font-weight: 500;
}

.menu-formula {
  font-size: 0.9rem;
  color: var(--clr-brown);
  text-align: center;
  margin-bottom: 12px;
  font-style: italic;
  border-bottom: 1px dashed rgba(105, 95, 88, .15);
  padding-bottom: 8px;
  line-height: 1.4;
}

.menu-card section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.menu-section-title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--clr-brown-dk);
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.menu-item-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.menu-item-name {
  font-weight: 600;
  color: var(--clr-text);
  font-size: 0.98rem;
}

.menu-item-price {
  font-weight: 700;
  color: var(--clr-rust);
  font-size: 0.98rem;
}

.menu-item-description {
  font-size: 0.85rem;
  color: var(--clr-brown);
  font-style: italic;
  line-height: 1.35;
  max-width: 340px;
  margin: 0 auto;
}

/* Section Viandes */
.viandes-section {
  padding: 80px 40px;
  background: #8C1F0B;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.viandes-container {
  max-width: 1100px;
  margin: 0 auto;
}

.viandes-section .section-label {
  text-align: center;
  display: block;
  color: #ffd8d2;
}

.viandes-section h2.section-title {
  text-align: center;
  margin-bottom: 12px;
  color: #ffffff;
}

.viandes-subtitle {
  text-align: center;
  color: #ffd8d2;
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.viandes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.viande-card {
  background: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}



.viande-info {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.viande-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--clr-brown-dk);
  margin-bottom: 10px;
  line-height: 1.4;
}

.viande-price {
  font-weight: 700;
  color: var(--clr-rust);
  font-size: 1.15rem;
}



/* Boutons Réserver de la page Menus */
.menu-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.menu-card-cta {
  margin-top: auto;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 0;
  width: auto;
}

.menu-card-cta .btn-reserver {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  padding: 20px 0;
  text-align: center;
  box-shadow: none;
}

.menu-card-cta .btn-reserver:hover {
  transform: none;
  box-shadow: none;
  background: #1a1a1a;
}

.btn-reserver {
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--clr-rust);
  border: none;
  border-radius: 50px;
  padding: 16px 42px;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 6px 20px rgba(191, 73, 13, .25);
  display: inline-block;
  text-align: center;
}

.btn-reserver:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Version blanche pour la section viandes rouge */
.viandes-section .btn-reserver {
  background: #ffffff;
  color: #8C1F0B;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.viandes-section .btn-reserver:hover {
  background: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Responsivité de la page Menus */
@media (max-width: 990px) {
  .menus-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .viandes-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 4px 20px;
    scrollbar-width: thin;
  }

  .viande-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    height: auto;
  }
}

@media (max-width: 640px) {
  .menus-page {
    padding: 40px 20px;
  }

  .viandes-section {
    padding: 60px 20px;
  }

  .menu-card {
    padding: 24px 24px 0 24px;
  }

  .menu-card-cta {
    margin-left: -24px;
    margin-right: -24px;
    width: auto;
    margin-bottom: 0;
  }
}