/* ============================================================
   NEO FOOD V7 — Design System
   "Premium Editorial Fast-Food"
   Palette: #000 | Green #8CBE24 | Orange #F07A28
   Fonts: Outfit (headings) + Nunito (body)
   ============================================================ */

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

:root {
  --green:         #8CBE24;
  --green-dark:    #6D9519;
  --green-light:   #A8D42C;
  --green-glow:    rgba(140, 190, 36, 0.18);
  --green-glow-lg: rgba(140, 190, 36, 0.35);
  --orange:        #F07A28;
  --orange-dark:   #C85E10;
  --orange-light:  #FF9A4D;
  --orange-glow:   rgba(240, 122, 40, 0.22);
  --blue-glow:     rgba(80, 120, 255, 0.15);

  --bg:            #000000;
  --bg-card:       #0D0D0D;
  --bg-card-2:     #111111;
  --bg-elevated:   #181818;
  --glass:         rgba(255,255,255,0.03);
  --glass-border:  rgba(255,255,255,0.06);
  --glass-hover:   rgba(255,255,255,0.06);

  --white:         #F5F5F5;
  --white-dim:     rgba(245,245,245,0.7);
  --gray-light:    #888888;
  --gray:          #444444;
  --border:        rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.12);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-2xl:  40px;
  --r-full: 9999px;

  --t-fast: 0.15s cubic-bezier(0.4,0,0.2,1);
  --t-base: 0.3s cubic-bezier(0.4,0,0.2,1);
  --t-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
  --t-spring: 0.5s cubic-bezier(0.34,1.56,0.64,1);

  --shadow-sm:     0 2px 10px rgba(0,0,0,0.6);
  --shadow-md:     0 6px 30px rgba(0,0,0,0.7);
  --shadow-lg:     0 12px 60px rgba(0,0,0,0.8);
  --shadow-green:  0 0 50px rgba(140,190,36,0.25);
  --shadow-orange: 0 0 50px rgba(240,122,40,0.3);
}

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

/* ── GRAIN OVERLAY ──────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: none; border: none; background: none; }

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--orange));
  z-index: 10000;
  border-radius: 0 var(--r-full) var(--r-full) 0;
  box-shadow: 0 0 12px var(--green-glow-lg);
  transition: width 0.1s linear;
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
#cursor {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 2px solid rgba(140,190,36,0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  transition: width 0.25s var(--t-spring),
              height 0.25s var(--t-spring),
              border-color 0.25s ease,
              background 0.25s ease;
}

#cursor.hovering {
  width: 60px; height: 60px;
  border-color: var(--orange);
  background: rgba(240,122,40,0.08);
}

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
}

/* ── PRELOADER ──────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.preloader-logo { display: flex; align-items: center; gap: 16px; }
.preloader-logo img { width: 64px; height: 64px; object-fit: contain; animation: pulseGlow 1.4s ease-in-out infinite; }
.preloader-logo span {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.preloader-bar {
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-full); overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: var(--r-full);
  animation: loadBar 0.7s ease forwards;
}

@keyframes loadBar { to { width: 100%; } }
@keyframes pulseGlow {
  0%, 100% { filter: drop-shadow(0 0 8px var(--green-glow-lg)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 20px rgba(140,190,36,0.6)); transform: scale(1.05); }
}

/* ── HEADER ─────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--t-slow), backdrop-filter var(--t-slow),
              border-color var(--t-base), padding var(--t-base);
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-color: var(--border);
  padding: 14px 0;
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.header-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.header-logo img { width: 44px; height: 44px; object-fit: contain; }
.header-logo span {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

#navMenu { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
  color: var(--gray-light);
  padding: 8px 16px;
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--green); }
.nav-link.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--green); border-radius: 50%;
}

.header-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000 !important;
  font-family: var(--font-head); font-size: 0.875rem; font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  transition: transform var(--t-spring), box-shadow var(--t-base);
  box-shadow: 0 4px 20px rgba(140,190,36,0.3);
  flex-shrink: 0;
  -webkit-text-fill-color: #000 !important;
}
.header-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(140,190,36,0.5);
}

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; padding: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.mobile-toggle span {
  display: block; height: 2px; background: var(--white);
  border-radius: var(--r-full);
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SECTION ───────────────────────────────────────────── */
#accueil {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: 90px;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  will-change: transform;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(140,190,36,0.22) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,122,40,0.18) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orbFloat2 14s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(80,120,255,0.12) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.08); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, -50px) scale(1.1); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(140,190,36,0.1);
  border: 1px solid rgba(140,190,36,0.25);
  border-radius: var(--r-full);
  padding: 8px 18px;
  width: fit-content;
}
.hero-eyebrow span {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  color: var(--green); letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 13vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.hero-line { display: block; will-change: transform, opacity; }
.hero-stroke {
  -webkit-text-stroke: 3px var(--orange);
  -webkit-text-fill-color: rgba(240, 122, 40, 0.12);
  color: var(--orange);
}

.hero-sub {
  font-size: 1.1rem; color: var(--gray-light);
  max-width: 440px; line-height: 1.7;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000 !important;
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--r-full);
  letter-spacing: 0.01em;
  transition: transform var(--t-spring), box-shadow var(--t-base);
  box-shadow: 0 6px 30px rgba(140,190,36,0.35);
  -webkit-text-fill-color: #000 !important;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 50px rgba(140,190,36,0.55);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  padding: 15px 30px;
  border: 1px solid var(--border-bright);
  border-radius: var(--r-full);
  letter-spacing: 0.01em;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-spring);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.hero-pills {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  color: var(--gray-light);
  transition: all var(--t-base);
  animation: pillFloat 3s ease-in-out infinite;
}
.hero-pill:hover {
  background: rgba(140,190,36,0.08);
  border-color: rgba(140,190,36,0.3);
  color: var(--white);
  transform: translateY(-3px);
}
.hero-pill i { color: var(--green); font-size: 0.85rem; }
.hero-pill:nth-child(2) { animation-delay: 0.3s; }
.hero-pill:nth-child(3) { animation-delay: 0.6s; }
.hero-pill:nth-child(4) { animation-delay: 0.9s; }
@keyframes pillFloat {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)}
}

/* Hero Right Visual */
.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }

.hero-visual {
  position: relative;
  width: 480px; height: 520px;
}

.hero-image-frame {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(140,190,36,0.1);
  position: relative;
}
.hero-image-frame::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.hero-image-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.hero-image-frame:hover img { transform: scale(1.04); }

.hero-badge {
  position: absolute;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: 16px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  animation: badgeFloat 4s ease-in-out infinite;
  z-index: 2;
}
.badge-rating {
  top: 24px; right: -20px;
  animation-delay: 0s;
}
.badge-open {
  bottom: 30px; left: -20px;
  animation-delay: 1s;
}
.badge-rating .badge-icon { font-size: 1.4rem; }
.badge-rating .badge-val {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--white);
}
.badge-rating .badge-label { font-size: 0.75rem; color: var(--gray-light); }
.badge-open-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  animation: blink 2s ease-in-out infinite;
}
.badge-open span { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--white); }

@keyframes badgeFloat {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
}

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray-light); font-size: 0.75rem; font-family: var(--font-head);
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{opacity:1; transform:scaleY(1)} 50%{opacity:0.3; transform:scaleY(0.5)}
}

/* ── TICKER BAND ────────────────────────────────────────────── */
.band {
  background: var(--green);
  padding: 14px 0;
  overflow: hidden;
  position: relative; z-index: 2;
}
.band-track {
  display: flex; align-items: center;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.band-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 28px;
  font-family: var(--font-head); font-size: 0.875rem; font-weight: 700;
  color: #000; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}
.band-item i { font-size: 0.8rem; }
.band-sep { color: rgba(0,0,0,0.35); font-size: 0.6rem; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── BENTO STATS SECTION ────────────────────────────────────── */
.bento-section {
  padding: var(--sp-3xl) 0;
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative; overflow: hidden;
}
.bento-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.bento-main {
  grid-column: span 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(140,190,36,0.08) 0%, rgba(240,122,40,0.05) 100%);
  border-color: rgba(140,190,36,0.15);
}
.bento-main::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238CBE24' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border-radius: var(--r-xl);
}
.bento-main-headline {
  font-family: var(--font-head); font-size: 2rem; font-weight: 900; line-height: 1.1;
  position: relative; z-index: 1;
}
.bento-main-headline em { font-style: normal; color: var(--green); }
.bento-main-sub {
  color: var(--gray-light); font-size: 0.95rem; margin-top: 10px;
  position: relative; z-index: 1;
}

.bento-stat {
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 180px;
}
.bento-stat-label {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-light);
}
.stat-count-wrap { display: flex; align-items: baseline; gap: 6px; }
.stat-count {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gray-light);
}
.bento-stat-sub { font-size: 0.85rem; color: var(--gray-light); margin-top: 4px; }

.bento-orange { border-color: rgba(240,122,40,0.2); }
.bento-orange .stat-count { color: var(--orange); }
.bento-orange:hover { box-shadow: 0 0 30px rgba(240,122,40,0.12); }

.bento-green { border-color: rgba(140,190,36,0.2); }
.bento-green .stat-count { color: var(--green); }
.bento-green:hover { box-shadow: 0 0 30px rgba(140,190,36,0.12); }

.bento-blue { border-color: rgba(80,120,255,0.2); }
.bento-blue .stat-count { color: #6b8fff; }
.bento-blue:hover { box-shadow: 0 0 30px rgba(80,120,255,0.12); }

.bento-hours {
  grid-column: span 1;
  display: flex; flex-direction: column; gap: 12px;
}
.bento-hours-time {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; line-height: 1.1;
}
.bento-hours-note { font-size: 0.8rem; color: var(--gray-light); }

.bento-app {
  grid-column: span 2;
  display: flex; flex-direction: column; gap: 16px;
  background: linear-gradient(135deg, rgba(240,122,40,0.08) 0%, rgba(140,190,36,0.05) 100%);
  border-color: rgba(240,122,40,0.15);
}
.bento-app-title {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 900;
}
.bento-app-title em { font-style: normal; color: var(--orange); }
.bento-app-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.app-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  padding: 10px 16px;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
  color: var(--white);
  transition: all var(--t-base);
}
.app-btn:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.app-btn i { font-size: 1.1rem; }
.app-btn .btn-store-line { font-size: 0.68rem; font-weight: 400; color: var(--gray-light); display: block; }
.app-btn .btn-store-name { display: block; }

/* Status badge */
.status-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  color: #4ade80;
  width: fit-content;
}
.status-badge::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: blink 2s ease-in-out infinite;
}
.status-badge.closed {
  background: rgba(240,82,82,0.1);
  border-color: rgba(240,82,82,0.3);
  color: #f05252;
}
.status-badge.closed::before { background: #f05252; }

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px; background: var(--green); border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title em { font-style: normal; color: var(--green); }

/* ── MENU SECTION ───────────────────────────────────────────── */
#menu { padding: var(--sp-3xl) 0 var(--sp-xl); }

.menu-header {
  text-align: center; margin-bottom: var(--sp-xl);
}
.menu-header .section-label { justify-content: center; }
.menu-header .section-label::before { display: none; }
.menu-header .section-title { margin-bottom: 14px; }
.menu-header p { color: var(--gray-light); max-width: 500px; margin: 0 auto; font-size: 1.05rem; }

.menu-filters-wrap {
  position: sticky; top: 72px; z-index: 100;
  padding: 14px 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-lg);
}

.menu-filters {
  display: flex; align-items: center; gap: 8px;
  overflow-x: auto; padding-bottom: 2px;
  scrollbar-width: none;
}
.menu-filters::-webkit-scrollbar { display: none; }

.filter-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 8px 18px;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 700;
  color: var(--gray-light);
  white-space: nowrap;
  transition: all var(--t-base);
  flex-shrink: 0;
}
.filter-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: var(--border-bright);
}
.filter-btn.active {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  box-shadow: 0 0 20px rgba(140,190,36,0.3);
}
.filter-btn i { font-size: 0.88rem; }

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: var(--sp-lg);
}

/* Menu Card — Glassmorphism */
.menu-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  will-change: transform;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}
.menu-card.card-in {
  animation: cardEnter 0.5s ease forwards;
}
@keyframes cardEnter {
  to { opacity: 1; transform: translateY(0); }
}

.menu-card:hover {
  border-color: rgba(140,190,36,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 20px rgba(140,190,36,0.06);
}

.card-image {
  position: relative; height: 200px; overflow: hidden;
  background: var(--bg-elevated);
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .card-image img { transform: scale(1.06); }
.card-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}

.card-badge {
  position: absolute; top: 12px; left: 12px;
  border-radius: var(--r-full);
  padding: 5px 12px;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  z-index: 1;
}
.badge-bestseller { background: var(--orange); color: #000; }
.badge-premium { background: linear-gradient(135deg, #c9a227, #f0c040); color: #000; }
.badge-populaire { background: var(--green); color: #000; }
.badge-xxl { background: #ff4040; color: #fff; }
.badge-epice { background: #ff4040; color: #fff; }
.badge-kids { background: #06b6d4; color: #000; }
.badge-formule { background: var(--orange); color: #000; }
.badge-nouveau { background: #a855f7; color: #fff; }

.card-body { padding: 20px; }
.card-category {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--green); margin-bottom: 6px;
}
.card-name {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: 8px; line-height: 1.2;
}
.card-desc {
  font-size: 0.83rem; color: var(--gray-light); line-height: 1.5; margin-bottom: 14px;
}
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.card-price {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 900; color: var(--orange);
}
.card-cta {
  width: 36px; height: 36px;
  background: rgba(140,190,36,0.12);
  border: 1px solid rgba(140,190,36,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.9rem;
  transition: all var(--t-spring);
}
.menu-card:hover .card-cta {
  background: var(--green); color: #000;
  transform: scale(1.1);
}

/* ── PAGINATION ─────────────────────────────────────────────── */
#menuPagination {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--sp-sm);
}
#menuPagination.hidden { display: none; }

#paginationInfo {
  font-size: 0.88rem; color: var(--gray-light);
}
#paginationInfo strong { color: var(--white); }

#paginationControls {
  display: flex; align-items: center; gap: 6px;
}

.page-btn {
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 700;
  color: var(--gray-light);
  transition: all var(--t-fast);
  padding: 0 8px;
}
.page-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--border-bright);
}
.page-btn.active {
  background: var(--green); color: #000;
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(140,190,36,0.3);
}
.page-btn:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.page-dots {
  padding: 0 4px; color: var(--gray);
  font-family: var(--font-head); font-weight: 700;
}

/* ── REVIEWS SECTION ────────────────────────────────────────── */
.reviews-section { padding: var(--sp-3xl) 0; overflow: hidden; }

.reviews-head {
  text-align: center; margin-bottom: var(--sp-xl);
}
.reviews-head .section-label { justify-content: center; }
.reviews-head .section-label::before { display: none; }

.reviews-rating-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,193,7,0.08);
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: var(--r-full);
  padding: 10px 20px;
  margin-top: 16px;
}
.rating-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.rating-val {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 900; color: var(--white);
}
.rating-count { font-size: 0.85rem; color: var(--gray-light); }

.reviews-carousel { position: relative; width: 100%; overflow: hidden; }
.reviews-carousel::before,
.reviews-carousel::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 10;
  pointer-events: none;
}
.reviews-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.reviews-carousel::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.reviews-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: reviewsScroll 36s linear infinite;
  padding: 16px 0;
}
.reviews-track:hover { animation-play-state: paused; }

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 28px;
  width: 340px; flex-shrink: 0;
  transition: border-color var(--t-base), transform var(--t-base);
}
.review-card:hover {
  border-color: rgba(255,193,7,0.2);
  transform: translateY(-4px);
}

.review-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 900; color: #000;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
}
.review-date { font-size: 0.78rem; color: var(--gray-light); }
.review-stars { color: #fbbf24; font-size: 0.9rem; }
.review-quote {
  font-size: 0.92rem; color: var(--white-dim); line-height: 1.65;
  font-style: italic;
}
.review-quote::before { content: '"'; color: var(--green); font-size: 1.4rem; line-height: 0; }

/* ── APP SECTION ────────────────────────────────────────────── */
#app { padding: var(--sp-3xl) 0; }

.app-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.app-left { display: flex; flex-direction: column; gap: 24px; }
.app-title {
  font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
}
.app-title em { font-style: normal; color: var(--orange); }
.app-desc { color: var(--gray-light); font-size: 1.05rem; line-height: 1.7; }

.app-store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.app-store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  padding: 12px 20px;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  color: var(--white);
  transition: all var(--t-spring);
}
.app-store-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.app-store-btn i { font-size: 1.4rem; }
.app-store-btn .store-line { font-size: 0.68rem; font-weight: 400; color: var(--gray-light); display: block; }
.app-store-btn .store-name { display: block; }

.app-features { display: flex; flex-direction: column; gap: 14px; }
.app-feature {
  display: flex; align-items: center; gap: 14px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); padding: 14px 18px;
  transition: border-color var(--t-base), transform var(--t-base);
}
.app-feature:hover { border-color: var(--border-bright); transform: translateX(4px); }
.app-feature-icon {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(140,190,36,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1rem; flex-shrink: 0;
}
.app-feature-text { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; }

.app-right { display: flex; justify-content: center; align-items: center; }
.app-visual {
  width: 380px; height: 380px;
  background: radial-gradient(circle at 40% 40%, rgba(240,122,40,0.15) 0%, rgba(140,190,36,0.08) 60%, transparent 80%);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: appVisualSpin 20s linear infinite;
}
@keyframes appVisualSpin {
  0%,100%{box-shadow: 0 0 60px rgba(240,122,40,0.1)}
  50%{box-shadow: 0 0 80px rgba(140,190,36,0.15)}
}
.app-visual-icon { font-size: 5rem; color: var(--orange); text-align: center; }
.app-visual-badge {
  position: absolute;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(12px);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md); padding: 10px 14px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  white-space: nowrap;
}
.app-visual-badge:nth-child(2) { top: 10%; right: -30px; color: var(--green); border-color: rgba(140,190,36,0.3); }
.app-visual-badge:nth-child(3) { bottom: 15%; left: -40px; color: var(--orange); border-color: rgba(240,122,40,0.3); }

/* ── INFO SECTION ───────────────────────────────────────────── */
#infos { padding: var(--sp-3xl) 0; }

.info-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
}

.info-map-wrap {
  grid-row: span 3;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 500px;
  position: relative;
}
.info-map-wrap iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
}

.info-card {
  background: var(--glass); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl); padding: 28px;
  transition: border-color var(--t-base), transform var(--t-base);
}
.info-card:hover { border-color: var(--border-bright); transform: translateY(-2px); }

.info-card-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: rgba(140,190,36,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.2rem; margin-bottom: 14px;
}
.info-card-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 800; margin-bottom: 10px;
}
.info-card p, .info-card address {
  font-size: 0.9rem; color: var(--gray-light); line-height: 1.6; font-style: normal;
}
.info-card a { color: var(--white-dim); transition: color var(--t-fast); }
.info-card a:hover { color: var(--green); }

.info-hours-list { display: flex; flex-direction: column; gap: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.hours-row .day { color: var(--gray-light); }
.hours-row .time { font-family: var(--font-head); font-weight: 700; color: var(--white); }
.hours-row.highlight .time { color: var(--orange); }

.info-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(140,190,36,0.1); border: 1px solid rgba(140,190,36,0.25);
  border-radius: var(--r-full); padding: 4px 12px;
  font-family: var(--font-head); font-size: 0.75rem; font-weight: 700;
  color: var(--green); margin-top: 12px;
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  padding: var(--sp-3xl) 0;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(140,190,36,0.06) 0%, rgba(240,122,40,0.06) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.cta-section .orb-1 {
  width: 500px; height: 500px; opacity: 0.5;
}
.cta-section .orb-2 {
  width: 400px; height: 400px; opacity: 0.4;
}

.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.025em; max-width: 800px;
}
.cta-title .stroke-text {
  -webkit-text-stroke: 2px var(--orange);
  -webkit-text-fill-color: rgba(240, 122, 40, 0.12);
}
.cta-desc { color: var(--gray-light); font-size: 1.1rem; max-width: 480px; line-height: 1.7; }
.cta-buttons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-orange {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
  padding: 16px 28px; border-radius: var(--r-full);
  transition: transform var(--t-spring), box-shadow var(--t-base);
  box-shadow: 0 6px 30px rgba(240,122,40,0.35);
}
.btn-orange:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 50px rgba(240,122,40,0.55);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: #000; padding: var(--sp-3xl) 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--border);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { width: 44px; height: 44px; object-fit: contain; }
.footer-logo span {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-desc { font-size: 0.9rem; color: var(--gray-light); line-height: 1.65; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-light); font-size: 0.95rem;
  transition: all var(--t-base);
}
.social-btn:hover { background: rgba(140,190,36,0.1); color: var(--green); border-color: rgba(140,190,36,0.3); }

.footer-col-title {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem; color: var(--gray-light);
  transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: var(--sp-md) 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: var(--gray); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: var(--gray); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--gray-light); }

/* ── FLOAT BUTTONS ──────────────────────────────────────────── */
#floatTop {
  position: fixed; bottom: 100px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(12px);
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-base);
  z-index: 900;
}
#floatTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#floatTop:hover { background: var(--green); color: #000; border-color: var(--green); }

.float-order {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: none;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000 !important;
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 800;
  padding: 14px 32px; border-radius: var(--r-full);
  box-shadow: 0 8px 30px rgba(140,190,36,0.4);
  z-index: 900;
  -webkit-text-fill-color: #000 !important;
  transition: transform var(--t-spring), box-shadow var(--t-base);
}
.float-order:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 40px rgba(140,190,36,0.5); }

/* ── ANIMATE ON SCROLL ──────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ── MAGNETIC BUTTON WRAPPER ────────────────────────────────── */
.magnetic { display: inline-block; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
  .bento-main { grid-column: span 3; }
  .bento-app { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-visual { width: 100%; height: 380px; }
  .app-grid { grid-template-columns: 1fr; gap: 48px; }
  .app-right { order: -1; }
  .info-bento { grid-template-columns: 1fr 1fr; }
  .info-map-wrap { grid-column: span 2; min-height: 320px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-right { order: -1; }
  .hero-visual { width: 100%; max-width: 480px; height: 340px; margin: 0 auto; }
  .info-bento { grid-template-columns: 1fr; }
  .info-map-wrap { grid-column: span 1; }
}

@media (max-width: 768px) {
  :root { --sp-3xl: 5rem; }

  body { cursor: auto; }
  button { cursor: pointer; }
  #cursor, #cursor-dot { display: none !important; }

  /* ── NAV MOBILE OVERLAY ── */
  #navMenu {
    display: none;                     /* caché par défaut */
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    padding: 80px 32px 40px;
  }
  #navMenu.open {
    display: flex;                     /* visible quand ouvert */
    animation: navFadeIn 0.25s ease;
  }
  @keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }

  .nav-link {
    font-size: 2.2rem; font-weight: 900;
    color: var(--white); padding: 12px 0;
    width: 100%; text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link.active { color: var(--orange); }
  .nav-link.active::after { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; z-index: 1000; position: relative; }

  /* ── HERO MOBILE : image en fond + texte par-dessus ── */
  #accueil {
    background-image: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?w=900&q=90');
    background-size: cover;
    background-position: center 40%;
    min-height: 100dvh;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  #accueil::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      160deg,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.80) 45%,
      rgba(0,0,0,0.50) 100%
    );
  }
  /* Les orbs restent visibles par-dessus le fond */
  .hero-orb { z-index: 2; }
  .hero-inner { position: relative; z-index: 3; }

  /* Passer à 1 colonne, cacher la colonne image */
  .hero-inner { grid-template-columns: 1fr !important; gap: 32px; }
  .hero-right { display: none; }

  /* Titre plus compact */
  .hero-title {
    font-size: clamp(3rem, 15vw, 5rem);
    line-height: 0.95;
  }
  .hero-stroke {
    -webkit-text-stroke-width: 2px;
    letter-spacing: -0.01em;
  }

  /* Sous-texte lisible sur fond sombre */
  .hero-sub { color: rgba(255,255,255,0.85); max-width: 100%; }

  /* Boutons pleine largeur */
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Masquer les pills pour gagner de l'espace */
  .hero-pills { display: none; }

  /* Indicateur scroll discret */
  .hero-scroll-indicator { display: none; }

  /* ── BENTO ── */
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-main { grid-column: span 2; }
  .bento-app { grid-column: span 2; }

  /* ── MENU ── */
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .menu-card-img { height: 130px; }
  .menu-card-body { padding: 12px; }
  .menu-card-title { font-size: 0.9rem; }
  .menu-card-desc {
    font-size: 0.78rem;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
  }

  /* ── REVIEWS ── */
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── MISC ── */
  .float-order { display: inline-flex; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-sm); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-main, .bento-app { grid-column: span 1; }
  .hero-badge { display: none; }
  #menuPagination { flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(2.8rem, 13vw, 4rem); }
}

@media (max-width: 360px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-img { height: 160px; }
}
