:root {
  /* Palette Solar Dusk (tweakcn) — crème chaude, brun profond, cuivre brûlé */
  --color-primary: oklch(0.5553 0.1455 48.9975);
  --color-primary-bright: oklch(0.7049 0.1867 47.6044);
  --color-secondary: oklch(0.8276 0.0752 74.444);
  --color-accent: oklch(0.9 0.05 74.9889);
  --color-bg: oklch(0.9885 0.0057 84.5659);
  --color-card: oklch(0.9686 0.0091 78.2818);
  --color-muted: oklch(0.9363 0.0218 83.2637);
  --color-fg: oklch(0.366 0.0251 49.6085);
  --color-cream: oklch(0.9699 0.0013 106.4238);
  --color-dark: oklch(0.2161 0.0061 56.0434);
  --color-dark-elevated: oklch(0.2685 0.0063 34.2976);
  --color-border: oklch(0.8866 0.0404 89.6994);
  --shadow-warm: 28 18% 25%;
  --color-ubereats: #027A3F;
  --color-ubereats-dark: #025E30;
  --font-heading: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-pill: 9999px;
  --radius-card: 1.25rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* Frein au téléchargement (version prospection) : empêche le glisser-déposer
   natif des médias hors du navigateur. À retirer avec le watermark. */
img, video { -webkit-user-drag: none; user-select: none; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-fg);
  background: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

.kicker {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; font-style: italic; line-height: 0.95; letter-spacing: -0.02em; }
.emoji, .tag__emoji { font-style: normal; display: inline-block; }

.section-title { color: #fff; }
.section-title--dark { color: var(--color-fg); }

/* Liquid glass — agency design system */
.liquid-glass {
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass-strong {
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 4px 4px 4px rgba(0,0,0,0.05), inset 0 1px 1px rgba(255,255,255,0.15);
}
.liquid-glass-strong::before {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.5) 0%,
    rgba(255,255,255,0.2) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.2) 80%,
    rgba(255,255,255,0.5) 100%);
}

/* Buttons & badges (pill by default) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  transition: transform 200ms var(--ease-out);
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); }
.btn__logo { height: 16px; width: auto; display: block; }
.btn__logo--sm { height: 13px; }
.btn--glass-strong { background: rgba(255,255,255,0.06); }
.btn--light { background: #fff; color: var(--color-fg); }
.btn--light:hover { background: #f5e9df; }
.btn--ubereats {
  background: rgba(3, 165, 84, 0.72);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.15);
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: ubereats-btn-grow 2.2s ease-in-out infinite;
}
.btn--ubereats::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn--ubereats::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: tag-shine 3.6s ease-in-out infinite;
}
@keyframes ubereats-btn-grow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.btn--ubereats:hover {
  background: rgba(3, 165, 84, 0.9);
  box-shadow: 0 0 22px rgba(3,165,84,0.6), inset 0 1px 1px rgba(255,255,255,0.15);
}


/* Nav */
.nav {
  position: fixed;
  top: 1rem; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  color: #fff;
}
.nav__logo {
  width: 48px; height: 48px;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.nav__center {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: var(--radius-pill);
  padding: 0.4rem;
}
.nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1rem;
  white-space: nowrap;
}
/* Past the dark hero, the glass pills sit on light sections: darken them so white text stays readable */
.nav .liquid-glass { transition: background-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out); }
.nav--solid .liquid-glass {
  background: oklch(0.2161 0.0061 56.0434 / 0.88);
  box-shadow: 0 4px 24px hsl(var(--shadow-warm) / 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-ubereats);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background 150ms var(--ease-out);
}
.nav__cta:hover { background: var(--color-ubereats-dark); }
.nav__spacer { width: 48px; height: 48px; flex-shrink: 0; }
@media (max-width: 768px) {
  .nav { padding: 0 0.75rem; justify-content: center; }
  .nav__link { padding: 0.5rem 0.6rem; font-size: 0.78rem; }
  .nav__logo { display: none; }
  .nav__spacer { display: none; }
  .nav__center { min-width: 0; }
  .nav__cta-text { display: none; }
  .nav__cta { padding: 0.6rem 0.8rem; gap: 0.35rem; }
}

/* Scrub hero */
.scrub {
  position: relative;
  height: 100vh;
  background: var(--color-dark);
}
.scrub__sticky {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrubVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrub__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 22%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

.scrub__intro {
  position: absolute;
  inset: 0;
  color: #fff;
  opacity: 1;
  pointer-events: auto;
}
.hero-title-wrap {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92vw, 900px);
  text-align: center;
}
.hero-title {
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  margin: 0;
  transition: opacity 250ms var(--ease-out);
}
.hero-bottom-block {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .hero-bottom-block .btn { max-width: 100%; padding: 0.85rem 1.1rem; font-size: 0.9rem; }
}
.hero-mini-stats {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: var(--radius-pill);
  padding: 0.55rem 0.9rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
}
.hero-mini-stats__item { display: inline-flex; align-items: center; gap: 0.3rem; }
.hero-mini-stats__sep { opacity: 0.4; }
.hero-mini-stats__icon { height: 12px; width: auto; display: block; flex-shrink: 0; }
.hero-mini-stats__icon--ubereats { height: 13px; width: 13px; border-radius: 3px; }
.hero-mini-stats__star { color: #FBBF24; flex-shrink: 0; }
.hero-mini-stats__ratings { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-mini-stats__rating { display: inline-flex; align-items: center; gap: 0.3rem; opacity: 1; }
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--open {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.8);
  animation: status-dot-blink 1.4s ease-in-out infinite;
}
.status-dot--closed {
  background: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}
@keyframes status-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
/* Under 1100px the full pill collides with the centered nav: recentre it below
   the nav and, to keep it narrow, crossfade Google/Uber Eats ratings in the same
   slot instead of showing both side by side (rotated via JS, see script.js) */
@media (max-width: 1100px) {
  .hero-mini-stats {
    top: 4.4rem;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.68rem;
    padding: 0.5rem 0.8rem;
    gap: 0.4rem;
  }
  /* Les deux notes occupent la MÊME cellule (grille superposée) : la largeur se
     cale sur la plus grande des deux, donc le reste (« Fermé · Vendredi ») ne
     bouge jamais quand ça bascule. Seule la note active est visible (opacité).
     Rotation infinie via script.js */
  .hero-mini-stats__ratings { display: inline-grid; align-items: center; justify-items: start; }
  .hero-mini-stats__sep--inner { display: none; }
  .hero-mini-stats__rating {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 450ms var(--ease-out);
  }
  .hero-mini-stats__rating.is-active { opacity: 1; pointer-events: auto; }
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  z-index: 2;
  transition: color 200ms var(--ease-out);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.hero-pause-btn {
  position: absolute;
  bottom: 0.75rem;
  left: 1.5rem;
  padding: 0.5rem;
  appearance: none;
  font: inherit;
}
.hero-pause-btn svg { display: block; }
.scroll-hint svg { flex-shrink: 0; }
.scroll-hint:hover { color: #fff; }

.scrub__progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
}
.scrub__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-secondary);
}
/* Strip */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.strip__num {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.strip__item p { font-family: var(--font-body); font-weight: 300; font-size: 1.05rem; line-height: 1.6; }
@media (max-width: 768px) {
  .strip { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; }
}

/* Menu */
.menu { --font-body: 'Barlow', sans-serif; color: var(--color-fg); padding: 6rem 2rem; position: relative; overflow: hidden; background: var(--color-bg); }
.menu__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.menu__head .section-title { font-size: clamp(2.8rem, 6.5vw, 4.6rem); color: var(--color-fg); }
.menu__tagline { font-family: var(--font-body); font-weight: 400; font-size: 1.05rem; color: oklch(0.366 0.0251 49.6085 / 0.75); margin-top: 0.75rem; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.menu__grid--4 { grid-template-columns: repeat(4, 1fr); max-width: 1400px; }
@media (max-width: 1100px) {
  .menu__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.menu__card {
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 250ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.menu__card:hover { transform: none; }
.menu__card-top {
  position: absolute;
  top: 0.9rem; left: 0.9rem; right: 0.9rem;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.5rem;
}
.menu__card { position: relative; }
.menu__img-wrap { position: relative; }
.menu__icon-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  line-height: 1;
  z-index: 2;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
  pointer-events: none;
}
.tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.4rem; max-width: 75%; }
.tag {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-fg);
  white-space: nowrap;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 12px hsl(var(--shadow-warm) / 0.25);
  animation: tag-pulse 2.2s ease-in-out infinite;
}
/* Balayage lumineux périodique, comme le bouton Uber Eats */
.tag::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: tag-shine 3.6s ease-in-out infinite;
}
@keyframes tag-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes tag-shine {
  0%, 55% { left: -120%; }
  85%, 100% { left: 220%; }
}
.menu__card img { aspect-ratio: 4/3; object-fit: cover; object-position: center 68%; width: 100%; }
.menu__card-body { padding: 1.5rem; background: var(--color-card); border-top: 1px solid var(--color-border); flex: 1; text-align: center; }
.menu__card-body h3 { font-size: 1.35rem; margin-bottom: 0.4rem; color: var(--color-fg); }
.menu__price { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--color-primary); margin-bottom: 0.6rem; }
.menu__card-body p { font-family: var(--font-body); font-weight: 300; font-size: 0.92rem; color: oklch(0.366 0.0251 49.6085 / 0.7); line-height: 1.5; margin-bottom: 1rem; }
@media (max-width: 900px) {
  .menu__grid { grid-template-columns: 1fr; }
}

/* Carousel — 3D-style motion: center card sharp & scaled up, sides scaled down & blurred, one hidden behind */
.carousel { max-width: 1200px; margin: 0 auto; }
.carousel__stage {
  position: relative;
  height: 620px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.carousel__stage:active { cursor: grabbing; }
.carousel__card.menu__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  transform: translate(-50%, calc(-50% + 60px)) scale(0.5);
  opacity: 0;
  transition: transform 650ms var(--ease-elastic), filter 500ms var(--ease-out), opacity 500ms var(--ease-out);
  will-change: transform, filter, opacity;
  pointer-events: none;
}
.carousel__card.menu__card:hover { transform: unset; }
.carousel__stage.is-revealed .carousel__card[data-role="center"] { transform: translate(-50%,-50%) scale(1.08); filter: blur(0); opacity: 1; z-index: 20; pointer-events: auto; transition-delay: 0ms; }
.carousel__stage.is-revealed .carousel__card[data-role="left"] { transform: translate(calc(-50% - 270px),-50%) scale(0.72); filter: blur(3px); opacity: 0.55; z-index: 10; pointer-events: auto; cursor: pointer; transition-delay: 70ms; }
.carousel__stage.is-revealed .carousel__card[data-role="right"] { transform: translate(calc(-50% + 270px),-50%) scale(0.72); filter: blur(3px); opacity: 0.55; z-index: 10; pointer-events: auto; cursor: pointer; transition-delay: 70ms; }
.carousel__stage.is-revealed .carousel__card[data-role="back"] { transform: translate(-50%, calc(-50% + 150px)) scale(0.6); filter: blur(5px); opacity: 0.4; z-index: 5; transition-delay: 120ms; }

/* Hover repel — center card widens the gap to its neighbours; a side card leans forward to preview */
.carousel__stage.is-revealed[data-hover-role="center"] .carousel__card[data-role="center"] { transform: translate(-50%,-50%) scale(1.14); }
.carousel__stage.is-revealed[data-hover-role="center"] .carousel__card[data-role="left"] { transform: translate(calc(-50% - 300px),-50%) scale(0.68); }
.carousel__stage.is-revealed[data-hover-role="center"] .carousel__card[data-role="right"] { transform: translate(calc(-50% + 300px),-50%) scale(0.68); }

.carousel__stage.is-revealed[data-hover-role="left"] .carousel__card[data-role="left"] { transform: translate(calc(-50% - 250px),calc(-50% - 14px)) scale(0.82); filter: blur(1px); opacity: 0.85; }
.carousel__stage.is-revealed[data-hover-role="left"] .carousel__card[data-role="center"] { transform: translate(calc(-50% + 20px),-50%) scale(1.04); }
.carousel__stage.is-revealed[data-hover-role="left"] .carousel__card[data-role="right"] { transform: translate(calc(-50% + 300px),-50%) scale(0.68); }

.carousel__stage.is-revealed[data-hover-role="right"] .carousel__card[data-role="right"] { transform: translate(calc(-50% + 250px),calc(-50% - 14px)) scale(0.82); filter: blur(1px); opacity: 0.85; }
.carousel__stage.is-revealed[data-hover-role="right"] .carousel__card[data-role="center"] { transform: translate(calc(-50% - 20px),-50%) scale(1.04); }
.carousel__stage.is-revealed[data-hover-role="right"] .carousel__card[data-role="left"] { transform: translate(calc(-50% - 300px),-50%) scale(0.68); }

.carousel__nav { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel__arrow {
  width: 56px; height: 56px;
  border-radius: var(--radius-pill);
  border: 1.5px solid oklch(0.2161 0.0061 56.0434 / 0.5);
  background: transparent;
  color: var(--color-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 150ms var(--ease-out);
}
.carousel__arrow:hover { transform: scale(1.08); background: oklch(0.2161 0.0061 56.0434 / 0.08); }
@media (max-width: 700px) {
  .carousel__stage { height: 520px; }
  .carousel__card.menu__card { width: 250px; }
  .carousel__stage.is-revealed .carousel__card[data-role="left"] { transform: translate(calc(-50% - 160px),-50%) scale(0.62); }
  .carousel__stage.is-revealed .carousel__card[data-role="right"] { transform: translate(calc(-50% + 160px),-50%) scale(0.62); }
  .carousel__stage.is-revealed .carousel__card[data-role="back"] { transform: translate(-50%, calc(-50% + 100px)) scale(0.6); }
}

/* Desserts & boissons — deux carrousels côte à côte : puces verticales + cartes photos empilées */
.fcarousel-section { padding: 5rem 1.5rem; background: var(--color-bg); }
.fcarousel-section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.fcarousel-section__head .section-title { font-size: clamp(2.6rem, 5.8vw, 4rem); }

.fcarousel-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.fcarousel {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 2.5rem;
  padding: 2rem 1.5rem 1.75rem;
  overflow: hidden;
  box-shadow: 0 18px 40px -22px hsl(var(--shadow-warm) / 0.3);
}
.fcarousel__title {
  text-align: center;
  color: var(--color-fg);
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.fcarousel__body { display: flex; align-items: center; gap: 1.25rem; }
.fcarousel__chips {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 420px;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.fcarousel__chips:active { cursor: grabbing; }
.fcarousel__chips::before,
.fcarousel__chips::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3.5rem;
  z-index: 5;
  pointer-events: none;
}
.fcarousel__chips::before { top: 0; background: linear-gradient(180deg, var(--color-card) 20%, transparent); }
.fcarousel__chips::after { bottom: 0; background: linear-gradient(0deg, var(--color-card) 20%, transparent); }
.fcarousel__chip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + var(--y, 0px)));
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid oklch(0.366 0.0251 49.6085 / 0.2);
  background: transparent;
  color: oklch(0.366 0.0251 49.6085 / 0.6);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 650ms var(--ease-out), opacity 650ms var(--ease-out),
              background-color 500ms var(--ease-out), color 500ms var(--ease-out), border-color 500ms var(--ease-out);
  will-change: transform, opacity;
}
.fcarousel__chip:hover { border-color: oklch(0.366 0.0251 49.6085 / 0.45); color: var(--color-fg); }
.fcarousel__chip.is-active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.fcarousel__chip-emoji { font-size: 0.95rem; line-height: 1; }
.fcarousel__chip-label { overflow: hidden; text-overflow: ellipsis; }

.fcarousel__stage {
  position: relative;
  width: min(48%, 300px);
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.fcarousel__stage:active { cursor: grabbing; }
.fcarousel__card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: 1.6rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 44px -18px hsl(var(--shadow-warm) / 0.45);
  opacity: 0;
  transform: scale(0.7);
  z-index: 0;
  pointer-events: none;
  transition: transform 600ms var(--ease-out), opacity 600ms var(--ease-out);
  will-change: transform, opacity;
}
.fcarousel__card[data-status="active"] { opacity: 1; transform: none; z-index: 20; pointer-events: auto; }
.fcarousel__card[data-status="prev"] { opacity: 0; transform: translateX(-12%) scale(0.88) rotate(-3deg); z-index: 10; }
.fcarousel__card[data-status="next"] { opacity: 0.45; transform: translateX(10%) scale(0.9) rotate(3deg); z-index: 10; }
.fcarousel__card img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  filter: grayscale(1) blur(2px) brightness(0.85);
  transition: filter 700ms var(--ease-out);
  pointer-events: none;
}
.fcarousel__card[data-status="active"] img { filter: none; }
.fcarousel__caption {
  padding: 1rem 1.25rem 1.15rem;
  background: var(--color-muted);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.fcarousel__caption h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--color-fg);
  font-size: 1.3rem;
  line-height: 1.05;
  margin-bottom: 0.35rem;
}
.fcarousel__caption p {
  color: oklch(0.366 0.0251 49.6085 / 0.7);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .fcarousel-duo { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fcarousel__body { flex-direction: column; gap: 0.75rem; }
  .fcarousel__chips { flex: none; width: 100%; height: 230px; }
  .fcarousel__stage { width: min(100%, 300px); }
}

/* Location — un seul cadre crème, hôraires et carte séparés par une ligne interne */
.location {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 2.5rem;
  box-shadow: 0 18px 40px -22px hsl(var(--shadow-warm) / 0.3);
  overflow: hidden;
}
.location__info {
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-border);
}
.location__info .section-title { font-size: clamp(2.4rem, 4.5vw, 3.4rem); margin-bottom: 1.5rem; text-align: center; width: 100%; }
.location__info ul { list-style: none; margin-bottom: 1.75rem; font-family: var(--font-body); }
.location__info li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.98rem;
  font-weight: 300;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border);
}
.location__info li:last-child { border-bottom: none; }
.location__info li strong { font-weight: 500; }
.location__info li.is-today { color: var(--color-primary); font-weight: 500; }
.location__info li.is-today strong { font-weight: 600; }
.address { font-size: 1.02rem; font-weight: 600; }
.address a { color: inherit; text-underline-offset: 3px; }
.location__map {
  position: relative;
  min-height: 420px;
  background: var(--color-muted);
}
.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.location__map-link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  background: oklch(0.2161 0.0061 56.0434 / 0.85);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 800px) {
  .location { padding: 0 1rem 4rem; }
  .location__inner { grid-template-columns: 1fr; }
  .location__info { padding: 2.5rem 1.75rem; border-right: none; border-bottom: 1px solid var(--color-border); }
}

/* CTA — bannière sombre arrondie avec halo cuivré */
.cta {
  text-align: center;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto 5rem;
  padding: 5.5rem 2rem;
  border-radius: 3rem;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.18) 100%),
    url('../assets/cta-hero.jpg') center bottom / cover no-repeat;
  color: var(--color-cream);
  box-shadow: 0 32px 64px -32px hsl(var(--shadow-warm) / 0.5);
}
.cta .section-title { font-size: clamp(2.6rem, 5.8vw, 4.2rem); margin-bottom: 2.5rem; }
.cta .btn { margin-top: 1rem; }
.cta p { font-family: var(--font-body); font-weight: 300; margin-bottom: 2rem; opacity: 0.85; }

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: oklch(0.366 0.0251 49.6085 / 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .scrub { height: auto; }
  .scrub__sticky { position: relative; }
  .scrub__intro { opacity: 1 !important; }
  .btn, .menu__card, .carousel__card { transition: none; }
  .btn--ubereats { animation: none !important; }
  .tag, .tag::after { animation: none !important; }
}
