/* ============================
   LE GALOYA — design system v2
   Style: app landing moderne, rounded, card-based
   Palette: #231F20 noir / #5B6352 sauge / #9E6A29 bronze / #FFFFFF blanc
   Typo: Poppins (uniformément)
   ============================ */

:root {
  --ink: #231f20;
  --ink-soft: #4a4546;
  --sage: #5b6352;
  --sage-soft: rgba(91, 99, 82, 0.10);
  --sage-tint: #edeee9;
  --sage-tint-2: #e2e5dc;
  --bronze: #9e6a29;
  --bronze-light: #c69056;
  --bronze-soft: rgba(158, 106, 41, 0.12);
  --paper: #ffffff;
  --paper-warm: #fbfaf6;
  --line: rgba(35, 31, 32, 0.08);
  --line-strong: rgba(35, 31, 32, 0.18);
  --shadow-sm: 0 6px 18px rgba(35, 31, 32, 0.06);
  --shadow-md: 0 14px 40px rgba(35, 31, 32, 0.10);
  --shadow-lg: 0 28px 80px rgba(35, 31, 32, 0.14);
  --ease: cubic-bezier(0.7, 0, 0.3, 1);
  --sans: "Poppins", system-ui, -apple-system, sans-serif;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

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

/* ===== Cursor & transitions ===== */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--bronze);
  background: transparent;
  mix-blend-mode: difference;
  transition: width 0.35s var(--ease), height 0.35s var(--ease),
              background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.cursor-dot { width: 4px; height: 4px; background: var(--bronze); }
.cursor.is-active {
  width: 64px; height: 64px;
  background: var(--bronze-soft);
  border-color: var(--bronze);
}
.cursor.is-view {
  width: 100px; height: 100px;
  background: var(--bronze);
  mix-blend-mode: normal;
  opacity: 0.92;
}
.cursor.is-view::before {
  content: "Voir";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper); font-weight: 500;
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

.page-transition {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--paper);
  display: none;
  align-items: center; justify-content: center;
  z-index: 9000;
  transform: translateY(-100%);
}
.page-transition span {
  font-weight: 700;
  font-size: clamp(48px, 7vw, 110px);
  color: var(--bronze);
  letter-spacing: -0.04em;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 6vw, 96px); line-height: 1.02; }
h2 { font-size: clamp(36px, 4.5vw, 72px); line-height: 1.04; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.2; }
h4 { font-size: 16px; }

h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--bronze);
}

p { margin: 0; }
.lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; color: var(--ink-soft); }

.eyebrow {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--bronze);
  display: inline-block;
}

.split-line { display: block; overflow: hidden; }
.split-inner { display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--bronze);
  color: var(--paper);
  box-shadow: 0 8px 24px rgba(158, 106, 41, 0.32);
}
.btn--primary:hover {
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(35, 31, 32, 0.28);
}
.btn--ink {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 24px rgba(35, 31, 32, 0.18);
}
.btn--ink:hover { background: var(--bronze); }
.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--whatsapp {
  background: #25d366;
  color: var(--paper);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}
.btn--whatsapp:hover { background: #1ebe5b; }

.btn svg {
  width: 16px; height: 16px;
  flex: 0 0 auto;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: var(--max);
  transition: top 0.4s var(--ease);
}
.nav__inner {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-sm);
}
.nav.is-stuck .nav__inner {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.nav__logo img { height: 30px; width: auto; }
.nav__menu {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.nav__menu a {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink);
  position: relative;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__menu a:hover { background: var(--sage-soft); }
.nav__menu a.is-active {
  background: var(--ink);
  color: var(--paper);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-strong);
  transition: background 0.3s var(--ease);
}
.nav__cart:hover { background: var(--sage-soft); }
.nav__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 7px;
  border-radius: 20px;
  background: var(--line);
  font-size: 11px;
  font-weight: 600;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cart-count.has-items { background: var(--bronze); color: var(--paper); }
.nav__cta {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s var(--ease);
}
.nav__cta:hover { background: var(--bronze); }

.nav__burger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), top 0.4s var(--ease);
}
.nav__burger span:nth-child(1) { top: 10px; }
.nav__burger span:nth-child(2) { top: 16px; }
.nav__burger span:nth-child(3) { top: 22px; }
.nav__burger.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

.nav__sheet {
  position: fixed;
  inset: 0;
  background: var(--paper);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 var(--gutter);
  gap: 16px;
  z-index: 99;
}
.nav__sheet.is-open { display: flex; }
.nav__sheet a {
  font-weight: 700;
  font-size: clamp(34px, 7vw, 64px);
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* ===== Hero (style référence) ===== */
.hero {
  padding: 120px var(--gutter) 0;
  background: var(--paper);
  position: relative;
}
.hero__panel {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--sage-tint);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero__content { max-width: 580px; }
.hero__title {
  font-size: clamp(46px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 24px 0 24px;
}
.hero__title em {
  color: var(--bronze);
  font-style: normal;
}
.hero__sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Floating search/order card under hero */
.hero__card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: -50px auto 0;
  max-width: 920px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items: center;
}
.hero__card-cell {
  padding: 10px 16px;
  border-right: 1px solid var(--line);
}
.hero__card-cell:last-of-type { border-right: 0; }
.hero__card-cell label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 6px;
}
.hero__card-cell .value {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.hero__card-cell .meta {
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Hero stats line */
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}
.hero__stat .num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__stat .lab {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

/* ===== Sections shared ===== */
.section {
  padding: clamp(80px, 10vw, 160px) var(--gutter);
}
.section--tint { background: var(--sage-tint); }
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section__head {
  max-width: 760px;
  margin: 0 0 60px;
}
.section__head h2 {
  margin-top: 18px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__head--center .eyebrow { justify-content: center; }

/* Page header for inner pages */
.page-header {
  padding: 160px var(--gutter) 80px;
  max-width: var(--max);
  margin: 0 auto;
}
.page-header h1 {
  font-size: clamp(56px, 8vw, 140px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 24px 0 32px;
  max-width: 1100px;
}
.page-header h1 em { color: var(--bronze); font-style: normal; }

/* ===== Feature cards (3 colonnes) ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.feature-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.feature-card:hover .feature-card__media img { transform: scale(1.06); }
.feature-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feature-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.feature-card__desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.feature-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
}
.feature-card__price {
  font-weight: 700;
  font-size: 18px;
  color: var(--bronze);
}
.feature-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: background 0.3s var(--ease);
}
.feature-card__cta:hover { background: var(--bronze); }

/* ===== Service icons row ===== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.service {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service__icon {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--bronze-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
}
.service__icon svg { width: 22px; height: 22px; }
.service__title { font-weight: 600; font-size: 16px; color: var(--ink); }
.service__desc { color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

/* ===== Maison split ===== */
.maison-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.maison-split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.maison-split__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.maison-split__media--right { order: 2; }
.maison-split__text {
  max-width: 540px;
}
.maison-split__text h2 { margin-top: 18px; margin-bottom: 28px; }
.maison-split__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

/* ===== Carte (menu) ===== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
  justify-content: center;
}
.menu-tab {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.menu-tab:hover { border-color: var(--bronze); color: var(--bronze); }
.menu-tab.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.menu-section {
  margin-bottom: 60px;
}
.menu-section__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.menu-section__title small {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.menu-item {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-item:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.menu-item__name { font-weight: 600; font-size: 16px; color: var(--ink); }
.menu-item__price {
  font-weight: 700;
  font-size: 17px;
  color: var(--bronze);
  font-feature-settings: "tnum";
}
.menu-item__add {
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  line-height: 1;
}
.menu-item__add:hover { background: var(--bronze); transform: scale(1.08); }

.menu-sides {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.menu-sides h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--bronze);
}
.menu-sides p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}
.menu-sides .supp {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}

/* ===== Brunch banner ===== */
.brunch-banner {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin: 0 var(--gutter);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.brunch-banner__media { min-height: 480px; overflow: hidden; }
.brunch-banner__media img { width: 100%; height: 100%; object-fit: cover; }
.brunch-banner__text {
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.brunch-banner__text .eyebrow { color: var(--bronze-light); }
.brunch-banner__text .eyebrow::before { background: var(--bronze-light); }
.brunch-banner__text h2 { color: var(--paper); margin: 0; }
.brunch-banner__text h2 em { color: var(--bronze-light); }
.brunch-banner__text p { color: rgba(255, 255, 255, 0.78); font-size: 17px; line-height: 1.65; max-width: 460px; }
.brunch-banner__price {
  font-size: 32px;
  font-weight: 700;
  color: var(--bronze-light);
  letter-spacing: -0.02em;
}

/* ===== Galerie ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.g {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.g:hover img { transform: scale(1.06); }
.g--1 { grid-column: span 5; grid-row: span 2; aspect-ratio: auto; height: 540px; }
.g--2 { grid-column: span 4; height: 260px; }
.g--3 { grid-column: span 3; height: 260px; }
.g--4 { grid-column: span 3; height: 260px; }
.g--5 { grid-column: span 4; height: 260px; }
.g--6 { grid-column: span 5; height: 320px; }
.g--7 { grid-column: span 4; height: 320px; }
.g--8 { grid-column: span 3; height: 320px; }

/* ===== Reserver form ===== */
.reserver {
  background: var(--sage-tint);
  border-radius: var(--radius-xl);
  margin: 0 var(--gutter);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.reserver__info h2 { margin: 18px 0 30px; }
.reserver__lines { list-style: none; margin: 0; padding: 0; }
.reserver__lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line-strong);
  font-size: 16px;
}
.reserver__lines li:last-child { border-bottom: 1px solid var(--line-strong); }
.reserver__lines span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}
.reserver__lines a:hover { color: var(--bronze); }

.form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  gap: 8px;
}
.form input, .form select, .form textarea {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  padding: 12px 16px;
  background: var(--sage-tint);
  border: 1.5px solid transparent;
  border-radius: 14px;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--paper);
}
.form textarea { resize: vertical; }
.form__full { grid-column: 1 / -1; }
.form__done {
  margin: 0;
  padding: 16px;
  background: #25d366;
  color: var(--paper);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
}

/* ===== Trouver / map ===== */
.trouver {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: stretch;
}
address { font-style: normal; font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 32px; }
.trouver__hours {
  display: grid;
  gap: 0;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}
.trouver__hours > div {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.trouver__hours > div:last-child { border-bottom: 0; }
.trouver__hours dt {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze); font-weight: 600;
}
.trouver__hours dd { margin: 0; font-weight: 600; color: var(--ink); }
.trouver__map {
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.trouver__map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Commander (cart) ===== */
.cart-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}
.cart-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cart-line {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.cart-line__name { font-weight: 600; font-size: 17px; color: var(--ink); }
.cart-line__qty {
  display: inline-flex;
  align-items: center;
  background: var(--sage-tint);
  border-radius: 999px;
  padding: 4px;
}
.cart-line__qty button {
  width: 32px; height: 32px;
  font-size: 16px;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.3s var(--ease);
}
.cart-line__qty button:hover { background: var(--paper); }
.cart-line__qty span {
  width: 36px;
  text-align: center;
  font-weight: 600;
  font-feature-settings: "tnum";
}
.cart-line__price { font-weight: 700; font-size: 17px; color: var(--bronze); font-feature-settings: "tnum"; }
.cart-line__del {
  width: 32px; height: 32px;
  border-radius: 999px;
  color: var(--ink);
  opacity: 0.4;
  font-size: 18px;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.cart-line__del:hover { opacity: 1; background: var(--sage-tint); }
.cart-empty {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cart-summary {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 110px;
  align-self: start;
}
.cart-summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.cart-summary__total .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}
.cart-summary__total .value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cart-summary__total .value span { color: var(--bronze); font-size: 14px; margin-left: 4px; font-weight: 600; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 9500;
  box-shadow: var(--shadow-lg);
}
.toast.is-in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Marquee ===== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  margin: 60px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 50px;
  will-change: transform;
}
.marquee__track span {
  font-weight: 600;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -0.01em;
}
.marquee__track i {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bronze);
  margin: 0 20px;
  vertical-align: middle;
}

/* ===== Footer ===== */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 100px var(--gutter) 32px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 80px;
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.foot__brand img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.foot__brand p { margin: 0 0 8px; font-size: 15px; opacity: 0.78; }
.foot__brand .foot__motto {
  font-weight: 500;
  font-size: 17px;
  opacity: 0.65;
  max-width: 320px;
  margin-top: 8px;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.foot__cols h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze-light); font-weight: 600; margin-bottom: 16px;
}
.foot__cols p { margin: 0; font-size: 14px; line-height: 1.85; opacity: 0.82; }
.foot__cols a:hover { color: var(--bronze-light); }
.foot__bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ===== Reveal states ===== */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal-image] { overflow: hidden; }
[data-reveal-image] img { transform: scale(1.15); opacity: 0; }
[data-line-inner] { transform: translateY(110%); display: block; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .nav__menu { display: none; }
  .nav__cart { display: none; }
  .nav__burger { display: block; }
  .nav__inner { grid-template-columns: auto 1fr auto; padding: 8px 8px 8px 18px; }
  .nav__actions { display: none; }
}
@media (max-width: 980px) {
  .hero { padding-top: 100px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { aspect-ratio: 4 / 3; }
  .hero__card { grid-template-columns: 1fr; gap: 6px; }
  .hero__card-cell { border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 14px; }
  .hero__card-cell:last-of-type { border-bottom: 0; }
  .hero__stats { gap: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .maison-split { grid-template-columns: 1fr; gap: 40px; }
  .maison-split__media--right { order: 0; }
  .brunch-banner { grid-template-columns: 1fr; }
  .brunch-banner__media { min-height: 50vh; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g--1 { grid-column: span 6; height: 340px; }
  .g--2, .g--3, .g--4, .g--5, .g--6, .g--7, .g--8 { grid-column: span 3; height: 220px; }
  .reserver { grid-template-columns: 1fr; gap: 40px; }
  .trouver { grid-template-columns: 1fr; }
  .cart-wrap { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-sides { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .foot__inner { grid-template-columns: 1fr; gap: 40px; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
  .foot__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 540px) {
  .btn { padding: 14px 22px; font-size: 13px; }
  .hero__title { font-size: 44px; }
  .hero__stats { flex-wrap: wrap; gap: 18px; }
  .cart-line { grid-template-columns: 1fr auto; row-gap: 10px; }
  .cart-line__price { grid-column: 2; text-align: right; }
  .cart-line__qty { grid-column: 1; }
  .cart-line__del { grid-column: 2; }
  .menu-section__title { flex-direction: column; gap: 4px; align-items: flex-start; }
}

/* ============================================================
   MOBILE APP FEEL — bottom tab bar, top bar, safe area, FAB
   ============================================================ */

/* Compact top bar (mobile only) */
.topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 16px;
  padding-top: max(12px, env(safe-area-inset-top));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
}
.topbar__logo img { height: 28px; width: auto; display: block; }
.topbar__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.32);
  -webkit-tap-highlight-color: transparent;
}
.topbar__wa svg { width: 20px; height: 20px; }

/* Bottom tab bar (mobile only) */
.tabbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--line);
  padding: 8px 4px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: stretch;
}
.tabbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 2px;
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.25s var(--ease), transform 0.2s var(--ease);
  text-align: center;
}
.tabbar__item:active { transform: scale(0.94); }
.tabbar__item svg {
  width: 26px;
  height: 26px;
  display: block;
  transition: stroke 0.25s var(--ease);
}
.tabbar__item.is-active { color: var(--bronze); }
.tabbar__item.is-active svg { stroke: var(--bronze); }
.tabbar__item.is-active::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 3px;
  background: var(--bronze);
  border-radius: 0 0 4px 4px;
}
.tabbar__badge {
  position: absolute;
  top: 2px; right: 25%;
  background: var(--bronze);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.tabbar__badge.has-items {
  opacity: 1;
  transform: scale(1);
}
/* When badge has items show it without 'has-items' check by reading text */
.tabbar__item[data-tab="commander"] .tabbar__badge:not(:empty):not([data-cart-count="0"]) {
  opacity: 1;
  transform: scale(1);
}

/* WhatsApp floating action button */
.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: fabPulse 2.4s var(--ease) infinite;
}
.fab-whatsapp:hover { transform: scale(1.06); }
.fab-whatsapp:active { transform: scale(0.94); }
.fab-whatsapp svg { width: 28px; height: 28px; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42), 0 0 0 0 rgba(37, 211, 102, 0.42); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================================
   MOBILE BREAKPOINT 768px — app-style activation
   ============================================================ */
@media (max-width: 768px) {
  /* Hide desktop top nav, show mobile topbar + bottom tabbar */
  .nav { display: none; }
  .topbar { display: flex; }
  .tabbar { display: flex; }

  /* WhatsApp FAB position adjustment to avoid tabbar */
  .fab-whatsapp {
    right: 16px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  /* Push content down for topbar, up for tabbar */
  body { padding-top: 56px; }
  body::after {
    content: "";
    display: block;
    height: calc(72px + env(safe-area-inset-bottom));
  }

  /* Hero gets less top padding (no big nav) */
  .hero { padding-top: 30px; padding-bottom: 0; }
  .hero__panel { padding: 28px 22px 32px; border-radius: 28px; }
  .hero__title { font-size: 42px !important; line-height: 1.03; margin: 18px 0 18px; }
  .hero__sub { font-size: 15px; margin-bottom: 22px; }
  .hero__image { aspect-ratio: 4 / 5; }
  .hero__stats {
    margin-top: 28px;
    padding-top: 22px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero__stat .num { font-size: 24px; }
  .hero__stat .lab { font-size: 10px; }

  /* Hero card stacks */
  .hero__card {
    margin: -30px 16px 0;
    padding: 14px;
    border-radius: 22px;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .hero__card-cell { padding: 10px 14px; }
  .hero__card .btn { width: 100%; margin-top: 8px; }

  /* Section spacing */
  .section { padding: 56px 18px; }
  .page-header { padding: 36px 18px 22px; }
  .page-header h1 { font-size: 44px; margin: 18px 0 18px; }
  .page-header p.lead { font-size: 15px; }

  /* Cards full width */
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { border-radius: 22px; }
  .services { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service { padding: 18px; border-radius: 20px; }
  .service__icon { width: 40px; height: 40px; }
  .service__title { font-size: 15px; }
  .service__desc { font-size: 12.5px; }

  /* Maison */
  .maison-split { grid-template-columns: 1fr; gap: 28px; }
  .maison-split__media { aspect-ratio: 5 / 4; border-radius: 24px; }
  .maison-split__copy p { font-size: 15px; }

  /* Brunch banner */
  .brunch-banner {
    grid-template-columns: 1fr;
    margin: 0 18px;
    border-radius: 28px;
  }
  .brunch-banner__media { min-height: 280px; }
  .brunch-banner__text { padding: 32px 24px; }
  .brunch-banner__price { font-size: 24px; }

  /* Marquee */
  .marquee { padding: 14px 0; margin: 36px 0; }
  .marquee__track span { font-size: 22px; }
  .marquee__track i { margin: 0 12px; }

  /* Gallery: simple 2-col */
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .g--1 { grid-column: span 2; height: 280px; border-radius: 22px; }
  .g--2, .g--3, .g--4, .g--5, .g--6, .g--7, .g--8 {
    grid-column: span 1;
    height: 180px;
    border-radius: 18px;
  }
  .g--6 { grid-column: span 2; }

  /* Menu */
  .menu-tabs { gap: 8px; margin-bottom: 28px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { white-space: nowrap; padding: 10px 18px; font-size: 12.5px; flex-shrink: 0; }
  .menu-section__title { font-size: 24px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .menu-items { grid-template-columns: 1fr; gap: 10px; }
  .menu-item { padding: 16px 18px; border-radius: 18px; }
  .menu-item__name { font-size: 14.5px; }
  .menu-item__price { font-size: 16px; }
  .menu-item__add { width: 36px; height: 36px; font-size: 18px; }

  /* Reserver */
  .reserver { margin: 0 18px; padding: 32px 22px; border-radius: 28px; grid-template-columns: 1fr; gap: 28px; }
  .form { padding: 24px 20px; border-radius: 22px; }
  .form__row { grid-template-columns: 1fr; gap: 12px; }
  .form input, .form select, .form textarea { font-size: 16px; padding: 14px 16px; border-radius: 14px; } /* 16px = no iOS auto-zoom */

  /* Trouver / map */
  .trouver { grid-template-columns: 1fr; gap: 28px; }
  .trouver__map { min-height: 320px; border-radius: 22px; }

  /* Cart */
  .cart-wrap { grid-template-columns: 1fr; gap: 24px; }
  .cart-summary { position: static; padding: 24px; border-radius: 22px; }
  .cart-line { padding: 16px 18px; border-radius: 18px; grid-template-columns: 1fr auto; row-gap: 10px; }
  .cart-line__name { font-size: 15px; }
  .cart-line__qty { grid-column: 1; }
  .cart-line__price { grid-column: 2; text-align: right; font-size: 15px; }
  .cart-line__del { grid-column: 2; justify-self: end; }

  /* Footer compact on mobile */
  .foot { padding: 60px 22px 32px; border-radius: 32px 32px 0 0; margin-top: 40px; }
  .foot__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .foot__cols h4 { margin-bottom: 10px; }
  .foot__cols p { font-size: 13px; }
  .foot__bottom { flex-direction: column; gap: 6px; font-size: 10.5px; }

  /* Buttons tap target ≥44px */
  .btn { min-height: 48px; padding: 14px 22px; font-size: 13.5px; }

  /* Hide cursor on touch */
  .cursor, .cursor-dot { display: none !important; }

  /* Marquee smoother on mobile */
  .marquee__track { animation-duration: 30s; }
}

@media (max-width: 400px) {
  .hero__panel { padding: 24px 18px 28px; }
  .hero__title { font-size: 36px !important; }
  .page-header h1 { font-size: 38px; }
  .services { grid-template-columns: 1fr; }
  .tabbar__item span { font-size: 9.5px; }
  .foot__cols { grid-template-columns: 1fr; }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none !important; }
}

/* iOS safe area defaults */
@supports (padding: max(0px)) {
  .topbar { padding-top: max(12px, env(safe-area-inset-top)); }
  .tabbar { padding-bottom: max(8px, env(safe-area-inset-bottom)); }
}

/* App-like touch feedback */
@media (hover: none) and (pointer: coarse) {
  a, button, .menu-item, .feature-card, .service, .cart-line {
    -webkit-tap-highlight-color: transparent;
  }
  .btn:active { transform: scale(0.97); }
  .menu-item__add:active { transform: scale(0.88); background: var(--bronze); }
  .tabbar__item:active::before { animation: tabBounce 0.4s var(--ease); }
}
@keyframes tabBounce {
  0% { transform: translateX(-50%) scaleY(0); }
  60% { transform: translateX(-50%) scaleY(1.2); }
  100% { transform: translateX(-50%) scaleY(1); }
}

/* ============================================================
   SHOWCASE — vertical photo storytelling (Airbnb listing feel)
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.showcase__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  isolation: isolate;
  cursor: pointer;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.showcase__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.showcase__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.showcase__item:hover img { transform: scale(1.05); }
.showcase__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--paper);
  background: linear-gradient(to top, rgba(35, 31, 32, 0.78) 0%, rgba(35, 31, 32, 0.15) 50%, transparent 100%);
  z-index: 2;
}
.showcase__caption .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  margin-bottom: 8px;
}
.showcase__caption .eyebrow::before {
  background: var(--bronze-light);
}
.showcase__caption h3 {
  color: var(--paper);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.showcase__caption p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ============================================================
   MOBILE — galleries en vertical scroll (single column tall)
   ============================================================ */
@media (max-width: 768px) {

  /* Gallery: single column, tall portrait photos, vertical scroll */
  .gallery {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    grid-template-columns: none;
    grid-auto-rows: auto;
  }
  .gallery .g,
  .gallery .g--1,
  .gallery .g--2,
  .gallery .g--3,
  .gallery .g--4,
  .gallery .g--5,
  .gallery .g--6,
  .gallery .g--7,
  .gallery .g--8,
  .gallery .g--9,
  .gallery .g--10 {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    height: auto !important;
    aspect-ratio: 4 / 5;
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
  }

  /* Showcase: single column on mobile, full width tall cards */
  .showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .showcase__item {
    aspect-ratio: 4 / 5;
    border-radius: 26px;
  }
  .showcase__caption {
    padding: 22px;
  }
  .showcase__caption h3 { font-size: 20px; }

  /* Maison split media gets aspect 4/5 on mobile */
  .maison-split__media {
    aspect-ratio: 4 / 5;
  }

  /* Hero image taller on mobile to feel app-listing */
  .hero__image {
    aspect-ratio: 4 / 5 !important;
    border-radius: 28px;
  }

  /* Feature cards: image taller on mobile */
  .feature-card__media {
    aspect-ratio: 4 / 5;
  }
}

/* ============================================================
   HERO V2 — full-bleed immersive (style hotel app)
   ============================================================ */
.hero--immersive {
  position: relative;
  padding: 0;
  margin: 0 auto;
  max-width: 1320px;
  padding: 100px var(--gutter) 0;
}
.hero--immersive .hero__panel {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
  background: var(--ink);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero--immersive .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero--immersive .hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero--immersive .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(35, 31, 32, 0.92) 0%, rgba(35, 31, 32, 0.55) 35%, rgba(35, 31, 32, 0.10) 65%, transparent 100%),
    linear-gradient(to right, rgba(35, 31, 32, 0.55) 0%, rgba(35, 31, 32, 0.10) 50%, transparent 100%);
}
.hero--immersive .hero__content {
  position: relative;
  z-index: 3;
  padding: clamp(40px, 6vw, 80px);
  max-width: 700px;
  color: var(--paper);
}
.hero--immersive .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}
.hero--immersive .eyebrow::before {
  background: var(--bronze-light);
}
.hero--immersive .hero__title {
  color: var(--paper);
  font-size: clamp(46px, 7vw, 108px);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.0;
  margin: 24px 0 22px;
}
.hero--immersive .hero__title em { color: var(--bronze-light); font-style: normal; }
.hero--immersive .hero__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 540px;
}
.hero--immersive .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--paper);
}
.hero--immersive .btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* Top-right info pill on hero */
.hero__pill {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__pill::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 12px #25d366;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Category chips row — horizontal scroll mobile-app style */
.cat-strip {
  max-width: var(--max);
  margin: -36px auto 0;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 5;
}
.cat-strip__track {
  background: var(--paper);
  border-radius: 999px;
  padding: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cat-strip__track::-webkit-scrollbar { display: none; }
.cat-strip__chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--sage-tint);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
  scroll-snap-align: start;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.cat-strip__chip:hover { background: var(--ink); color: var(--paper); }
.cat-strip__chip svg { width: 16px; height: 16px; }

/* Atmosphere quote */
.atmosphere {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px var(--gutter);
  text-align: center;
}
.atmosphere__quote {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto;
}
.atmosphere__quote em { color: var(--bronze); font-style: normal; }
.atmosphere__sub {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* Final CTA */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-xl);
  margin: 0 var(--gutter) 60px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(60px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  opacity: 0.30;
  z-index: 1;
}
.final-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(2px);
}
.final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta__inner .eyebrow { color: var(--bronze-light); }
.final-cta__inner .eyebrow::before { background: var(--bronze-light); }
.final-cta__inner h2 {
  color: var(--paper);
  margin: 18px 0 22px;
}
.final-cta__inner h2 em { color: var(--bronze-light); }
.final-cta__inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.final-cta__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* MOBILE adjustments for new sections */
@media (max-width: 768px) {
  .hero--immersive {
    padding: 64px 14px 0;
  }
  .hero--immersive .hero__panel {
    min-height: 80vh;
    border-radius: 28px;
  }
  .hero--immersive .hero__content {
    padding: 28px 24px 100px;
  }
  .hero--immersive .hero__title {
    font-size: 44px !important;
    margin: 14px 0 14px;
  }
  .hero--immersive .hero__sub { font-size: 15px; margin-bottom: 22px; }
  .hero__pill { top: 16px; right: 16px; font-size: 11px; padding: 8px 14px; }

  .cat-strip {
    margin: -28px auto 0;
    padding: 0 14px;
  }
  .cat-strip__track {
    padding: 10px;
    border-radius: 26px;
  }
  .cat-strip__chip {
    padding: 10px 16px;
    font-size: 12.5px;
  }

  .atmosphere { padding: 64px 22px; }
  .atmosphere__quote { font-size: 30px; line-height: 1.2; }
  .atmosphere__sub { font-size: 14px; }

  .final-cta {
    margin: 0 14px 40px;
    padding: 48px 28px;
    border-radius: 28px;
  }
  .final-cta__inner p { font-size: 15px; }
}

/* ============================================================
   PERFORMANCE — CSS animations (no JS overhead)
   Replaces GSAP reveals with native CSS transitions
   ============================================================ */

/* Reveal initial states (override prior) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-image] {
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.0s var(--ease);
  will-change: clip-path;
}
[data-reveal-image].is-visible {
  clip-path: inset(0% 0 0 0);
}
[data-reveal-image] img {
  transform: scale(1.15);
  opacity: 0;
  transition: transform 1.2s var(--ease), opacity 0.6s var(--ease);
}
[data-reveal-image].is-visible img {
  transform: scale(1);
  opacity: 1;
}

/* Hero typography slide-up via CSS animation */
[data-line-inner] {
  display: block;
  transform: translateY(110%);
  will-change: transform;
}
[data-line-inner].is-hero-line {
  animation: heroLineUp 1.1s var(--ease) both;
}
@keyframes heroLineUp {
  to { transform: translateY(0); }
}

/* Hero image reveal via CSS */
[data-hero-image].is-hero-image {
  animation: heroImageReveal 1.4s var(--ease) 0.2s both;
}
[data-hero-image].is-hero-image img {
  animation: heroImageScale 1.6s var(--ease) 0.2s both;
}
@keyframes heroImageReveal {
  from { clip-path: inset(100% 0 0 0); }
  to { clip-path: inset(0% 0 0 0); }
}
@keyframes heroImageScale {
  from { transform: scale(1.2); }
  to { transform: scale(1); }
}

/* Marquee CSS-only (no JS clone needed) */
.marquee__track {
  animation: marqueeRun var(--marquee-duration, 30s) linear infinite;
}
@keyframes marqueeRun {
  to { transform: translateX(-50%); }
}

/* Content-visibility for below-fold sections (rendering perf) */
.section, .brunch, .reserver, .final-cta {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* GPU-accelerated transforms */
.feature-card, .service, .menu-item, .showcase__item, .g {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ============================================================
   V3 — slideshow, scroll horizontal mobile, tailles ajustées
   ============================================================ */

/* Hero slideshow — multi-images fade auto */
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: heroSlide 30s infinite ease-in-out;
}
.hero__bg img:nth-child(1) { animation-delay: 0s; opacity: 1; }
.hero__bg img:nth-child(2) { animation-delay: 7s; animation-duration: 28s; }
.hero__bg img:nth-child(3) { animation-delay: 14s; animation-duration: 28s; }
.hero__bg img:nth-child(4) { animation-delay: 21s; animation-duration: 28s; }
.hero__bg img:nth-of-type(1) { animation-duration: 28s; }
@keyframes heroSlide {
  0%, 18% { opacity: 1; transform: scale(1.04); }
  28%, 100% { opacity: 0; transform: scale(1); }
}

/* Hero title size reduced */
.hero--immersive .hero__title {
  font-size: clamp(36px, 5.2vw, 84px) !important;
  line-height: 1.02;
}

/* Section h2 globally reduced */
.h2, h2 {
  font-size: clamp(30px, 4vw, 60px);
}

/* Page header h1 reduced */
.page-header h1 {
  font-size: clamp(44px, 6vw, 100px);
}

/* Atmosphere quote slightly smaller */
.atmosphere__quote {
  font-size: clamp(26px, 3.4vw, 48px);
}

/* Footer logo restored to original colors (no white invert) */
.foot__brand img {
  filter: none;
  background: var(--paper);
  padding: 10px 14px;
  border-radius: 12px;
  height: 48px;
}

/* ============================================================
   MOBILE — Gallery / Showcase / Brunch en scroll horizontal
   ============================================================ */
@media (max-width: 768px) {

  /* Hero title smaller on mobile */
  .hero--immersive .hero__title {
    font-size: 36px !important;
    line-height: 1.05;
  }
  .hero__pill { font-size: 10.5px; padding: 7px 12px; }
  .page-header h1 { font-size: 36px !important; }
  .atmosphere__quote { font-size: 26px; }

  /* === GALLERY: horizontal scroll snap === */
  .gallery {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 18px 14px;
    margin: 0 -18px;
    grid-template-columns: none;
    grid-auto-rows: auto;
    scroll-padding: 18px;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery .g,
  .gallery .g--1, .gallery .g--2, .gallery .g--3, .gallery .g--4,
  .gallery .g--5, .gallery .g--6, .gallery .g--7, .gallery .g--8,
  .gallery .g--9, .gallery .g--10 {
    flex: 0 0 78% !important;
    width: 78% !important;
    height: auto !important;
    aspect-ratio: 3 / 4 !important;
    border-radius: 22px;
    scroll-snap-align: start;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  /* === SHOWCASE: horizontal scroll + auto-glide === */
  .showcase {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin: 0 -18px;
    padding: 8px 18px 14px;
    grid-template-columns: none;
  }
  .showcase::-webkit-scrollbar { display: none; }
  .showcase__item {
    flex: 0 0 82%;
    width: 82%;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
    border-radius: 24px;
  }

  /* Brunch gallery alias */
  .brunch-gallery {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 8px 18px 14px;
    margin: 0 -18px;
  }
  .brunch-gallery::-webkit-scrollbar { display: none; }
  .brunch-gallery > * {
    flex: 0 0 78%;
    width: 78%;
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
    border-radius: 22px;
    overflow: hidden;
  }
  .brunch-gallery > * img { width: 100%; height: 100%; object-fit: cover; }
}

/* ============================================================
   Menu category filter (carte) — show only selected
   ============================================================ */
.menu-section[hidden] { display: none; }
.menu-tabs {
  position: sticky;
  top: 78px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  border-radius: 999px;
}
@media (max-width: 768px) {
  .menu-tabs {
    top: 60px;
    background: rgba(255, 255, 255, 0.96);
    margin: 0 -18px;
    padding: 12px 18px;
    border-radius: 0;
  }
}

/* Suggestion modal */
.suggest {
  position: fixed;
  inset: auto 16px calc(96px + env(safe-area-inset-bottom)) 16px;
  z-index: 9500;
  background: var(--paper);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  transform: translateY(40px);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  max-width: 480px;
  margin: 0 auto;
}
.suggest.is-in { opacity: 1; transform: translateY(0); }
.suggest__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.suggest__head .eyebrow { margin: 0; }
.suggest__close {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--sage-tint);
  color: var(--ink);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.suggest__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.suggest__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.suggest__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--sage-tint);
  border-radius: 14px;
  gap: 12px;
}
.suggest__item-name {
  font-weight: 500;
  font-size: 14px;
  flex: 1;
}
.suggest__item-price {
  font-weight: 700;
  font-size: 14px;
  color: var(--bronze);
}
.suggest__item-add {
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}
.suggest__item-add:hover { background: var(--bronze); }
@media (min-width: 769px) {
  .suggest { inset: auto 24px 24px auto; max-width: 420px; }
}

/* ============================================================
   V4 — Glassmorphisme + ajustements photos mobile + espacements
   ============================================================ */

/* Glassmorphisme */
.nav__inner {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.nav.is-stuck .nav__inner {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.topbar {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.tabbar {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.feature-card, .service, .menu-tab, .cart-summary, .form {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.service { background: rgba(255, 255, 255, 0.85); }
.hero__card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.menu-item {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px) saturate(150%);
}
.menu-tabs {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Espaces vides réduits, sections plus serrées */
.section { padding: clamp(50px, 6vw, 100px) var(--gutter); }
section[data-section] { padding: clamp(60px, 7vw, 110px) var(--gutter); }
.atmosphere { padding: clamp(60px, 7vw, 100px) var(--gutter); }
.section__head { margin-bottom: 36px; }
.foot { padding: 60px var(--gutter) 28px; margin-top: 40px; }
.foot__inner { padding-bottom: 36px; gap: 50px; }

/* ============================================================
   Plats sénégalais — section dédiée et grid
   ============================================================ */
.senegal {
  background: var(--sage-tint);
  border-radius: var(--radius-xl);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(50px, 6vw, 90px) clamp(28px, 4vw, 60px);
  width: calc(100% - 2 * var(--gutter));
}
.senegal__head { margin-bottom: 36px; }
.senegal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.senegal__card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.senegal__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.senegal__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.senegal__card:hover img { transform: scale(1.06); }
.senegal__cap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--paper);
  background: linear-gradient(to top, rgba(35, 31, 32, 0.85) 0%, rgba(35, 31, 32, 0.15) 55%, transparent 100%);
}
.senegal__cap h3 {
  color: var(--paper);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.senegal__cap p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}
.senegal__price {
  display: inline-block;
  background: var(--bronze);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 10px;
  align-self: flex-start;
}

/* ============================================================
   Menu items avec photos (carte attirante)
   ============================================================ */
.menu-item--with-photo {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
}
.menu-item--with-photo .menu-item__photo {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sage-tint);
  flex-shrink: 0;
}
.menu-item--with-photo .menu-item__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.menu-item--with-photo .menu-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu-item--with-photo .menu-item__name { font-size: 15px; font-weight: 600; }
.menu-item--with-photo .menu-item__desc { font-size: 12px; color: var(--ink-soft); }

/* ============================================================
   MOBILE — espacements photos, 2 visibles, centrées
   ============================================================ */
@media (max-width: 768px) {

  /* Senegal: 2 colonnes mobile */
  .senegal {
    margin: 0 14px;
    padding: 36px 18px;
    width: auto;
    border-radius: 26px;
  }
  .senegal__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .senegal__card { aspect-ratio: 3 / 4; }
  .senegal__cap h3 { font-size: 15px; }
  .senegal__cap p { font-size: 11px; }

  /* GALLERY mobile — 2 photos visibles, centrées, gap réduit */
  .gallery {
    gap: 8px !important;
    padding: 8px 14px !important;
    margin: 0 -14px !important;
    scroll-padding-left: 14px !important;
  }
  .gallery .g,
  .gallery .g--1, .gallery .g--2, .gallery .g--3, .gallery .g--4,
  .gallery .g--5, .gallery .g--6, .gallery .g--7, .gallery .g--8,
  .gallery .g--9, .gallery .g--10 {
    flex: 0 0 calc(50% - 8px) !important;
    width: calc(50% - 8px) !important;
    aspect-ratio: 3 / 4 !important;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  /* SHOWCASE mobile — 2 visibles */
  .showcase {
    gap: 10px !important;
    padding: 8px 14px !important;
    margin: 0 -14px !important;
  }
  .showcase__item {
    flex: 0 0 calc(55% - 8px) !important;
    width: calc(55% - 8px) !important;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
  }

  /* Brunch banner mobile — centrée */
  .brunch.html-section figure[data-reveal-image],
  section figure[data-reveal-image][style*="16 / 7"] {
    margin-left: -8px !important;
    margin-right: -8px !important;
    border-radius: 18px !important;
    aspect-ratio: 5 / 3 !important;
  }

  /* Menu items avec photo mobile */
  .menu-item--with-photo {
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    padding: 10px;
  }
  .menu-item--with-photo .menu-item__photo {
    width: 72px; height: 72px;
    border-radius: 14px;
  }
  .menu-item--with-photo .menu-item__price { font-size: 14px; }
  .menu-item--with-photo .menu-item__add { width: 32px; height: 32px; }

  /* Suppression espaces vides supplémentaires */
  .section { padding: 36px 14px; }
  .page-header { padding: 30px 18px 20px; }
  .atmosphere { padding: 40px 18px; }
  .foot { padding: 40px 18px 24px; margin-top: 24px; border-radius: 26px 26px 0 0; }
  .marquee { margin: 24px 0; padding: 14px 0; }
  body::after { height: calc(64px + env(safe-area-inset-bottom)); }

  /* Senegal mobile gap réduit */
  .senegal__grid { gap: 8px; }
}

@media (max-width: 540px) {
  .senegal__grid { gap: 8px; }
  .senegal__card { aspect-ratio: 4 / 5; }
}

/* ============================================================
   V5 — Suppressions traits, marquee photos, ultra-rapide
   ============================================================ */

/* Suppression des traits décoratifs sur les eyebrows */
.eyebrow::before { display: none !important; content: none !important; }
.eyebrow { gap: 0; }

/* Plat du jour — marquee horizontal photos auto */
.plat-marquee {
  position: relative;
  overflow: hidden;
  margin: 28px -8px 0;
  padding: 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.plat-marquee__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: platMarquee 30s linear infinite;
  padding: 8px;
}
.plat-marquee__track:hover {
  animation-play-state: paused;
}
.plat-marquee__item {
  flex-shrink: 0;
  width: 260px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.plat-marquee__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.plat-marquee__item .pdj-price {
  position: absolute;
  bottom: 14px; left: 14px;
  background: var(--bronze);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
@keyframes platMarquee {
  to { transform: translateX(calc(-50% - 7px)); }
}
@media (max-width: 768px) {
  .plat-marquee__item { width: 180px; }
  .plat-marquee { margin-top: 22px; }
  .plat-marquee__track { gap: 10px; }
}

/* Ultra-tight harmonized spacing */
.section { padding: clamp(40px, 5vw, 80px) var(--gutter); }
section[data-section] { padding: clamp(40px, 5vw, 80px) var(--gutter); }
.section__head { margin-bottom: 28px; }
.atmosphere { padding: clamp(50px, 6vw, 90px) var(--gutter); }
.page-header { padding: 100px var(--gutter) 36px; }
.foot { padding: 50px var(--gutter) 24px; margin-top: 24px; }
.foot__inner { padding-bottom: 32px; gap: 40px; }

/* Plat du jour section spacing tight */
.senegal { padding: clamp(40px, 5vw, 70px) clamp(24px, 4vw, 50px); }
.senegal__head { margin-bottom: 14px; }

/* Cards images smaller, faster */
.feature-card__media { aspect-ratio: 5 / 4; }
.senegal__card { aspect-ratio: 4 / 5; }

/* Faster image loading hint */
img { font-style: italic; color: var(--ink-soft); }
img[alt=""], img:not([alt]) { font-style: normal; }

/* Skip large blank space below sections */
.section > .section__inner > .section__head:empty { display: none; }

@media (max-width: 768px) {
  .page-header { padding: 70px 16px 22px; }
  .page-header h1 { font-size: 32px !important; }
  .page-header p.lead { font-size: 14px; }
  .section { padding: 28px 14px; }
  section[data-section] { padding: 28px 14px; }
  .section__head { margin-bottom: 18px; }
  .atmosphere { padding: 32px 18px; }
  .foot { padding: 36px 16px 20px; margin-top: 18px; }
  .marquee { margin: 18px 0; padding: 12px 0; }
  .marquee__track span { font-size: 18px; }
  .senegal { margin: 0 14px; padding: 28px 16px; }
  .senegal__head { margin-bottom: 8px; }
  .senegal__head .lead { font-size: 13px; margin-top: 6px; }
  .hero--immersive { padding: 64px 14px 0; }
  .brunch-banner__text { padding: 28px 22px; }
}

/* ============================================================
   V6 — Plat du jour marquee fix + harmonisation finale
   ============================================================ */

.plat-marquee__track {
  padding: 0 !important;
}
.plat-marquee {
  margin: 24px 0 0 !important;
  padding: 0 !important;
}
.plat-marquee__item {
  border-radius: 18px;
}

/* Senegal section harmonized */
.senegal {
  background: linear-gradient(135deg, var(--sage-tint) 0%, #e8e9e2 100%);
  border-radius: var(--radius-xl);
}

/* Final harmonization — kill all empty padding */
section.section[style*="padding-top: 0"] { padding-top: 0 !important; }
.brunch-banner { margin-top: 0; }
.atmosphere { padding-top: 50px; padding-bottom: 50px; }
.section__head--center { padding: 0 16px; }
.final-cta { margin-bottom: 30px; }

/* Force consistent image rendering */
img { image-rendering: -webkit-optimize-contrast; }

@media (max-width: 768px) {
  .plat-marquee__item { width: 170px; aspect-ratio: 3/4; }
  .senegal__head h2 { font-size: 28px !important; }
  .senegal__head .lead { font-size: 14px; }
  .hero--immersive .hero__panel { min-height: 70vh; }
  .hero--immersive .hero__content { padding: 24px 20px 70px; }
  .hero__pill { top: 14px; right: 14px; font-size: 10px; padding: 6px 11px; }
  .hero__sub { font-size: 14.5px; margin-bottom: 18px; }
  .cat-strip { margin-top: -22px; padding: 0 12px; }
  .cat-strip__chip { padding: 8px 14px; font-size: 12px; }
  .services { gap: 10px; }
  .service { padding: 16px; }
  .feature-card__body { padding: 18px 18px 20px; }
  .toast { font-size: 12px; padding: 12px 18px; }
  .marquee { margin: 14px 0; padding: 10px 0; }
  .marquee__track span { font-size: 16px; }
}
