/* ============================================================================
   Street Food Vla — Site public
   Mobile-first. Approche : on construit pour le téléphone (320–720px), puis on
   élargit pour tablette (≥720px) et desktop (≥1024px / ≥1280px).
   Touch targets ≥ 44px, safe-area iOS, dvh, sticky bottom bar, drawer fullscreen.
   ============================================================================ */

/* ─── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Couleurs */
  --cream: #FBF5EA;
  --cream-soft: #F4ECDB;
  --cream-deep: #EDE2C8;
  --coral: #E5734A;
  --coral-deep: #C85B33;
  --coral-soft: #F4A87E;
  --charcoal: #1A1A1A;
  --charcoal-soft: #3A3A3A;
  --charcoal-muted: #6B6B6B;
  --green-veggie: #3BAE5E;
  --gold: #C8A156;
  --shadow: 26 26 26;

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Sizing */
  --max-w: 1240px;
  --max-w-narrow: 920px;
  --gutter: clamp(1.1rem, 5vw, 2.5rem);
  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;

  /* Touch / safe area */
  --tap: 44px;                         /* taille tactile minimale */
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);

  /* Hauteurs barres */
  --header-h: 60px;
  --bottombar-h: 64px;

  /* Animation */
  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(229, 115, 74, 0.15);
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Espace en bas pour la bottom bar mobile (annulé en desktop) */
  padding-bottom: calc(var(--bottombar-h) + var(--safe-bottom));
  overscroll-behavior-y: none;
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color 180ms var(--easing), opacity 180ms var(--easing); }
a:hover { color: var(--coral-deep); }

h1, h2, h3, h4 { margin: 0; line-height: 1.1; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }

::selection { background: var(--coral); color: var(--cream); }

/* Empêche les éléments interactifs d'être trop petits sur mobile */
a, button, [role="button"] { touch-action: manipulation; }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms var(--easing), transform 800ms var(--easing);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--coral-deep);
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
  padding-left: 1.5rem;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 1px;
  background: var(--coral);
}

.section-title {
  font-size: clamp(1.75rem, 7vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.page-title {
  font-size: clamp(2rem, 9vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.page-subtitle {
  color: var(--charcoal-muted);
  font-size: 1rem;
  max-width: 60ch;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: var(--tap);
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1.5px solid transparent;
  transition: background-color 220ms var(--easing), color 220ms var(--easing),
              transform 220ms var(--easing), box-shadow 220ms var(--easing),
              border-color 220ms var(--easing);
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn-arrow { display: inline-block; transition: transform 280ms var(--easing-bounce); }
.btn:hover .btn-arrow,
.btn:focus-visible .btn-arrow { transform: translateX(4px); }

.btn-primary { background: var(--charcoal); color: var(--cream); }
.btn-primary:hover {
  background: var(--coral-deep); color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgb(var(--shadow) / 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent; color: var(--charcoal);
  border-color: rgba(26, 26, 26, 0.18);
}
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

.btn-outline {
  background: transparent; color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; min-height: 56px; }

/* Focus visible accessibilité */
:where(a, button, .btn):focus-visible {
  outline: 2.5px solid var(--coral);
  outline-offset: 3px;
  border-radius: var(--radius-pill);
}

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.6rem var(--gutter);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  padding-top: calc(0.6rem + var(--safe-top));
}
.announcement-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap;
}
.announcement-bar-icon { color: var(--coral-soft); }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 234, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  transition: box-shadow 240ms var(--easing), background 240ms var(--easing), transform 320ms var(--easing);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(251, 245, 234, 0.98);
  border-bottom-color: rgba(26, 26, 26, 0.08);
}
/* Auto-hide au scroll down (mobile uniquement) */
.site-header.is-hidden { transform: translateY(-100%); }

.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.7rem var(--gutter);
  padding-left: max(var(--gutter), var(--safe-left));
  padding-right: max(var(--gutter), var(--safe-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.site-brand {
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
  min-height: var(--tap);
}
.site-brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--charcoal);
}
.site-brand-text { display: flex; flex-direction: column; line-height: 1; }
.site-brand-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.site-brand-text em {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  color: var(--charcoal-muted);
  margin-top: 2px;
}

/* Nav desktop : cachée par défaut (mobile-first) */
.site-nav { display: none; }

.site-header-tools { display: flex; align-items: center; gap: 0.4rem; }

/* Lang switcher : caché par défaut (mobile-first), visible dans le drawer */
.lang-switcher { display: none; }
.lang-switcher-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: var(--tap); min-height: var(--tap);
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  color: var(--charcoal-muted);
}
.lang-switcher-link.is-active {
  background: var(--cream);
  color: var(--charcoal);
  box-shadow: 0 1px 3px rgb(var(--shadow) / 0.08);
}

.btn-order-header { display: none; }

/* Burger (mobile) */
.site-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--tap);
  height: var(--tap);
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}
.site-burger:active { background: rgba(26, 26, 26, 0.06); }
.site-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 260ms var(--easing), opacity 200ms var(--easing);
}
.site-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-burger.is-active span:nth-child(2) { opacity: 0; }
.site-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── DRAWER (mobile fullscreen) ─────────────────────────────────────────── */
/* z-index: 200 > header (100) > bottom-bar (95). Rendu hors du header dans le
   layout pour éviter que backdrop-filter / sticky du header piège son fixed. */
.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  padding: calc(var(--header-h) + var(--safe-top) + 1.5rem) var(--gutter) calc(2rem + var(--safe-bottom));
  padding-left: max(var(--gutter), var(--safe-left));
  padding-right: max(var(--gutter), var(--safe-right));
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 260ms var(--easing), transform 260ms var(--easing), visibility 0s 260ms;
}
.site-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms var(--easing), transform 240ms var(--easing), visibility 0s 0s;
}

/* Quand le drawer est ouvert :
   - bottom-bar masquée (sinon elle traverse le drawer à cause de son backdrop)
   - burger hissé au-dessus du drawer (z-index > 200) pour pouvoir refermer
   - scroll body verrouillé (le JS gère aussi via position:fixed pour iOS) */
body.is-drawer-open .mobile-bottombar { transform: translateY(110%); pointer-events: none; }
body.is-drawer-open { overflow: hidden; }
body.is-drawer-open .site-burger {
  position: fixed;
  top: max(0.7rem, calc(var(--safe-top) + 0.5rem));
  right: max(var(--gutter), var(--safe-right));
  z-index: 210;
}

.site-drawer-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.site-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0.85rem 0;
  min-height: 52px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}
.site-drawer-link::after {
  content: '→';
  color: var(--coral);
  font-size: 1.2rem;
  opacity: 0.6;
  transition: transform 240ms var(--easing-bounce), opacity 200ms var(--easing);
}
.site-drawer-link:hover::after,
.site-drawer-link:active::after { transform: translateX(4px); opacity: 1; }

.site-drawer-langs {
  display: flex;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  background: rgba(26, 26, 26, 0.04);
  border-radius: var(--radius-pill);
  padding: 4px;
  align-self: flex-start;
}
.site-drawer-langs .lang-switcher-link {
  padding: 0.55rem 1rem;
  min-width: 56px;
}
.site-drawer-langs .lang-switcher-link.is-active {
  background: var(--cream);
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgb(var(--shadow) / 0.08);
}

/* Quick actions dans le drawer (téléphone, commande, etc.) */
.site-drawer-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.site-drawer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: var(--cream-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 26, 26, 0.05);
  font-size: 0.85rem;
  min-height: 64px;
}
.site-drawer-action strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.site-drawer-action span {
  font-size: 0.78rem;
  color: var(--charcoal-muted);
}
.site-drawer-action.is-primary {
  background: var(--coral);
  color: var(--cream);
  border-color: var(--coral);
}
.site-drawer-action.is-primary span { color: rgba(251, 245, 234, 0.85); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 1.5rem var(--gutter) 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 100% 30%, rgba(229, 115, 74, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(200, 161, 86, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.hero-content { position: relative; order: 2; }

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.status-dot.is-open {
  background: #2EC165;
  box-shadow: 0 0 0 3px rgba(46, 193, 101, 0.18);
}
.status-dot.is-open::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: #2EC165;
  opacity: 0;
  animation: pulse 2.4s infinite;
}
.status-dot.is-closed { background: var(--charcoal-muted); }
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.2rem, 10vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.1rem;
  font-weight: 800;
  text-wrap: balance;
}
.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--coral-deep);
}

.hero-subtitle {
  font-size: clamp(0.98rem, 2.5vw, 1.2rem);
  color: var(--charcoal-soft);
  max-width: 50ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.hero-actions .btn {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.hero-rating-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.hero-rating p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  order: 1;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.hero-visual-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow:
    0 24px 60px -28px rgb(var(--shadow) / 0.35),
    0 0 0 1px rgba(26, 26, 26, 0.04);
  transform: rotate(-1deg);
  transition: transform 600ms var(--easing);
}
.hero-visual-frame:hover { transform: rotate(0deg) scale(1.01); }
.hero-visual-image { width: 100%; height: 100%; object-fit: cover; }
.hero-visual-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream-soft));
  text-align: center;
}
.hero-visual-placeholder span { font-size: 4rem; display: block; margin-bottom: 0.5rem; }
.hero-visual-placeholder em { color: var(--charcoal-muted); font-family: var(--font-serif); font-style: italic; }

/* Badges flottants : cachés par défaut sur mobile (encombrement), réapparaissent en desktop */
.hero-badge { display: none; }

/* ─── MARQUEE ────────────────────────────────────────────────────────────── */
.marquee {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 1.5rem var(--gutter) 0;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-x 30s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  will-change: transform;
}
.marquee-track > span:not(.marquee-dot) { display: inline-block; }
.marquee-dot { color: var(--coral-soft); }
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about { padding: clamp(3rem, 8vw, 7rem) var(--gutter); }
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-content { order: 2; }
.about-text p {
  color: var(--charcoal-soft);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  background: var(--cream-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 26, 26, 0.04);
}
.about-feature strong { font-size: 1.4rem; flex-shrink: 0; }
.about-feature span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  line-height: 1.3;
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 20px 50px -24px rgb(var(--shadow) / 0.3);
  order: 1;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-visual-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--cream-deep), var(--coral-soft));
}
.about-visual-emoji { font-size: 4rem; }

/* ─── FEATURED ───────────────────────────────────────────────────────────── */
.featured {
  padding: clamp(3rem, 8vw, 6.5rem) var(--gutter);
  background: var(--cream-soft);
}
.featured-header {
  max-width: var(--max-w);
  margin: 0 auto 1.75rem;
  text-align: center;
}
.featured-header .eyebrow { padding-left: 0; padding-right: 0; }
.featured-header .eyebrow::before { display: none; }

.featured-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.featured-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px -8px rgb(var(--shadow) / 0.08);
  transition: transform 360ms var(--easing), box-shadow 360ms var(--easing);
  display: flex;
  flex-direction: column;
}
.featured-card:active { transform: scale(0.99); }
.featured-card-image {
  aspect-ratio: 5 / 3;
  position: relative;
  background: var(--cream-deep);
  overflow: hidden;
}
.featured-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--easing);
}
.featured-card:hover .featured-card-image img { transform: scale(1.06); }
.featured-card-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--cream-deep), var(--cream-soft));
}
.badge-veggie {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--green-veggie);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.featured-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.featured-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.featured-card-desc {
  color: var(--charcoal-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}
.featured-card-footer {
  display: flex; justify-content: space-between; align-items: baseline;
}
.featured-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--coral-deep);
}
.featured-cta { text-align: center; margin-top: 1.5rem; }

/* ─── GALLERY PREVIEW ────────────────────────────────────────────────────── */
.gallery-preview {
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery-preview-header { text-align: center; margin-bottom: 1.5rem; }
.gallery-preview-header .eyebrow { padding-left: 0; }
.gallery-preview-header .eyebrow::before { display: none; }

/* Mobile : 2 colonnes simples */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px;
  gap: 8px;
}
.gallery-preview-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  display: block;
  position: relative;
  transition: transform 400ms var(--easing);
}
.gallery-preview-item:active { transform: scale(0.97); }
.gallery-preview-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--easing);
}
.gallery-preview-item:hover img { transform: scale(1.06); }
/* Le 1er prend 2x2 pour casser la grille */
.gallery-preview-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
.gallery-preview-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ─── REVIEWS PREVIEW ────────────────────────────────────────────────────── */
.reviews-preview {
  padding: clamp(3rem, 8vw, 6.5rem) var(--gutter);
  background: var(--charcoal);
  color: var(--cream);
}
.reviews-preview-inner { max-width: var(--max-w); margin: 0 auto; }
.reviews-preview-header { text-align: center; margin-bottom: 1.75rem; }
.reviews-preview-header .eyebrow { color: var(--coral-soft); padding: 0; }
.reviews-preview-header .eyebrow::before { display: none; }
.reviews-preview-header .section-title { color: var(--cream); }

.reviews-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.review-card-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}
.review-card-content {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(251, 245, 234, 0.92);
  font-style: italic;
  margin-bottom: 1.25rem;
  flex: 1;
}
.review-card-footer {
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.review-card-footer strong { font-weight: 600; color: var(--cream); }
.review-card-footer span { color: rgba(251, 245, 234, 0.55); margin-top: 2px; }

.reviews-preview-cta { text-align: center; margin-top: 1.75rem; }
.reviews-preview-cta .btn-outline {
  color: var(--cream); border-color: rgba(255, 255, 255, 0.3);
}
.reviews-preview-cta .btn-outline:hover {
  background: var(--cream); color: var(--charcoal); border-color: var(--cream);
}

/* ─── CONTACT TEASER ─────────────────────────────────────────────────────── */
.contact-teaser { padding: clamp(3rem, 8vw, 6rem) var(--gutter); }
.contact-teaser-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-teaser-address {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  font-family: var(--font-serif);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.contact-teaser-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.contact-teaser-actions .btn { width: 100%; }
.contact-teaser-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.08);
  background: var(--cream-deep);
}
.contact-teaser-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.15) saturate(0.9);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--cream-deep);
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) 1.5rem;
  margin-top: 1.5rem;
}
.site-footer-inner { max-width: var(--max-w); margin: 0 auto; }
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.site-footer-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--charcoal);
  object-fit: cover;
}
.site-footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.site-footer-title {
  font-family: var(--font-display);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-muted);
  margin: 0 0 0.85rem;
  font-weight: 600;
}
.site-footer-col p,
.site-footer-col a { font-size: 0.92rem; color: var(--charcoal-soft); }
.site-footer-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(26, 26, 26, 0.2);
  text-underline-offset: 3px;
  min-height: 32px;
}
.site-footer-link:hover { text-decoration-color: var(--coral); }

.site-footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.site-footer-socials a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(26, 26, 26, 0.2);
  text-underline-offset: 3px;
  padding: 0.25rem 0;
}

.site-footer-hours {
  list-style: none; margin: 0; padding: 0;
  font-size: 0.85rem;
}
.site-footer-hours li {
  display: flex; justify-content: space-between;
  padding: 0.3rem 0;
  color: var(--charcoal-soft);
}
.site-footer-hours em { font-style: normal; font-family: var(--font-body); font-size: 0.8rem; }

.site-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  font-size: 0.8rem;
  color: var(--charcoal-muted);
}
.site-footer-bottom p { margin: 0; }
.site-footer-sep { margin: 0 0.5rem; color: var(--charcoal-muted); opacity: 0.5; }
.site-footer-admin { opacity: 0.7; }
.site-footer-admin:hover { opacity: 1; color: var(--coral-deep); }

/* ─── MOBILE BOTTOM BAR (sticky actions) ─────────────────────────────────── */
.mobile-bottombar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 95;
  background: rgba(251, 245, 234, 0.96);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  padding: 8px 8px calc(8px + var(--safe-bottom));
  padding-left: max(8px, var(--safe-left));
  padding-right: max(8px, var(--safe-right));
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  transition: transform 320ms var(--easing);
}
.mobile-bottombar.is-hidden { transform: translateY(110%); }

.mobile-bottombar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 52px;
  padding: 8px 6px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  background: transparent;
  color: var(--charcoal);
  -webkit-tap-highlight-color: transparent;
  transition: background-color 160ms var(--easing), transform 120ms var(--easing);
}
.mobile-bottombar-btn:active { transform: scale(0.96); background: rgba(26, 26, 26, 0.05); }
.mobile-bottombar-btn-icon {
  font-size: 1.15rem;
  line-height: 1;
}
.mobile-bottombar-btn-label {
  font-size: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.mobile-bottombar-btn.is-primary {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 0 6px 16px -6px rgb(229 115 74 / 0.5);
}
.mobile-bottombar-btn.is-primary:active { background: var(--coral-deep); }

/* Ancien floating-order : on le neutralise (remplacé par bottom-bar) */
.floating-order { display: none !important; }

/* ─── PAGE HEADER ────────────────────────────────────────────────────────── */
.page-header {
  padding: clamp(2rem, 6vw, 5rem) var(--gutter) clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 30%, rgba(229, 115, 74, 0.06), transparent 60%);
  pointer-events: none;
}
.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

/* ─── MENU PAGE ──────────────────────────────────────────────────────────── */
.menu-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 6rem);
}

/* Catégories : scroll horizontal sur mobile (snap) */
.menu-categories {
  display: flex;
  gap: 0.5rem;
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  padding: 0.85rem var(--gutter);
  margin: 0 calc(var(--gutter) * -1) 1.5rem;
  background: rgba(251, 245, 234, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-categories::-webkit-scrollbar { display: none; }
.menu-category-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--cream-deep);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color 200ms var(--easing), color 200ms var(--easing);
  white-space: nowrap;
  scroll-snap-align: start;
  flex-shrink: 0;
  min-height: 38px;
}
.menu-category-link:hover { background: var(--charcoal); color: var(--cream); }
.menu-category-link.is-active { background: var(--charcoal); color: var(--cream); }

.menu-section { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); scroll-margin-top: calc(var(--header-h) + 80px); }
.menu-section-header { margin-bottom: 1.5rem; }
.menu-section-title {
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(26, 26, 26, 0.12);
  margin-left: 0.5rem;
}
.menu-section-desc {
  color: var(--charcoal-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.98rem;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.menu-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.5rem 0;
}
.menu-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
}
.menu-item-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}
.menu-item-name {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-family: var(--font-display);
  flex: 1;
  min-width: 0;
}
.menu-item-dots {
  flex: 1;
  height: 1px;
  border-bottom: 2px dotted rgba(26, 26, 26, 0.15);
  align-self: center;
  margin: 0 0.25rem;
  display: none;
}
.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--coral-deep);
  flex-shrink: 0;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: var(--charcoal-muted);
  margin: 0;
  line-height: 1.4;
}
.badge-veggie-inline {
  display: inline-block;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.badge-featured {
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.menu-page-cta {
  text-align: center;
  margin-top: clamp(2rem, 6vw, 4rem);
  padding-top: clamp(1.5rem, 4vw, 3rem);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

/* ─── GALLERY PAGE ───────────────────────────────────────────────────────── */
.gallery-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 6rem);
}
.gallery-page-grid {
  columns: 2;
  column-gap: 8px;
}
.gallery-page-item {
  break-inside: avoid;
  margin: 0 0 8px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.gallery-page-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 600ms var(--easing);
}
.gallery-page-item:hover img { transform: scale(1.04); }
.gallery-page-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 0.85rem 0.85rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7), transparent);
  color: white;
  font-size: 0.78rem;
  opacity: 0;
  transition: opacity 280ms var(--easing);
}
.gallery-page-item:hover figcaption,
.gallery-page-item:active figcaption { opacity: 1; }

/* ─── REVIEWS PAGE ───────────────────────────────────────────────────────── */
.reviews-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 6rem);
}
.reviews-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.reviews-page-grid .review-card {
  background: var(--cream-soft);
  color: var(--charcoal);
  border-color: rgba(26, 26, 26, 0.06);
}
.reviews-page-grid .review-card-content { color: var(--charcoal-soft); }
.reviews-page-grid .review-card-footer { border-color: rgba(26, 26, 26, 0.08); }
.reviews-page-grid .review-card-footer strong { color: var(--charcoal); }
.reviews-page-grid .review-card-footer span { color: var(--charcoal-muted); }

.reviews-page-cta { text-align: center; margin-top: 2rem; }

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 6rem);
}
.contact-page-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.contact-info-block:last-child { border-bottom: 0; }
.contact-info-block:first-child { padding-top: 0; }
.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-muted);
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.contact-info-block p { margin: 0; color: var(--charcoal-soft); }
.contact-link {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(26, 26, 26, 0.2);
  text-underline-offset: 4px;
  display: inline-block;
  min-height: 36px;
  padding: 0.25rem 0;
}
.contact-link:hover { color: var(--coral-deep); text-decoration-color: var(--coral); }
.contact-link-big {
  display: inline-block;
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
  min-height: var(--tap);
  padding: 0.4rem 0;
}
.contact-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  flex-wrap: wrap;
}
.contact-status-detail {
  font-size: 0.82rem;
  color: var(--charcoal-muted);
  width: 100%;
}

.contact-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.85rem;
}
.contact-hours-table th,
.contact-hours-table td {
  padding: 0.5rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}
.contact-hours-table thead th {
  font-family: var(--font-display);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-muted);
  font-weight: 600;
}
.contact-hours-table tbody th { font-weight: 500; color: var(--charcoal); }
.contact-hours-table tbody td { color: var(--charcoal-soft); }
.contact-hours-table tbody td em { color: var(--charcoal-muted); font-style: italic; font-size: 0.78rem; }

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.contact-social {
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--cream-soft);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(26, 26, 26, 0.06);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.contact-social:hover { background: var(--charcoal); color: var(--cream); }

.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4 / 3;
  min-height: 280px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) saturate(0.95);
}

/* ─── ERROR PAGES ────────────────────────────────────────────────────────── */
.error-page {
  display: grid;
  place-items: center;
  min-height: 60dvh;
  padding: 3rem var(--gutter);
}
.error-page-inner { text-align: center; max-width: 600px; }
.error-page-code {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 6rem);
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.error-page-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.error-page-actions .btn { width: 100%; }
.error-page-debug {
  margin-top: 1.75rem;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.04);
  border-radius: var(--radius-sm);
  text-align: left;
  font-size: 0.78rem;
  font-family: 'JetBrains Mono', monospace;
  white-space: pre-wrap;
  max-height: 300px;
  overflow: auto;
}

/* ─── LEGAL PAGE ─────────────────────────────────────────────────────────── */
.legal-page {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 6rem);
}
.legal-page-content { font-size: 1rem; color: var(--charcoal-soft); }
.legal-page-content h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.85rem;
  color: var(--charcoal);
}
.legal-page-content h2:first-child { margin-top: 0; }

/* ─── EMPTY STATE ────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--charcoal-muted);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ============================================================================
   ▼▼▼ TABLET (≥720px) — passe en grilles partielles, header revient
   ============================================================================ */
@media (min-width: 720px) {
  :root { --header-h: 72px; }

  body { padding-bottom: 0; } /* Plus de bottom bar */

  .site-header-inner { padding: 0.95rem var(--gutter); gap: 1.25rem; }
  .site-brand-mark { width: 44px; height: 44px; }
  .site-brand-text strong { font-size: 1.05rem; }
  .site-brand-text em { font-size: 0.75rem; }

  .site-burger { display: none; }
  .site-drawer { display: none !important; }

  .site-nav {
    display: flex;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
  }
  .site-nav-link {
    padding: 0.55rem 0.95rem;
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }
  .site-nav-link:hover { background: rgba(26, 26, 26, 0.06); color: var(--charcoal); }
  .site-nav-link.is-active { background: var(--charcoal); color: var(--cream); }

  .lang-switcher {
    display: flex;
    gap: 1px;
    background: rgba(26, 26, 26, 0.06);
    padding: 3px;
    border-radius: var(--radius-pill);
  }
  .lang-switcher .lang-switcher-link {
    min-width: 0;
    min-height: 32px;
    padding: 0.3rem 0.65rem;
  }

  .btn-order-header {
    display: inline-flex;
    align-items: center;
    background: var(--coral);
    color: var(--cream);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.88rem;
    min-height: 40px;
    transition: all 220ms var(--easing);
  }
  .btn-order-header:hover {
    background: var(--coral-deep); color: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgb(229 115 74 / 0.5);
  }

  /* Bottom bar mobile cachée en desktop */
  .mobile-bottombar { display: none; }

  /* Hero passe en grille à 2 col à partir d'environ tablette landscape */
  .hero { padding: clamp(2rem, 5vw, 4rem) var(--gutter) 0; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { width: auto; }

  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .reviews-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .reviews-page-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .gallery-page-grid { columns: 3; column-gap: 12px; }
  .gallery-page-item { margin-bottom: 12px; }

  .gallery-preview-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .gallery-preview-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-preview-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-preview-item:nth-child(2) { grid-column: span 2; }

  .menu-categories {
    margin: 0 0 2rem;
    padding: 0.85rem 0;
    background: rgba(251, 245, 234, 0.95);
  }
  .menu-items { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-item-dots { display: block; }

  .about-features { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }

  .site-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .site-footer-bottom { flex-direction: row; gap: 1rem; text-align: left; justify-content: space-between; }

  .contact-teaser-actions { flex-direction: row; flex-wrap: wrap; }
  .contact-teaser-actions .btn { width: auto; }

  .error-page-actions { flex-direction: row; flex-wrap: wrap; }
  .error-page-actions .btn { width: auto; }
}

/* ============================================================================
   ▼▼▼ DESKTOP (≥1024px) — grilles complètes, hero asymétrique, badges
   ============================================================================ */
@media (min-width: 1024px) {
  :root { --gutter: clamp(1.5rem, 3vw, 2.5rem); }

  .site-header-inner { padding: 1rem var(--gutter); gap: 1.5rem; }

  /* Hero : grille 2 colonnes, image décalée, badges visibles */
  .hero { padding: 3rem var(--gutter) 0; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding-bottom: clamp(3rem, 6vw, 5rem);
  }
  .hero-content { order: 0; }
  .hero-visual {
    order: 0;
    aspect-ratio: 4 / 5;
    max-width: none;
    margin: 0;
  }
  .hero-visual-frame { transform: rotate(-1.5deg); }

  .hero-title { font-size: clamp(2.6rem, 5.5vw, 5.4rem); margin-bottom: 1.5rem; }
  .hero-subtitle { margin-bottom: 2rem; }
  .hero-rating-stars { font-size: 1.1rem; }
  .hero-rating p { font-size: 0.9rem; }

  .hero-badge {
    display: flex;
    position: absolute;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: 0 16px 48px -16px rgb(var(--shadow) / 0.25);
    flex-direction: column;
    line-height: 1;
    border: 1px solid rgba(26, 26, 26, 0.05);
    animation: float 6s ease-in-out infinite;
  }
  .hero-badge-1 { bottom: 12%; left: -8%; animation-delay: 0s; }
  .hero-badge-2 { top: 10%; right: -5%; animation-delay: -3s; }
  .hero-badge strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--coral-deep);
    margin-bottom: 0.2rem;
  }
  .hero-badge span {
    font-size: 0.78rem;
    color: var(--charcoal-soft);
    font-weight: 500;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
  }

  .marquee {
    margin: 2rem auto 0;
    max-width: var(--max-w);
    padding: 1.25rem 0;
  }
  .marquee-track { gap: 2.5rem; font-size: 1.05rem; }

  /* About : 2 col */
  .about-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }
  .about-content { order: 0; }
  .about-visual { order: 0; max-width: none; transform: rotate(2deg); }
  .about-text p { font-size: 1.05rem; margin-bottom: 1.25rem; }
  .about-features { gap: 1rem; margin-top: 2.25rem; }
  .about-feature { padding: 1rem 1.1rem; }

  .featured { padding: clamp(4rem, 8vw, 6.5rem) var(--gutter); }
  .featured-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
  .featured-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .featured-card-image { aspect-ratio: 4 / 3; }
  .featured-card-body { padding: 1.4rem 1.5rem 1.6rem; }
  .featured-card-title { font-size: 1.3rem; }
  .featured-card-desc { font-size: 0.92rem; }
  .featured-card-price { font-size: 1.25rem; }

  .gallery-preview { padding: clamp(4rem, 8vw, 6rem) var(--gutter); }
  .gallery-preview-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 12px;
  }
  .gallery-preview-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-preview-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-preview-item:nth-child(2) { grid-column: span 2; }
  .gallery-preview-item:nth-child(3) { grid-column: span 2; }
  .gallery-preview-item:nth-child(4) { grid-column: span 2; }
  .gallery-preview-item:nth-child(5) { grid-column: span 1; }
  .gallery-preview-item:nth-child(6) { grid-column: span 1; }

  .reviews-preview { padding: clamp(4rem, 8vw, 6.5rem) var(--gutter); }
  .reviews-preview-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .review-card { padding: 2rem 1.75rem; }
  .review-card-content { font-size: 1.1rem; }
  .reviews-preview-cta { margin-top: 2.5rem; }

  .reviews-page-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

  .contact-teaser-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }
  .contact-teaser-address { font-size: 1.15rem; margin-bottom: 2rem; }

  .contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }
  .contact-map-wrap {
    aspect-ratio: auto;
    min-height: 500px;
    height: 100%;
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }

  .menu-page { padding: 0 var(--gutter) clamp(4rem, 8vw, 6rem); }
  .menu-categories {
    flex-wrap: wrap;
    overflow: visible;
    padding: 1rem 0;
    top: var(--header-h);
  }
  .menu-section { scroll-margin-top: calc(var(--header-h) + 96px); }
  .menu-items { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 2.5rem; }
  .menu-item { padding: 0; }
  .menu-item-image { width: 90px; height: 90px; }
  .menu-item-name { font-size: 1.08rem; }
  .menu-item-price { font-size: 1.05rem; }
  .menu-item-desc { font-size: 0.88rem; }

  .site-footer-grid { grid-template-columns: repeat(4, 1fr); }
  .site-footer-brand { margin-bottom: 3rem; padding-bottom: 2rem; }
  .site-footer-logo { width: 56px; height: 56px; }
}

/* ============================================================================
   ▼▼▼ LARGE DESKTOP (≥1280px) — peaufinage
   ============================================================================ */
@media (min-width: 1280px) {
  .hero-title { font-size: clamp(3.4rem, 5vw, 5.4rem); }
  .featured-grid { gap: 2rem; }
}

/* ─── HOVER ONLY (devices that can hover) ────────────────────────────────── */
@media (hover: hover) {
  .featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -20px rgb(var(--shadow) / 0.2);
  }
  .gallery-preview-item:hover { transform: scale(0.97); }
}

/* ─── PRINT ─────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-bottombar, .site-drawer, .floating-order, .marquee,
  .announcement-bar, .featured-card-image, .hero-visual, .about-visual,
  .gallery-preview, .reviews-preview, .contact-teaser-map, .contact-map-wrap { display: none !important; }
  body { padding-bottom: 0; background: white; color: black; }
  a { color: black !important; text-decoration: underline; }
}
