/* ============================================
   OG'S MIRIBEL — Direction artistique
   Noir profond + jaune vif (#FFD60A)
   Display: Bebas Neue · Script: Caveat / Permanent Marker
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --yellow: #FFD60A;
  --yellow-hot: #FFC700;
  --yellow-deep: #E5B800;
  --white: #ffffff;
  --gray: #9a9a9a;
  --gray-light: #cfcfcf;
  --gray-dark: #2a2a2a;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-script: 'Caveat', 'Permanent Marker', cursive;
  --font-marker: 'Permanent Marker', cursive;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;

  --shadow-yellow: 0 18px 50px -16px rgba(255, 214, 10, 0.45);
  --shadow-card: 0 14px 40px -18px rgba(0, 0, 0, 0.8);
}

/* ============================================
   DEMO PROTECTION (à retirer à la publication finale)
   ============================================ */

/* AUTH GATE — page d'accès */
.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity .4s ease, visibility .4s ease;
}
.auth-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.auth-card {
  max-width: 440px;
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255, 214, 10, 0.25);
  border-radius: 22px;
  padding: 44px 36px;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 30px 80px -20px rgba(255, 214, 10, 0.25);
}
.auth-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 64px;
  color: #fff;
  letter-spacing: 5px;
  margin-bottom: 8px;
  line-height: 1;
}
.auth-logo-s { color: #FFD60A; }
.auth-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  margin: 8px 0 12px;
  color: #fff;
}
.auth-card > p {
  color: #9a9a9a;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 26px;
}
.auth-card input {
  width: 100%;
  padding: 14px 18px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-bottom: 12px;
  outline: none;
  letter-spacing: 4px;
  font-family: inherit;
  transition: border-color .2s;
}
.auth-card input:focus {
  border-color: #FFD60A;
}
.auth-card input::placeholder {
  letter-spacing: 1px;
  color: #555;
}
.auth-card button {
  width: 100%;
  padding: 14px;
  background: #FFD60A;
  color: #0a0a0a;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: inherit;
  transition: transform .2s, background .2s;
  border: 0;
  cursor: pointer;
}
.auth-card button:hover {
  background: #FFC700;
  transform: translateY(-2px);
}
.auth-foot {
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
}
.auth-gate.error .auth-card {
  animation: authShake .4s ease;
  border-color: #ff3a3a;
}
.auth-gate.error input {
  border-color: #ff3a3a;
}
@keyframes authShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-10px); }
  40%, 80% { transform: translateX(10px); }
}

/* DEMO BANNER */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(90deg, #d32626 0%, #ff3a3a 50%, #d32626 100%);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.demo-banner-emoji {
  margin-right: 8px;
  font-size: 13px;
}

/* DEMO WATERMARK */
.demo-watermark {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'%3E%3Ctext x='300' y='200' font-family='Arial Black,Impact,sans-serif' font-size='38' font-weight='900' text-anchor='middle' fill='%23ffffff' fill-opacity='0.07' transform='rotate(-28 300 200)' letter-spacing='4'%3EDÉMO · NE PAS PUBLIER%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: difference;
  opacity: 0.9;
}

/* ============================================
   /DEMO PROTECTION (CSS résiduel, sans effet — éléments retirés du HTML)
   ============================================ */

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100%;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
  width: 100%;
  max-width: 100%;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); letter-spacing: 0.5px; line-height: 1.05; }

.container {
  width: 100%;
  max-width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* Sécurité globale — aucune section ne doit déborder à l'horizontale */
section, header, footer, .marquee, .photo-strip {
  max-width: 100%;
  overflow-x: clip;
}

/* ============ UTIL ============ */
.script-accent {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--yellow);
  font-style: italic;
  letter-spacing: 0;
  text-transform: lowercase;
  font-size: 0.85em;
  display: inline-block;
  transform: rotate(-3deg);
  padding: 0 4px;
}

.highlight {
  position: relative;
  display: inline-block;
  color: var(--black);
  z-index: 1;
  padding: 0 12px;
}
.highlight::before {
  content: '';
  position: absolute;
  inset: 8% -4% -4% -4%;
  background: var(--yellow);
  z-index: -1;
  transform: skew(-6deg);
  border-radius: 6px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 30px; font-size: 15px; }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--yellow-hot);
  box-shadow: 0 22px 60px -16px rgba(255, 214, 10, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-color: rgba(255, 214, 10, 0.18);
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.nav-wrapper .nav-desktop { grid-column: 1; justify-self: start; }
.nav-wrapper .logo { grid-column: 2; justify-self: center; }
.nav-wrapper .nav-cta { grid-column: 3; justify-self: end; }

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: transparent;
  transition: transform .25s ease;
}
.logo:hover .logo-img {
  transform: scale(1.06);
}
/* (anciens .logo-text gardés pour le footer) */
.logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
}
.logo-s {
  color: var(--yellow);
}
.logo-tag {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--yellow);
  font-weight: 700;
  margin-top: 2px;
}

.nav-desktop {
  display: flex;
  gap: 32px;
}
.nav-desktop a {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-light);
  position: relative;
  transition: color .2s;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width .25s;
}
.nav-desktop a:hover {
  color: var(--yellow);
}
.nav-desktop a:hover::after {
  width: 100%;
}

.nav-cta { display: inline-flex; }

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform .25s, opacity .25s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px 20px;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  font-weight: 600;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile a.btn { border: 0; margin-top: 16px; justify-content: center; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--black);
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.82) 45%, rgba(10,10,10,0.95) 100%),
    url('assets/images/hero-food.jpg');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.brush {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.brush-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--yellow), transparent 60%);
  top: -100px; right: -120px;
}
.brush-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--yellow), transparent 60%);
  bottom: -120px; left: -80px;
  opacity: 0.25;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
}
.hero-content .hero-sub { margin-left: auto; margin-right: auto; }
.hero-content .hero-cta { justify-content: center; }
.hero-content .hero-stats { justify-content: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 214, 10, 0.1);
  border: 1px solid rgba(255, 214, 10, 0.3);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.kicker .dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--yellow);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 124px);
  letter-spacing: 1px;
  line-height: 0.95;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 540px;
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat .stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}
.stat .stat-num span {
  font-size: 16px;
  color: var(--gray);
  margin-left: 4px;
}
.stat-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 2px;
  margin: 4px 0;
}
.stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.1);
}

/* HERO VISUAL — Logo officiel OG'S (toujours centré, ratio 1/1 préservé) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 460px;
  width: 100%;
}

.hero-logo {
  display: block;
  width: 420px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(255, 214, 10, 0.25)) drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}
.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: contain;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Pill localisation au début du site */
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.45);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  transition: background .2s, border-color .2s, transform .2s;
  text-decoration: none;
  max-width: 100%;
}
.hero-location:hover {
  background: rgba(255, 214, 10, 0.18);
  border-color: var(--yellow);
  transform: translateY(-1px);
}
.hero-location strong {
  font-weight: 800;
  color: var(--white);
}
.hero-location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-location-icon svg { width: 11px; height: 11px; }
.hero-location-text {
  display: inline-block;
  line-height: 1.2;
}

.scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-down span {
  width: 3px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scroll 1.6s ease-in-out infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--yellow);
  color: var(--black);
  padding: 18px 0;
  overflow: hidden;
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
}
.marquee-track span { padding-right: 40px; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS GENERAL ============ */
.section-head {
  margin-bottom: 56px;
}
.section-head.center {
  text-align: center;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255,214,10,0.3);
  border-radius: 999px;
}
.section-title {
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 620px;
  margin: 20px auto 0;
}
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============ MENU ============ */
.menu {
  padding: 120px 0;
  position: relative;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}
.menu-tab {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all .2s ease;
}
.menu-tab:hover {
  color: var(--white);
  border-color: rgba(255,214,10,0.4);
}
.menu-tab.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.menu-panel {
  display: none;
  animation: fadeUp .4s ease both;
}
.menu-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.menu-grid-sm {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.menu-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,214,10,0.4);
  background: #1f1f1f;
}
.menu-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
}
.menu-card .price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--yellow);
  letter-spacing: 1px;
  flex-shrink: 0;
}
.menu-card p {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.menu-card .tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255,214,10,0.12);
  color: var(--yellow);
  border: 1px solid rgba(255,214,10,0.25);
}
.menu-card .tag-fire {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.menu-card-feat {
  background: linear-gradient(135deg, #1f1f10 0%, #1a1a1a 100%);
  border-color: rgba(255,214,10,0.25);
}

.menu-note {
  margin-top: 30px;
  padding: 16px 22px;
  background: rgba(255,214,10,0.08);
  border: 1px dashed rgba(255,214,10,0.3);
  border-radius: var(--radius);
  color: var(--gray-light);
  text-align: center;
}
.menu-note strong { color: var(--yellow); }

/* Sous-titres dans le panel "Desserts & +" */
.menu-subhead {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--white);
  margin: 36px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,214,10,0.18);
}
.menu-subhead:first-child { margin-top: 0; }
.menu-subhead .script-accent { font-size: 0.95em; margin-right: 4px; }

/* ============ ABOUT ============ */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  color: var(--gray-light);
  font-size: 17px;
  margin: 16px 0;
}
.features {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 500;
}
.features .check {
  width: 24px;
  height: 24px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .25s ease;
}
.about-card:hover { transform: translateY(-6px); }
.about-card:nth-child(2) { transform: translateY(30px); }
.about-card:nth-child(2):hover { transform: translateY(24px); }
.about-card:nth-child(4) { transform: translateY(30px); }
.about-card:nth-child(4):hover { transform: translateY(24px); }

.about-card-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--yellow);
  letter-spacing: 1px;
  line-height: 1;
}
.about-card-num span {
  font-size: 22px;
  color: var(--gray);
}
.about-card-label {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 700;
}
.about-card-foot {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray);
}

.about-card-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
}
.about-card-yellow .about-card-num,
.about-card-yellow .about-card-label { color: var(--black); }
.about-card-yellow .about-card-num span,
.about-card-yellow .about-card-foot { color: rgba(0,0,0,0.65); }

.about-card-dark {
  background: var(--black);
  border-color: rgba(255,214,10,0.2);
}

/* ============ SERVICES ============ */
.services {
  padding: 120px 0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,214,10,0.06), transparent 60%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
  background: #1d1d1d;
}
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.service-icon svg {
  width: 28px;
  height: 28px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray-light);
  font-size: 14px;
  margin: 0;
}

/* ============ REVIEWS ============ */
.reviews {
  padding: 120px 0;
  background: var(--black-soft);
}

.big-rating {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 140px);
  color: var(--yellow);
  letter-spacing: 2px;
  line-height: 1;
}
.big-rating .rating-out {
  font-size: 0.4em;
  color: var(--gray);
}
.stars {
  display: block;
  color: var(--yellow);
  font-size: 28px;
  letter-spacing: 6px;
  margin: 10px 0 6px;
}
.rating-meta {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  margin-top: 60px;
}
.review-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,214,10,0.3);
}
.review-stars {
  color: var(--yellow);
  letter-spacing: 3px;
  font-size: 16px;
  margin-bottom: 14px;
}
.review-text {
  color: var(--gray-light);
  font-size: 15px;
  font-style: italic;
  margin: 0 0 20px;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.avatar {
  width: 42px; height: 42px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.review-name {
  font-weight: 700;
  font-size: 14px;
}
.review-meta {
  font-size: 12px;
  color: var(--gray);
}

.reviews-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============ CONTACT ============ */
.contact { padding: 120px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Version compacte (juste après le hero, plus petit, map à droite) */
.contact-compact {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  border-top: 1px solid rgba(255, 214, 10, 0.1);
}
.contact-compact .contact-inner {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.contact-compact .section-title {
  font-size: clamp(34px, 4.5vw, 56px);
}
.contact-compact .section-eyebrow {
  margin-bottom: 12px;
}
.contact-compact .info-block {
  padding: 14px 0;
  gap: 14px;
}
.contact-compact .info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.contact-compact .info-icon svg { width: 18px; height: 18px; }
.contact-compact .info-value { font-size: 15px; }
.contact-compact .contact-cta { margin-top: 20px; }
.contact-compact .contact-cta .btn { padding: 13px 22px; font-size: 13px; min-height: 44px; }
.contact-compact .contact-map {
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-left: auto;
}

.info-block {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-icon {
  width: 48px; height: 48px;
  background: rgba(255,214,10,0.1);
  color: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 4px;
  font-weight: 700;
}
.info-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.info-muted { color: var(--gray); font-size: 13px; font-weight: 400; }
.info-link:hover { color: var(--yellow); }

.contact-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-map {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,214,10,0.25);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-map:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  box-shadow: 0 30px 80px -25px rgba(255, 214, 10, 0.35);
}
.contact-map img,
.contact-map picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-map .map-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 24px 26px;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.85) 55%, rgba(10,10,10,0.96) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}
.contact-map .map-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-map .map-overlay strong {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1.05;
}
.contact-map .map-overlay span:not(.map-label):not(.map-cta) {
  font-size: 14px;
  color: var(--gray-light);
}
.contact-map .map-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 18px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
  transition: background .2s;
}
.contact-map:hover .map-cta { background: var(--yellow-hot); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand p {
  margin-top: 18px;
  color: var(--gray);
  font-size: 14px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  color: var(--yellow);
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============ PHOTO STRIPS (entre sections) ============ */
.photo-strip {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.photo-strip-1 {
  background-image: url('assets/images/strip-smash.jpg');
}
.photo-strip-2 {
  background-image: url('assets/images/strip-tacos.jpg');
}
.photo-strip-3 {
  background-image: url('assets/images/strip-bowls.jpg');
}
.photo-strip-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.2) 70%, rgba(10,10,10,0.6) 100%);
}
.photo-strip-2 .photo-strip-overlay {
  background:
    linear-gradient(90deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.25) 30%, rgba(10,10,10,0.6) 65%, rgba(10,10,10,0.92) 100%);
}
.photo-strip-3 .photo-strip-overlay {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.9) 100%);
}
.photo-strip-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.photo-strip-content.right {
  align-items: flex-end;
  text-align: right;
}
.photo-strip-content .script-accent {
  font-size: 44px;
  transform: rotate(-3deg);
  padding: 0;
}
.photo-strip-content h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 78px);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 0.95;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

/* ============ WHATSAPP BUTTON ============ */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 18px 50px -16px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 22px 60px -16px rgba(37, 211, 102, 0.7);
}
.btn-whatsapp svg {
  flex-shrink: 0;
}

/* (Anciens styles badge supprimés — remplacés par le logo image) */

/* ============================================
   MOBILE-ONLY PHOTO GALLERIES (cachées sur desktop)
   ============================================ */
.mobile-gallery {
  display: none; /* desktop : masqué */
}
.mobile-gallery-1 {
  padding: 30px 0 22px;
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}
.mobile-gallery-2 {
  padding: 22px 0 30px;
  background: var(--black);
}
.mobile-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mobile-gallery-2 .mobile-gallery-grid {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin: 0 auto;
}
.mobile-gallery-2 .mobile-gallery-item { aspect-ratio: 4 / 3; }
.mobile-gallery-item {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 10, 0.2);
  aspect-ratio: 3 / 4;
  box-shadow: 0 14px 40px -18px rgba(0, 0, 0, 0.8);
  transition: transform .25s ease, border-color .25s ease;
  text-decoration: none;
  color: var(--white);
}
.mobile-gallery-item:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.mobile-gallery-item img,
.mobile-gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-gallery-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.6);
}

/* ============================================
   RESPONSIVE — Mobile aéré, padding généreux
   ============================================ */

/* TABLETTE (~1024px) */
@media (max-width: 1024px) {
  .hero-inner, .about-inner, .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  /* Fix : la grille "contact compact" doit aussi passer en 1 colonne sur mobile/tablette */
  .contact-compact .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { height: 380px; }
  .hero-logo { width: 340px; }
  .about-card:nth-child(2),
  .about-card:nth-child(4) { transform: none; }
  .about-card:nth-child(2):hover,
  .about-card:nth-child(4):hover { transform: translateY(-6px); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* MOBILE STANDARD (~768px) */
@media (max-width: 768px) {
  /* Bandeau démo : version courte */
  .demo-banner-long { display: none; }
  .demo-banner-short { display: inline; }
  .demo-banner { font-size: 11px; letter-spacing: 1px; padding: 9px 14px; }

  /* GLOBAL — texte plus respirant */
  body { line-height: 1.65; }
  .container { padding: 0 22px; }

  /* HEADER — logo CENTRÉ sur la barre noire en haut */
  .nav-desktop, .nav-cta { display: none; }
  .nav-burger {
    display: flex;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-wrapper {
    display: flex;
    grid-template-columns: none;
    padding: 9px 22px;
    justify-content: center;
    position: relative;
    min-height: 84px;
  }
  .logo,
  .nav-wrapper .logo {
    grid-column: auto;
    margin: 0 auto;
    justify-self: center;
  }
  .logo-img {
    width: 70px;
    height: 70px;
  }
  .logo-text { font-size: 28px; letter-spacing: 1.5px; }
  .logo-tag { font-size: 9px; letter-spacing: 3px; }
  .nav-mobile { padding: 8px 22px 24px; }
  .nav-mobile a { padding: 18px 0; font-size: 15px; }
  .nav-mobile a.btn { margin-top: 22px; padding: 16px; min-height: 52px; }

  /* PHOTO GALLERIES — visibles uniquement sur mobile */
  .mobile-gallery { display: block; }

  /* HERO — beaucoup plus d'air */
  .hero { padding: 122px 0 52px; min-height: auto; }
  /* Sur mobile : on remplace l'image hero food par la photo du comptoir du resto */
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.72) 40%, rgba(10,10,10,0.95) 100%),
      url('assets/images/photo-counter.jpg');
    background-size: cover, cover;
    background-position: center, center;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
    justify-items: center;
  }
  .hero-content { width: 100%; }
  .hero-title { font-size: clamp(40px, 9vw, 56px); line-height: 1; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin: 0 auto 22px; line-height: 1.55; max-width: 440px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 26px; }
  .hero-cta .btn { justify-content: center; padding: 14px 22px; min-height: 48px; }
  /* Stats : note + prix alignés sur une ligne, les 3 services en dessous */
  .hero-stats {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    text-align: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .stat-divider { display: none; }
  .hero-stats .stat {
    flex: 1 1 0;
    min-width: 0;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 14px 8px;
  }
  .hero-stats .stat:last-child { flex-basis: 100%; }
  /* Logo centré, ratio préservé (effet "letterbox" sur fond noir) */
  .hero-visual {
    width: 100%;
    height: auto;
    min-height: 320px;
    margin: 0 auto 8px;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-logo {
    width: min(320px, 75vw);
    margin: 0 auto;
  }
  .scroll-down { display: none; }
  .kicker { padding: 7px 16px; font-size: 12px; margin-bottom: 14px; }
  /* Pill localisation plus visible sur mobile */
  .hero-location {
    font-size: 13px;
    padding: 9px 16px 9px 12px;
    margin-bottom: 14px;
    background: rgba(255, 214, 10, 0.15);
    border-color: rgba(255, 214, 10, 0.55);
  }
  .hero-location strong { font-size: 13px; }

  /* SECTIONS — padding vertical généreux */
  .menu, .about, .services, .reviews, .contact { padding: 54px 0; }
  .section-head { margin-bottom: 28px; }
  .section-title { font-size: clamp(30px, 7.5vw, 44px); }
  .section-sub { font-size: 14px; margin-top: 12px; line-height: 1.55; }
  .section-eyebrow { font-size: 11px; padding: 6px 14px; margin-bottom: 12px; }

  /* MARQUEE plus discret */
  .marquee { padding: 10px 0; }
  .marquee-track { font-size: 14px; letter-spacing: 2px; }

  /* MENU — tabs en scroll horizontal (plus de wrap moche) */
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    /* Empêche le scroll horizontal du menu de "tirer" la page entière */
    overscroll-behavior-x: contain;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 12px;
  }
  .menu-grid, .menu-grid-sm { grid-template-columns: 1fr; gap: 10px; }
  .menu-card { padding: 16px 18px; }
  .menu-card-head { gap: 14px; margin-bottom: 6px; }
  .menu-card h3 { font-size: 20px; }
  .menu-card .price { font-size: 19px; }
  .menu-card p { font-size: 13.5px; line-height: 1.45; }
  .menu-card .tag { margin-top: 10px; padding: 5px 12px; }
  .menu-note { padding: 12px 16px; font-size: 12.5px; line-height: 1.5; margin-top: 16px; }

  /* PHOTO STRIPS — adaptés mobile */
  .photo-strip { min-height: 156px; padding: 32px 0; }
  .photo-strip-content { gap: 6px; }
  .photo-strip-content .script-accent { font-size: 24px; }
  .photo-strip-content h3 { font-size: clamp(26px, 7vw, 40px); letter-spacing: 1px; }
  .photo-strip-content.right { align-items: flex-start; text-align: left; }
  .photo-strip-2 .photo-strip-overlay {
    background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.3) 100%);
  }

  /* ABOUT — texte aéré */
  .about-inner { gap: 30px; }
  .about-text p { font-size: 14.5px; line-height: 1.55; margin: 12px 0; }
  .features { margin-top: 18px; }
  .features li { padding: 9px 0; font-size: 14px; gap: 12px; }
  .about-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-card { padding: 20px 18px; border-radius: 16px; }
  .about-card-num { font-size: 36px; }
  .about-card-num span { font-size: 15px; }
  .about-card-label { font-size: 11px; margin-top: 6px; }
  .about-card-foot { font-size: 11px; margin-top: 10px; }

  /* SERVICES — 2 colonnes compactes (remplit la largeur, moins de scroll) */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 18px 14px; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 10px; }
  .service-icon svg { width: 20px; height: 20px; }
  .service-card h3 { font-size: 16px; margin-bottom: 5px; }
  .service-card p { font-size: 12.5px; line-height: 1.45; }

  /* REVIEWS — 2 colonnes compactes */
  .big-rating { font-size: clamp(46px, 13vw, 66px); }
  .stars { font-size: 18px; letter-spacing: 2px; margin: 4px 0; }
  .rating-meta { font-size: 11px; letter-spacing: 1px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
  .review-card { padding: 16px 14px; }
  .review-text { font-size: 12.5px; line-height: 1.5; margin: 0 0 12px; }
  .review-stars { font-size: 13px; margin-bottom: 8px; letter-spacing: 1px; }
  .review-author { padding-top: 12px; gap: 10px; }
  .review-name { font-size: 12.5px; }
  .review-meta { font-size: 11px; }
  .avatar { width: 34px; height: 34px; flex-shrink: 0; }
  .reviews-cta { margin-top: 20px; }

  /* CONTACT */
  .contact-inner { gap: 30px; }
  .info-block { padding: 13px 0; gap: 14px; }
  .info-icon { width: 42px; height: 42px; border-radius: 12px; }
  .info-icon svg { width: 20px; height: 20px; }
  .info-label { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 4px; }
  .info-value { font-size: 15px; line-height: 1.45; }
  .contact-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 22px; }
  .contact-cta .btn { width: 100%; justify-content: center; padding: 17px 24px; min-height: 52px; }
  /* Carte itinéraire : pleine largeur, format paysage, bien lisible sur mobile */
  .contact-compact .contact-map,
  .contact-map {
    max-width: 100%;
    margin: 0;
    aspect-ratio: 3 / 2;
  }
  .contact-map .map-overlay {
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.5) 38%, rgba(10,10,10,0.92) 100%);
  }
  .contact-map .map-label { font-size: 10px; margin-bottom: 2px; }
  .contact-map .map-overlay strong { font-size: 18px; }
  .contact-map .map-overlay span:not(.map-label):not(.map-cta) { font-size: 13px; }
  .contact-map .map-cta {
    align-self: stretch;
    width: 100%;
    margin-top: 10px;
    padding: 12px 16px;
    font-size: 13px;
  }

  /* FOOTER aéré */
  .site-footer { padding-top: 42px; }
  /* Footer en 2 colonnes : plus de vide à droite */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 22px 18px; padding-bottom: 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { font-size: 13px; line-height: 1.55; }
  .footer-col h4 { font-size: 15px; margin-bottom: 12px; }
  .footer-col a, .footer-col span { font-size: 13px; margin-bottom: 9px; line-height: 1.45; }
  .footer-bottom { padding: 24px 0; }
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  /* BUTTONS — touch targets */
  .btn { min-height: 46px; padding: 14px 24px; }
  .btn-lg { min-height: 52px; padding: 17px 28px; }
}

/* PETIT MOBILE (<480px) */
@media (max-width: 480px) {
  .container { padding: 0 18px; }

  /* HERO */
  .hero { padding: 116px 0 44px; }
  .hero-bg {
    background-size: cover, 110% auto;
    background-position: center, center 20%;
  }
  .hero-title { font-size: clamp(34px, 10.5vw, 46px); line-height: 1; }
  .hero-sub { font-size: 14px; }
  .hero-logo { width: min(260px, 70vw); margin: 0 auto; }
  .hero-visual { min-height: 260px; height: auto; padding: 8px 0; }
  .hero-location { font-size: 13px; padding: 11px 16px 11px 12px; }
  .hero-location strong { font-size: 13px; }

  /* MARQUEE plus petit */
  .marquee { padding: 13px 0; border-top-width: 3px; border-bottom-width: 3px; }
  .marquee-track { font-size: 14px; letter-spacing: 1.5px; }

  /* SECTIONS */
  .menu, .about, .services, .reviews, .contact { padding: 44px 0; }
  .section-head { margin-bottom: 24px; }

  /* MENU CARDS */
  .menu-card { padding: 15px 16px; }
  .menu-card h3 { font-size: 19px; }
  .menu-card .price { font-size: 18px; }

  /* ABOUT — 2 colonnes pour limiter le scroll */
  .about-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .about-card { padding: 18px 16px; }
  .about-card-num { font-size: 34px; }
  .about-card-label { font-size: 11px; letter-spacing: 1.5px; }

  /* CONTACT MAP — un peu plus haute pour bien voir le plan */
  .contact-compact .contact-map,
  .contact-map { aspect-ratio: 5 / 4; }

  /* PHOTO STRIPS */
  .photo-strip { min-height: 138px; padding: 28px 0; }
  .photo-strip-content .script-accent { font-size: 22px; }

  /* AUTH GATE compact */
  .auth-card { padding: 32px 24px; border-radius: 18px; }
  .auth-logo { font-size: 48px; letter-spacing: 3px; margin-bottom: 6px; }
  .auth-card h2 { font-size: 22px; }
  .auth-card > p { font-size: 13px; margin-bottom: 24px; line-height: 1.5; }
  .auth-card input { padding: 13px 16px; font-size: 15px; }
  .auth-card button { padding: 14px; font-size: 13px; }
  .auth-foot { font-size: 10px; margin-top: 24px; }
}

/* ============================================
   ACCESSIBILITÉ
   ============================================ */

/* #18 — Focus clavier visible sur tous les éléments interactifs */
a:focus-visible,
button:focus-visible,
input:focus-visible,
.menu-tab:focus-visible,
.nav-burger:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

/* #14 — Respect de "réduire les animations" (système / accessibilité) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track,
  .kicker .dot,
  .scroll-down span,
  .hero-logo { animation: none !important; }
  html { scroll-behavior: auto !important; }
}

/* #19 — Logo image dans le footer (cohérence avec le header) */
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  line-height: 0;
}
.footer-logo .logo-img {
  width: 72px;
  height: 72px;
  background: transparent;
}
