/* ============================================================
   manger-burger.fr — Feuille de style principale
   Design system : Sauce Piquante × Cheddar Fondu × Papier Kraft
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Karla:wght@400;500;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:         #F2EFE9;   /* Papier Kraft */
  --surface:    #EDEAE2;
  --fg:         #1A1208;
  --muted:      #6B6355;
  --border:     #D4CEBC;
  --primary:    #D4382B;   /* Sauce Piquante */
  --secondary:  #F2A900;   /* Cheddar Fondu */
  --accent:     #8C9299;   /* Alu Gris */
  --dark-bg:    #1A1A1A;
  --dark-fg:    #F5F0E8;

  --font-display: 'Syne', 'Georgia', serif;
  --font-body:    'Karla', 'system-ui', sans-serif;

  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   20px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  52px;
  --text-hero: clamp(44px, 8vw, 80px);

  --radius:    4px;
  --radius-lg: 8px;
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-6:   24px;
  --space-8:   32px;
  --space-12:  48px;
  --space-16:  64px;

  --shadow-hard: 4px 4px 0 #1A1208;
  --shadow-hard-red: 4px 4px 0 #D4382B;
  --shadow-hard-yellow: 4px 4px 0 #F2A900;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── BOUTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 12px 24px;
  border: 2px solid var(--fg);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  text-decoration: none;
  border-radius: var(--radius);
}
.btn:active { transform: translate(2px, 2px); box-shadow: none !important; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--fg);
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover { box-shadow: 6px 6px 0 #1A1208; transform: translate(-1px,-1px); }

.btn-secondary {
  background: var(--secondary);
  color: var(--fg);
  border-color: var(--fg);
  box-shadow: var(--shadow-hard);
}
.btn-secondary:hover { box-shadow: 6px 6px 0 #1A1208; transform: translate(-1px,-1px); }

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
  box-shadow: var(--shadow-hard);
}
.btn-outline:hover { background: var(--fg); color: var(--bg); }

.btn-outline-big {
  background: transparent;
  color: var(--fg);
  border: 2px solid var(--fg);
  box-shadow: var(--shadow-hard);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  padding: 16px 40px;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  border-radius: var(--radius);
}
.btn-outline-big:hover { background: var(--fg); color: var(--bg); box-shadow: 6px 6px 0 var(--primary); }
.btn-outline-big:active { transform: translate(2px,2px); box-shadow: none; }

.btn-white {
  background: #fff;
  color: var(--fg);
  border-color: #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}
.btn-white:hover { box-shadow: 6px 6px 0 rgba(0,0,0,0.4); transform: translate(-1px,-1px); }

.btn-big { font-size: var(--text-xl); padding: 18px 48px; font-family: var(--font-display); font-weight: 800; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  padding: 12px 28px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-full { width: 100%; }
.btn-newsletter { white-space: nowrap; }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--fg);
  transition: transform 0.3s;
}
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { text-decoration: none; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--fg);
  letter-spacing: -0.5px;
}
.logo-tld { color: var(--primary); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--fg); }
.nav-cta {
  background: var(--secondary);
  color: var(--fg);
  padding: 8px 16px;
  border: 2px solid var(--fg);
  box-shadow: 3px 3px 0 var(--fg);
  border-radius: var(--radius);
  transition: transform 0.1s, box-shadow 0.1s;
}
.nav-cta:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--fg); color: var(--fg); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: transform 0.2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 2px solid var(--fg);
  background: var(--bg);
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 16px var(--space-6);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.mobile-nav-link:hover { background: var(--surface); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--fg);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, #3a1a08 0%, #1A1208 60%, #0a0805 100%);
}

/* Burger illustration CSS */
.hero-burger-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
}
.burger-illustration {
  position: relative;
  width: 320px;
  height: 280px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.bun-top {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 80px;
  background: radial-gradient(ellipse at 50% 30%, #c8832a 0%, #8B5A1A 60%, #6B3F0A 100%);
  border-radius: 50% 50% 20% 20% / 60% 60% 20% 20%;
  box-shadow: inset 0 -8px 16px rgba(0,0,0,0.3);
}
.sesame {
  position: absolute;
  width: 14px; height: 7px;
  background: #f5d08a;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.s1 { top: 18px; left: 90px; transform: rotate(-20deg); }
.s2 { top: 12px; left: 140px; transform: rotate(10deg); }
.s3 { top: 22px; left: 170px; transform: rotate(-5deg); }
.lettuce {
  position: absolute;
  top: 75px; left: 20px;
  width: 280px; height: 20px;
  background: #4a7c3f;
  border-radius: 2px;
  clip-path: polygon(0% 50%, 3% 0%, 6% 50%, 9% 0%, 12% 50%, 15% 0%, 18% 50%, 21% 0%, 24% 50%, 27% 0%, 30% 50%, 33% 0%, 36% 50%, 39% 0%, 42% 50%, 45% 0%, 48% 50%, 51% 0%, 54% 50%, 57% 0%, 60% 50%, 63% 0%, 66% 50%, 69% 0%, 72% 50%, 75% 0%, 78% 50%, 81% 0%, 84% 50%, 87% 0%, 90% 50%, 93% 0%, 96% 50%, 100% 0%, 100% 100%, 0% 100%);
}
.tomato {
  position: absolute;
  top: 90px; left: 35px;
  width: 250px; height: 18px;
  background: linear-gradient(90deg, #c0392b, #e74c3c, #c0392b);
  border-radius: 3px;
  opacity: 0.9;
}
.cheese {
  position: absolute;
  top: 108px; left: 25px;
  width: 270px; height: 14px;
  background: #F2A900;
  border-radius: 2px;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 97% 100%, 94% 60%, 91% 100%, 88% 60%, 85% 100%, 82% 60%, 79% 100%, 5% 100%, 3% 60%, 0 100%);
}
.patty {
  position: absolute;
  top: 118px; left: 30px;
  width: 260px; height: 50px;
  background: radial-gradient(ellipse at 50% 40%, #6B3A2A 0%, #4a2218 50%, #2a1008 100%);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.sauce-drip {
  position: absolute;
  top: 155px; left: 80px;
  width: 8px; height: 30px;
  background: var(--primary);
  border-radius: 0 0 50% 50%;
  opacity: 0.8;
}
.bun-bottom {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 40px;
  background: radial-gradient(ellipse at 50% 70%, #c8832a 0%, #8B5A1A 60%, #6B3F0A 100%);
  border-radius: 10px 10px 30px 30px / 10px 10px 50% 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-6);
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: 6px 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-hero);
  line-height: 1.0;
  color: #fff;
  margin-bottom: var(--space-6);
  max-width: 600px;
  letter-spacing: -2px;
}
.hero-title em { color: var(--secondary); font-style: normal; }

.hero-sub {
  font-size: var(--text-base);
  color: rgba(245,240,232,0.7);
  max-width: 480px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--secondary);
  line-height: 1;
}
.stat-label {
  font-size: var(--text-xs);
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-sep {
  color: rgba(245,240,232,0.3);
  font-size: var(--text-xl);
  line-height: 1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245,240,232,0.4);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTIONS ────────────────────────────────────────────── */
.section {
  padding: var(--space-16) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}
.section-dark {
  max-width: 100%;
  background: var(--fg);
  padding: var(--space-16) var(--space-6);
}
.section-dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-accent {
  max-width: 100%;
  background: var(--primary);
  padding: var(--space-16) var(--space-6);
}
.section-kraft {
  max-width: 100%;
  background: var(--surface);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: var(--space-16) var(--space-6);
}

.section-header {
  margin-bottom: var(--space-12);
}
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: var(--space-3);
}
.section-tag.light { color: var(--secondary); }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: var(--space-3);
}
.section-title.light { color: var(--dark-fg); }
.section-sub { color: var(--muted); font-size: var(--text-base); max-width: 500px; }
.section-sub.light { color: rgba(245,240,232,0.6); }
.section-more { margin-top: var(--space-12); text-align: center; }

/* ─── GREASE EFFECT ───────────────────────────────────────── */
.grease-card {
  position: relative;
}
.grease-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(242,169,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ─── CARD FEATURED ───────────────────────────────────────── */
.card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--fg);
  box-shadow: var(--shadow-hard);
  margin-bottom: var(--space-8);
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-featured-img {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger-mini {
  font-size: 80px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.card-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--secondary);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xs);
  padding: 6px 12px;
  border: 2px solid var(--fg);
  box-shadow: 2px 2px 0 var(--fg);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
}
.card-featured-body {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.card-quartier {
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}
.card-price {
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--muted);
}
.card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: -1px;
}
.card-desc { color: var(--muted); font-size: var(--text-base); line-height: 1.6; }
.card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.stars { color: var(--secondary); font-size: var(--text-base); }
.rating-num { font-weight: 700; font-size: var(--text-base); }
.rating-count { color: var(--muted); font-size: var(--text-sm); }
.card-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.info-item { font-size: var(--text-sm); color: var(--muted); }
.card-actions {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
}

/* ─── CARDS GRID ──────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.card {
  border: 2px solid var(--fg);
  box-shadow: var(--shadow-hard);
  background: var(--bg);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--fg);
}
.card-img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-emoji { font-size: 56px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.card-badge-sm {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--secondary);
  color: var(--fg);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 10px;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-body { padding: var(--space-4); }
.card-meta-sm {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-2);
}
.quartier-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}
.price-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--muted);
}
.card-title-sm {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.card-desc-sm {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}
.card-footer-sm {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}
.stars-sm { color: var(--secondary); font-size: var(--text-sm); }
.rating-sm { font-weight: 700; font-size: var(--text-sm); }

/* ─── QUARTIERS ───────────────────────────────────────────── */
.quartiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  max-width: 1200px;
  margin: 0 auto var(--space-8);
}
.quartier-card {
  border: 2px solid rgba(245,240,232,0.2);
  padding: var(--space-6);
  cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
  position: relative;
  border-radius: var(--radius);
}
.quartier-card:hover {
  border-color: var(--secondary);
  transform: translate(-2px,-2px);
}
.quartier-card.highlight {
  border-color: var(--secondary);
  background: rgba(242,169,0,0.08);
}
.quartier-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: rgba(245,240,232,0.1);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.quartier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--dark-fg);
  margin-bottom: var(--space-1);
}
.quartier-count {
  font-size: var(--text-sm);
  color: rgba(245,240,232,0.5);
}
.quartier-arrow {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: var(--text-lg);
  color: rgba(245,240,232,0.3);
  transition: color 0.2s, transform 0.2s;
}
.quartier-card:hover .quartier-arrow { color: var(--secondary); transform: translateX(4px); }

/* ─── MAP ─────────────────────────────────────────────────── */
.map-placeholder {
  max-width: 1200px;
  margin: 0 auto;
}
.map-inner {
  position: relative;
  height: 300px;
  background: #111;
  border: 2px solid rgba(245,240,232,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: rgba(245,240,232,0.06);
  text-transform: uppercase;
  letter-spacing: 4px;
}
.map-river {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 30px;
  background: rgba(50,100,200,0.15);
  transform: translateY(-50%) rotate(-2deg);
  border-radius: 50%;
}
.map-dots { position: absolute; inset: 0; }
.map-dot {
  position: absolute;
  width: 36px; height: 36px;
  background: var(--fg);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.map-dot:hover { transform: scale(1.3); }
.map-dot.active { background: var(--primary); border-color: var(--secondary); }
.map-note {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(245,240,232,0.3);
  font-style: italic;
}

/* ─── TOP LIST ────────────────────────────────────────────── */
.top-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--fg);
  box-shadow: var(--shadow-hard);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.top-item {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.top-item:last-child { border-bottom: none; }
.top-item:hover { background: var(--surface); }
.top-item-1 { background: rgba(242,169,0,0.08); }
.top-rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--border);
  min-width: 48px;
  line-height: 1;
}
.top-item-1 .top-rank { color: var(--secondary); }
.top-info { flex: 1; }
.top-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: 2px;
}
.top-detail { font-size: var(--text-sm); color: var(--muted); }
.top-score { text-align: right; }
.score-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--fg);
}
.score-label { font-size: var(--text-sm); color: var(--muted); }
.top-item-1 .score-num { color: var(--primary); }

/* ─── FAIM DE LOUP ────────────────────────────────────────── */
.random-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-6);
}
.random-icon { font-size: 72px; margin-bottom: var(--space-4); }
.random-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
  letter-spacing: -1px;
}
.random-sub {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.random-result {
  margin-top: var(--space-8);
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.random-result-inner {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.random-result-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: #fff;
}
.random-result-detail { color: rgba(255,255,255,0.7); font-size: var(--text-base); }

/* ─── NEWSLETTER ──────────────────────────────────────────── */
.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.newsletter-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: var(--space-3);
}
.newsletter-sub { color: var(--muted); font-size: var(--text-base); line-height: 1.6; }
.newsletter-form {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  border: 2px solid var(--fg);
  background: var(--bg);
  color: var(--fg);
  box-shadow: var(--shadow-hard);
  border-radius: var(--radius);
  outline: none;
}
.newsletter-input:focus { border-color: var(--primary); box-shadow: 4px 4px 0 var(--primary); }
.newsletter-note { font-size: var(--text-sm); color: var(--muted); }
.newsletter-confirm { color: var(--primary); font-weight: 700; font-size: var(--text-base); margin-top: var(--space-3); }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--fg);
  color: var(--dark-fg);
  padding: var(--space-12) var(--space-6);
  padding-bottom: calc(var(--space-12) + 70px);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
}
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(245,240,232,0.5);
  margin-top: var(--space-2);
}
.footer-links {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.footer-links a {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(245,240,232,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--secondary); }
.footer-legal {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(245,240,232,0.35);
  flex-wrap: wrap;
}
.footer-legal a { color: rgba(245,240,232,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--secondary); }

/* ─── BOTTOM NAV MOBILE ───────────────────────────────────── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--fg);
  border-top: 2px solid rgba(245,240,232,0.15);
  height: 64px;
  padding: 0 var(--space-4);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transition: transform 0.3s;
}
.bottom-nav.hidden { transform: translateY(100%); }
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  min-height: 44px;
  transition: opacity 0.2s;
}
.bottom-nav-item::after {
  content: attr(data-label);
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bottom-nav-item.active::after { color: var(--secondary); }
.bottom-icon { font-size: 22px; line-height: 1; }
.bottom-nav-item.active .bottom-icon { filter: drop-shadow(0 0 4px var(--secondary)); }

/* ─── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg);
  border: 2px solid var(--fg);
  box-shadow: 8px 8px 0 var(--fg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-radius: var(--radius-lg);
}
.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--fg);
  color: var(--bg);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: var(--text-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.modal-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.modal-body { padding: var(--space-6); }
.modal-meta {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.modal-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  letter-spacing: -0.5px;
}
.modal-desc { color: var(--muted); margin-bottom: var(--space-4); line-height: 1.6; }
.modal-rating { margin-bottom: var(--space-4); }
.modal-infos {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.modal-infos span { font-size: var(--text-sm); color: var(--muted); }
.modal-menu {
  margin-bottom: var(--space-6);
}
.modal-menu-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.modal-menu-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--text-sm);
}
.menu-item-name { font-weight: 700; }
.menu-item-price { color: var(--primary); font-weight: 700; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .quartiers-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero-burger-visual { display: none; }
  .hero-title { font-size: clamp(40px, 10vw, 60px); }

  .card-featured { grid-template-columns: 1fr; }
  .card-featured-img { min-height: 220px; }

  .cards-grid { grid-template-columns: 1fr; }
  .quartiers-grid { grid-template-columns: 1fr 1fr; }

  .newsletter-inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .newsletter-form { flex-direction: column; }

  .top-item { padding: var(--space-3) var(--space-4); gap: var(--space-3); }
  .top-rank { font-size: var(--text-xl); min-width: 36px; }

  .section { padding: var(--space-12) var(--space-4); }
  .section-dark, .section-accent, .section-kraft { padding: var(--space-12) var(--space-4); }

  .site-footer { padding-bottom: calc(var(--space-8) + 80px); }
}

@media (max-width: 480px) {
  .quartiers-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .card-actions { flex-direction: column; }
  .footer-links { flex-direction: column; gap: var(--space-4); }
  .random-inner { padding: 0 var(--space-4); }
}
