/* =============================================================
   Vintage Pizza — Cucuron, Place de l'Étang
   Design : diner américain vintage / Route 66
   Palette : cream / rouge brique / charbon / moutarde / néon turquoise
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bowlby+One&family=Caveat:wght@500;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream:        #f4ecd8;
  --cream-2:      #ede0c2;
  --paper:        #fbf6e9;
  --ink:          #1c1916;
  --ink-2:        #4a4540;
  --ink-3:        #7a736a;
  --brick:        #c8392b;
  --brick-dark:   #9a2a20;
  --mustard:      #e8b22e;
  --mustard-2:    #c8941a;
  --neon:         #18b8c4;
  --charcoal:     #2a2724;
  --rule:         rgba(28, 25, 22, 0.12);
  --shadow-sm:    0 1px 2px rgba(28, 25, 22, .08), 0 1px 3px rgba(28, 25, 22, .06);
  --shadow-md:    0 4px 12px rgba(28, 25, 22, .12), 0 2px 4px rgba(28, 25, 22, .08);
  --shadow-lg:    0 18px 40px -10px rgba(28, 25, 22, .25), 0 6px 18px rgba(28, 25, 22, .12);
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --container:    1180px;
  --display:      'Bowlby One', system-ui, sans-serif;
  --headline:     'Bebas Neue', Impact, sans-serif;
  --hand:         'Caveat', cursive;
  --body:         'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(232, 178, 46, .08), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(200, 57, 43, .08), transparent 40%);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* === Conteneur === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* === Header — bandeau diner avec bordure rouge === */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 4px solid var(--brick);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__brand-mark {
  width: 46px; height: 46px;
  background: var(--brick);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 22px;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.header__brand-text {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .5px;
  color: var(--ink);
  line-height: 1;
}
.header__brand-sub {
  display: block;
  font-family: var(--hand);
  font-size: 16px;
  color: var(--brick);
  font-weight: 700;
  margin-top: 2px;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav__link {
  font-family: var(--headline);
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color .15s ease;
}
.nav__link:hover { color: var(--brick); }
.nav__link--active { color: var(--brick); }
.nav__link--active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--mustard);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
}
.hamburger__line { width: 26px; height: 3px; background: var(--ink); transition: .25s; }
.hamburger.active .hamburger__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(28,25,22,.5); opacity: 0; pointer-events: none;
  transition: opacity .25s; z-index: 40;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* === Hero — grande photo du camion === */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,25,22,.0) 30%, rgba(28,25,22,.85) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px 80px;
  color: var(--cream);
}
.hero__badge {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--headline);
  font-size: 16px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--brick);
  transform: rotate(-2deg);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: .95;
  letter-spacing: -1px;
  text-shadow: 4px 4px 0 var(--brick), 8px 8px 0 rgba(0,0,0,.3);
  margin-bottom: 18px;
  max-width: 16ch;
}
.hero__title em { font-style: normal; color: var(--mustard); }
.hero__lede {
  font-size: 18px;
  max-width: 56ch;
  margin-bottom: 32px;
  color: var(--cream-2);
  line-height: 1.55;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__meta {
  margin-top: 24px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}

/* === Boutons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--headline);
  font-size: 18px;
  letter-spacing: 1.5px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--brick);
  color: var(--cream);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn--primary:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn--primary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn--mustard {
  background: var(--mustard);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn--mustard:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn--lg { padding: 18px 32px; font-size: 22px; }

/* === Status badge (Ouvert/Fermé) === */
.status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.status__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--mustard);
}
.status--open .status__dot { background: #4ade80; box-shadow: 0 0 0 4px rgba(74, 222, 128, .25); animation: pulse 2.5s infinite; }
.status--closed .status__dot { background: #f87171; }
.status--vacation .status__dot { background: var(--mustard); }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, .25); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}
.hero__meta-sep { opacity: .4; }

/* === Rating / avis === */
.rating { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.rating__stars { color: var(--mustard); letter-spacing: 2px; font-size: 16px; }
.rating__score { font-weight: 700; font-size: 16px; }

/* === Sections === */
.section { padding: 88px 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--tight { padding: 48px 0; }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--headline);
  letter-spacing: 3px;
  font-size: 14px;
  color: var(--brick);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--mustard);
  border: 2px solid var(--ink);
  transform: rotate(-1deg);
}
.section--dark .eyebrow { color: var(--ink); }
.section__title {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.5px;
  max-width: 18ch;
}
.section__lede {
  max-width: 42ch;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.6;
}
.section--dark .section__lede { color: var(--cream-2); }

/* === Bandeau "PIZZA DU MOMENT" — spotlight === */
.spotlight {
  background: var(--brick);
  color: var(--cream);
  padding: 48px 0;
  position: relative;
  border-top: 6px dashed var(--mustard);
  border-bottom: 6px dashed var(--mustard);
  overflow: hidden;
}
.spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.spotlight__fig {
  border: 8px solid var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-2deg);
  overflow: hidden;
  border-radius: 4px;
}
.spotlight__fig img { width: 100%; height: 360px; object-fit: cover; display: block; }
.spotlight__kicker {
  font-family: var(--hand);
  font-size: 32px;
  color: var(--mustard);
  margin-bottom: 8px;
}
.spotlight__title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -1px;
  text-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 16px;
}
.spotlight__price {
  display: inline-block;
  font-family: var(--display);
  background: var(--mustard);
  color: var(--ink);
  font-size: 36px;
  padding: 8px 20px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 18px;
}
.spotlight__desc { font-size: 18px; line-height: 1.6; max-width: 38ch; }

/* === Adresse / horaires === */
.addresses { display: grid; gap: 32px; }
.addr {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 8px 8px 0 var(--brick);
  position: relative;
}
.addr__name {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.addr__services { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.service-badge {
  display: inline-block;
  font-family: var(--headline);
  letter-spacing: 1.5px;
  font-size: 13px;
  background: var(--ink);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 4px;
}
.addr__street { color: var(--ink-2); margin-bottom: 12px; }
.addr__phone {
  display: inline-block;
  font-family: var(--display);
  font-size: 28px;
  color: var(--brick);
  margin-bottom: 18px;
  border-bottom: 3px dashed var(--mustard);
  padding-bottom: 4px;
  transition: color .15s;
}
.addr__phone:hover { color: var(--ink); }
.hours {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 16px;
  font-size: 15px;
  border-top: 2px dashed var(--rule);
  padding-top: 18px;
}
.hours__day { font-family: var(--headline); letter-spacing: 1px; color: var(--ink-2); }
.hours__value { color: var(--ink); }
.hours__value--closed { color: var(--ink-3); font-style: italic; }
.hours__row--today, .hours__day.hours__row--today, .hours__value.hours__row--today {
  color: var(--brick); font-weight: 700;
}
.addr__closure {
  background: var(--mustard);
  border: 2px solid var(--ink);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 14px;
}
.addr__closure-title { display: block; font-family: var(--headline); letter-spacing: 1.5px; font-size: 14px; }
.addr__closure-dates { display: block; font-weight: 600; margin-top: 2px; }
.addr__closure--active { background: var(--brick); color: var(--cream); border-color: var(--ink); }
.addr__closure-msg { margin-top: 6px; font-size: 13px; }

/* === Galerie === */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--half { grid-column: span 3; aspect-ratio: 16/10; }
.gallery__item--third { grid-column: span 2; aspect-ratio: 4/3; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }

/* === Avis === */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  box-shadow: 6px 6px 0 var(--mustard);
}
.review:nth-child(2) { box-shadow: 6px 6px 0 var(--brick); transform: rotate(.5deg); }
.review:nth-child(3) { box-shadow: 6px 6px 0 var(--neon); transform: rotate(-.5deg); }
.review__stars { color: var(--mustard); font-size: 20px; letter-spacing: 2px; margin-bottom: 12px; }
.review__text { font-family: var(--hand); font-size: 22px; line-height: 1.4; margin-bottom: 16px; color: var(--ink); }
.review__author { font-family: var(--headline); letter-spacing: 1.5px; color: var(--ink-2); font-size: 14px; }

/* === News === */
.news {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news__item {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--brick);
}
.news__figure { aspect-ratio: 16/10; overflow: hidden; }
.news__figure img { width: 100%; height: 100%; object-fit: cover; }
.news__body { padding: 20px; }
.news__title { font-family: var(--display); font-size: 24px; margin-bottom: 8px; }
.news__text { color: var(--ink-2); }
.news__item--media-only .news__body { display: none; }
.news__item--text-only .news__figure { display: none; }

/* === Footer === */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 24px;
  border-top: 6px solid var(--brick);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand-mark {
  width: 56px; height: 56px;
  background: var(--brick);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 28px;
  border: 3px solid var(--cream);
  margin-bottom: 14px;
}
.footer__brand p { color: var(--cream-2); max-width: 36ch; line-height: 1.6; }
.footer__title {
  font-family: var(--headline);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--mustard);
  margin-bottom: 14px;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__link, .footer__phone { color: var(--cream-2); transition: color .15s; }
.footer__link:hover, .footer__phone:hover { color: var(--mustard); }
.footer__phone { font-family: var(--display); font-size: 22px; color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--ink-3);
  font-size: 13px;
}

/* === Phone sheet (popover) === */
.phone-backdrop {
  position: fixed; inset: 0; background: rgba(28,25,22,.7);
  z-index: 100; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.phone-backdrop[aria-hidden="false"] { opacity: 1; pointer-events: all; }
.phone-sheet {
  position: fixed;
  top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.95);
  width: 92%; max-width: 480px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  z-index: 101;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 12px 12px 0 var(--brick);
  padding: 28px;
}
.phone-sheet[aria-hidden="false"] {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.phone-sheet__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
}
.phone-sheet__title { font-family: var(--display); font-size: 28px; margin-top: 4px; }
.phone-sheet__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-size: 22px; line-height: 1;
}
.phone-sheet__list { display: flex; flex-direction: column; gap: 12px; }
.phone-sheet__item {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
}
.phone-sheet__loc { font-weight: 700; font-family: var(--headline); letter-spacing: 1px; font-size: 16px; }
.phone-sheet__addr { color: var(--ink-2); font-size: 13px; margin-top: 2px; }
.phone-sheet__number {
  font-family: var(--display); font-size: 22px; color: var(--brick);
  white-space: nowrap;
}
.eyebrow--plain { background: transparent; border: none; padding: 0; transform: none; }

/* === Story (Notre Histoire) === */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story--reverse { direction: rtl; }
.story--reverse > * { direction: ltr; }
.story__fig {
  border: 6px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--brick);
}
.story__fig img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.story__body h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  margin: 12px 0 18px;
  letter-spacing: -.5px;
}
.story__body p { color: var(--ink-2); margin-bottom: 14px; line-height: 1.7; }
.story__tag {
  display: inline-block;
  margin-top: 12px;
  background: var(--mustard);
  border: 2px solid var(--ink);
  padding: 6px 14px;
  font-family: var(--headline);
  letter-spacing: 1.5px;
  font-size: 14px;
}

/* === Principes === */
.principles { display: grid; gap: 32px; margin-top: 32px; }
.principle {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
}
.principle__num {
  font-family: var(--display);
  font-size: 56px;
  color: var(--brick);
  line-height: 1;
}
.principle__title {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 6px;
}
.principle__text { color: var(--ink-2); line-height: 1.6; }

/* === Menu (page carte) === */
.menu-notice {
  background: var(--paper);
  border-left: 6px solid var(--brick);
  padding: 18px 24px;
  margin-bottom: 32px;
  border-radius: 4px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}

.menu-category, .traiteur-group { margin-bottom: 56px; }
.menu-category__head, .traiteur-group__head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 4px double var(--ink);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.menu-category__name, .traiteur-group__name {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.5px;
}
.menu-category__index, .traiteur-group__count {
  font-family: var(--headline);
  letter-spacing: 2px;
  color: var(--ink-3);
  font-size: 14px;
}

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 800px) { .menu-list { grid-template-columns: 1fr; } }

.menu-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  padding: 18px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  align-items: center;
  transition: transform .15s, box-shadow .15s;
  position: relative;
}
.menu-item:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--brick); }
.menu-item--clickable { cursor: pointer; }
.menu-item__img {
  width: 96px; height: 96px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
}
.menu-item__img--ph {
  display: grid; place-items: center;
  background: var(--mustard);
  color: var(--ink);
}
.menu-item__img--ph svg { width: 48px; height: 48px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.menu-item__body {}
.menu-item__name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -.3px;
  margin-bottom: 4px;
}
.menu-item__desc { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin-bottom: 6px; }
.menu-item__more {
  font-family: var(--headline);
  letter-spacing: 1.5px;
  font-size: 12px;
  color: var(--brick);
  background: none;
  padding: 0;
  cursor: pointer;
}
.menu-item__price {
  font-family: var(--display);
  font-size: 22px;
  color: var(--brick);
  background: var(--mustard);
  padding: 6px 12px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  white-space: nowrap;
}
.menu-item__add {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: var(--brick); color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px; line-height: 1;
  border: 2px solid var(--ink);
  opacity: 0;
  transition: opacity .15s;
}
.menu-item--clickable:hover .menu-item__add { opacity: 1; }
.menu-badge {
  display: inline-block;
  font-family: var(--headline);
  letter-spacing: 1px;
  font-size: 11px;
  background: var(--brick);
  color: var(--cream);
  padding: 2px 6px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 4px;
}
.menu-badge--star { background: var(--mustard); color: var(--ink); }

/* Traiteur group (compat — au cas où) */
.traiteur-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .traiteur-grid { grid-template-columns: repeat(2, 1fr); } }
.traiteur-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.traiteur-item__fig { aspect-ratio: 4/3; overflow: hidden; background: var(--mustard); display: grid; place-items: center; }
.traiteur-item__fig img { width: 100%; height: 100%; object-fit: cover; }
.traiteur-item__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 12px 14px 6px; }
.traiteur-item__name { font-family: var(--display); font-size: 18px; }
.traiteur-item__price { font-family: var(--display); color: var(--brick); }
.traiteur-item__desc { padding: 0 14px 14px; color: var(--ink-2); font-size: 13px; }

/* === Cart FAB === */
.cart-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  background: var(--brick);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 90;
  transition: transform .15s;
}
.cart-fab:hover { transform: scale(1.05); }
.cart-fab--bounce { animation: cartBounce .35s; }
@keyframes cartBounce { 0%,100%{transform:scale(1);} 50%{transform:scale(1.15);} }
.cart-fab__badge {
  position: absolute; top: -6px; right: -6px;
  min-width: 24px; height: 24px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--display); font-size: 12px;
  border-radius: 999px;
  display: grid; place-items: center;
  border: 2px solid var(--ink);
}

/* === Cart drawer === */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(28,25,22,.5);
  z-index: 100; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.cart-overlay--visible { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 92%; max-width: 460px;
  background: var(--paper);
  border-left: 4px solid var(--ink);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.cart-drawer--open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  background: var(--brick);
  color: var(--cream);
  border-bottom: 4px solid var(--ink);
}
.cart-drawer__header h2 { font-family: var(--display); font-size: 26px; }
.cart-drawer__close {
  width: 36px; height: 36px;
  background: var(--cream); color: var(--ink);
  border-radius: 50%; font-size: 22px; line-height: 1;
}
.cart-step { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--ink-3); padding: 32px 0; }
.cart-item-row {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
}
.cart-item-row__info { display: flex; justify-content: space-between; gap: 8px; }
.cart-item-row__name { font-family: var(--headline); letter-spacing: 1px; font-size: 16px; }
.cart-item-row__line-total { font-family: var(--display); color: var(--brick); }
.cart-item-row__controls { display: flex; align-items: center; gap: 12px; }
.cart-qty-btn {
  width: 32px; height: 32px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cream);
}
.cart-qty-val { font-family: var(--display); font-size: 18px; min-width: 24px; text-align: center; }
.cart-drawer__footer {
  padding: 16px 24px 24px;
  border-top: 4px solid var(--ink);
  background: var(--cream-2);
}
.cart-sticky-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
}
.cart-sticky-total__label { font-family: var(--headline); letter-spacing: 2px; font-size: 14px; color: var(--ink-2); }
.cart-sticky-total__price { font-family: var(--display); font-size: 28px; color: var(--brick); }
.cart-next-btn, .cart-back-btn {
  display: block; width: 100%;
  padding: 14px;
  background: var(--brick); color: var(--cream);
  font-family: var(--headline); letter-spacing: 2px; font-size: 18px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
}
.cart-back-btn { background: var(--cream); color: var(--ink); margin-bottom: 16px; }
.cart-section-title {
  font-family: var(--headline);
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 18px;
  margin-bottom: 8px;
}
.cart-input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--body);
  font-size: 15px;
  margin-bottom: 8px;
}
.cart-input:focus { outline: 2px solid var(--brick); outline-offset: 1px; }
.cart-radio-group { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.cart-radio {
  flex: 1;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
}
.cart-location-choice { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.cart-location-option {
  display: flex; align-items: center; gap: 10px;
  padding: 14px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.cart-location-option__info strong { display: block; font-family: var(--headline); letter-spacing: 1px; font-size: 14px; }
.cart-location-option__info span { font-size: 12px; color: var(--ink-3); }
.cart-order-recap {
  background: var(--mustard);
  border: 2px solid var(--ink);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 14px;
}
.order-warning {
  background: var(--brick);
  color: var(--cream);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}
.cart-drawer__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cart-send-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  font-family: var(--headline); letter-spacing: 1.5px; font-size: 14px;
}
.cart-send-btn svg { width: 18px; height: 18px; }
.cart-send-btn--whatsapp { background: #25d366; color: white; }
.cart-send-btn--sms { background: var(--neon); color: var(--ink); }
.cart-send-btn--call { background: var(--brick); color: var(--cream); }
.cart-send-btn--copy { background: var(--cream); color: var(--ink); grid-column: span 2; }

/* === Item sheet === */
.item-sheet-backdrop {
  position: fixed; inset: 0; background: rgba(28,25,22,.7);
  z-index: 100; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.item-sheet-backdrop[aria-hidden="false"] { opacity: 1; pointer-events: all; }
.item-sheet {
  position: fixed;
  top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.95);
  width: 92%; max-width: 520px; max-height: 88vh;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  z-index: 101;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 12px 12px 0 var(--brick);
  display: flex; flex-direction: column;
}
.item-sheet[aria-hidden="false"] {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.item-sheet__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  font-size: 22px; line-height: 1;
  z-index: 2;
}
.item-sheet__scroll { overflow-y: auto; flex: 1; }
.item-sheet__media { aspect-ratio: 16/10; background: var(--mustard); overflow: hidden; }
.item-sheet__media img { width: 100%; height: 100%; object-fit: cover; }
.item-sheet__media--ph { display: grid; place-items: center; }
.item-sheet__media--ph svg { width: 120px; height: 120px; fill: none; stroke: var(--ink); stroke-width: 1.5; }
.item-sheet__body { padding: 24px; }
.item-sheet__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 12px; }
.item-sheet__name { font-family: var(--display); font-size: 28px; line-height: 1.1; }
.item-sheet__price { font-family: var(--display); font-size: 24px; color: var(--brick); white-space: nowrap; }
.item-sheet__desc { color: var(--ink-2); line-height: 1.6; margin-bottom: 8px; }
.item-sheet__note { font-family: var(--hand); font-size: 18px; color: var(--brick); }
.item-sheet__footer {
  padding: 16px 24px;
  border-top: 3px solid var(--ink);
  background: var(--cream-2);
}
.item-sheet__add {
  display: block; width: 100%;
  padding: 14px;
  background: var(--brick); color: var(--cream);
  font-family: var(--headline); letter-spacing: 2px; font-size: 18px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
}

/* === Reveal animations === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.entrance { animation: fadeIn .8s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* === Responsive === */
@media (max-width: 880px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 80%; max-width: 320px;
    background: var(--paper);
    z-index: 50;
    padding: 80px 32px 32px;
    border-left: 4px solid var(--brick);
    align-items: flex-start; gap: 20px;
  }
  .nav__link { font-size: 24px; }
  .hamburger { display: flex; z-index: 60; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .spotlight__inner { grid-template-columns: 1fr; gap: 32px; }
  .spotlight__fig img { height: 280px; }
  .story, .story--reverse { grid-template-columns: 1fr; direction: ltr; }
  .reviews { grid-template-columns: 1fr; }
  .news { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--half, .gallery__item--third, .gallery__item--tall {
    grid-column: span 1; grid-row: auto; aspect-ratio: 4/3;
  }
  .menu-list { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 72px 1fr auto; gap: 12px; padding: 12px; }
  .menu-item__img { width: 72px; height: 72px; }
  .menu-item__name { font-size: 18px; }
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 32px; }
  .addr { padding: 24px; box-shadow: 5px 5px 0 var(--brick); }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: 1fr; }
}
