/* =========================================================
   CHEZ SOTHY — Snack asiatique
   Identité reprise du document : cream + olive/mustard,
   typographie ronde rétro (Baloo 2), style plat & artisanal.
   ========================================================= */

/* ---------- Design tokens (extraits du document) ---------- */
:root {
  /* Cream surfaces */
  --paper:    #fbf5e4;   /* cartes (cream clair) */
  --cream:    #f4e9cc;   /* fond principal */
  --cream-2:  #ecdfba;   /* sections alternées / fond profond */

  /* Olive / moutarde (encre de la marque) */
  --olive:      #8a7b2e; /* olive de marque (grands titres, remplissages) */
  --olive-mid:  #73661f;
  --olive-deep: #5b511c; /* boutons, libellés, fort contraste */
  --olive-block:#675b20; /* blocs pleins (façon panneaux EXTRAS/SAUCES) */

  /* Texte */
  --ink:      #3f3a1c;   /* corps de texte (olive très foncé) */
  --ink-soft: #6b6330;   /* texte secondaire */
  --cream-on: #f7eed3;   /* texte sur blocs olive */

  /* Lignes / teintes */
  --line:       rgba(91,81,28,.26);
  --line-2:     rgba(91,81,28,.46);
  --olive-tint: rgba(138,123,46,.12);

  /* Radii (coins arrondis généreux du document) */
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Ombres douces & discrètes (le document est plat) */
  --sh-sm: 0 1px 2px rgba(91,81,28,.10);
  --sh:    0 18px 40px -22px rgba(91,81,28,.45);

  /* Layout */
  --maxw: 1180px;
  --gut: clamp(18px, 5vw, 56px);

  /* Type */
  --f-display: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --f-sans: "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--f-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Display headings */
h1, h2, h3, .brand b, .foot-brand b {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.05;
}

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; z-index: 1; padding-block: clamp(60px, 8vw, 120px); }
section[id], footer[id] { scroll-margin-top: 86px; }
.section.alt { background: var(--cream-2); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--olive-deep); color: var(--paper); font-weight: 700;
  padding: 10px 18px; border-radius: var(--r-pill); transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--olive-deep); font-family: var(--f-sans);
}
.kicker::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; flex: none; }
.kicker.center::after { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; flex: none; }

.h-sec {
  font-weight: 800;
  letter-spacing: -.005em;
  font-size: clamp(2rem, 4.8vw, 3.3rem);
  margin-top: 14px;
  color: var(--olive-deep);
}
.h-sec .accent { color: var(--olive); }
.lead { color: var(--ink-soft); max-width: 56ch; margin-top: 14px; font-size: 1.05rem; }
.section-head { margin-bottom: clamp(34px, 5vw, 58px); }
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ---------- Buttons (blocs arrondis pleins du document) ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r);
  font-family: var(--f-display); font-weight: 600; font-size: 1.02rem; letter-spacing: .01em;
  min-height: 52px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  color: var(--paper);
  background: var(--olive-deep);
  box-shadow: var(--sh-sm);
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--olive-deep);
  border: 2px solid var(--olive);
  background: transparent;
}
.btn-ghost:hover { background: var(--olive); color: var(--paper); transform: translateY(-2px); }
.btn-gold { color: var(--paper); background: var(--olive); box-shadow: var(--sh-sm); }
.btn-gold:hover { background: var(--olive-deep); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-sm { --pad-y: 10px; --pad-x: 18px; min-height: 44px; font-size: .96rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(244,233,204,.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand { display: inline-flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand b { font-size: 1.5rem; font-weight: 800; letter-spacing: .01em; color: var(--olive-deep); }
.brand b .dot { color: var(--olive); }
.brand small { font-size: .56rem; letter-spacing: .32em; text-transform: uppercase; color: var(--olive); font-weight: 700; font-family: var(--f-sans); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 10px 13px; font-size: .95rem; font-weight: 700; color: var(--ink-soft);
  border-radius: var(--r-pill); transition: color .2s var(--ease); white-space: nowrap; font-family: var(--f-display);
}
.nav-links a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  background: var(--olive); transform: scaleX(0); transform-origin: left; transition: transform .26s var(--ease); border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--olive-deep); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-meta { display: none; }
.st-dot { width: 8px; height: 8px; border-radius: 50%; background: #6f8e3c; box-shadow: 0 0 0 0 rgba(111,142,60,.5); animation: pulse-dot 2.4s infinite; flex: none; }
.nav-meta.closed .st-dot { background: var(--ink-soft); animation: none; box-shadow: none; }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(111,142,60,.45); }
  70% { box-shadow: 0 0 0 7px rgba(111,142,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,142,60,0); }
}
@media (prefers-reduced-motion: reduce) { .st-dot { animation: none; } }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line-2); align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--olive-deep); }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 116px; padding-bottom: 70px; overflow: hidden; z-index: 1; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 60% at 88% 8%, rgba(138,123,46,.10), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(138,123,46,.07), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center; min-height: calc(100svh - 130px); }
.hero-inner { max-width: 620px; }
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: .98; letter-spacing: -.01em;
  margin-top: 18px; color: var(--olive-deep);
}
.hero h1 .accent { color: var(--olive); }
.hero p.sub { margin-top: 20px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 36px; color: var(--ink-soft); font-size: .94rem; font-weight: 600; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust svg { width: 19px; height: 19px; color: var(--olive); flex: none; }

/* Hero art (photo encadrée + tampon artisanal) */
.hero-art { position: relative; justify-self: center; width: 100%; max-width: 420px; }
.hero-photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-2);
  background: linear-gradient(150deg, var(--cream-2), var(--paper));
  display: grid; place-items: center;
  box-shadow: var(--sh);
}
.hero-photo::before {
  content: ""; position: absolute; inset: -1px; z-index: 2; pointer-events: none;
  border-radius: var(--r-lg); border: 6px solid var(--paper);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo-glyph { width: 47%; max-width: 155px; color: #6f6220; }
.hero-photo.is-fallback img { display: none; }
/* decorative offset frame */
.hero-art::before {
  content: ""; position: absolute; inset: 18px -16px -16px 18px; z-index: -1;
  border: 2px solid var(--olive); border-radius: var(--r-lg); opacity: .55;
}
.stamp {
  position: absolute; left: -22px; bottom: -22px; z-index: 5;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--olive);
  box-shadow: var(--sh-sm); display: grid; place-items: center; gap: 3px;
}
.stamp-star { width: 22px; height: 22px; color: var(--olive); }
.stamp-t1 { font-family: var(--f-display); font-weight: 800; font-size: 12.5px; line-height: 1; text-transform: uppercase; letter-spacing: .01em; color: var(--olive-deep); }
.stamp-t2 { font-family: var(--f-sans); font-weight: 700; font-size: 8px; line-height: 1; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); }

/* ---------- Marquee strip (bloc olive façon panneau du document) ---------- */
.strip { background: var(--olive-block); border-block: 1px solid var(--olive-deep); position: relative; z-index: 1; overflow: hidden; }
.strip-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 36s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-track span { display: inline-flex; align-items: center; gap: 18px; padding: 14px 24px; font-family: var(--f-display); font-weight: 600; font-size: 1.12rem; color: var(--cream-on); }
.strip-track span::after { content: "•"; color: rgba(247,238,211,.55); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Specialties ---------- */
.spec-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.spec-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
}
.spec-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--sh); }
.media {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: linear-gradient(150deg, var(--cream-2), var(--paper));
  display: grid; place-items: center;
}
.media > *, .media::before { grid-area: 1 / 1; align-self: center; justify-self: center; }
.media::before { content: ""; width: 48%; aspect-ratio: 1; border-radius: 50%; background: rgba(138,123,46,.10); }
.media .glyph { width: 44%; max-width: 134px; color: #6f6220; position: relative; }
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.spec-card:hover .media-img { transform: scale(1.06); }
.media .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-on); background: var(--olive-deep);
  padding: 6px 12px; border-radius: var(--r-pill);
}
.spec-body { padding: 22px 22px 24px; }
.spec-body h3 { font-weight: 700; font-size: 1.4rem; display: flex; justify-content: space-between; gap: 12px; align-items: baseline; color: var(--olive-deep); }
.spec-body h3 .price { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; color: var(--olive); font-variant-numeric: tabular-nums; white-space: nowrap; }
.spec-body p { color: var(--ink-soft); margin-top: 10px; font-size: .96rem; }
.spec-body .fmt { margin-top: 12px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); font-weight: 700; }

/* ---------- Full menu ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 42px; }
.menu-tab {
  padding: 11px 20px; border-radius: var(--r-pill); border: 1.5px solid var(--line-2);
  color: var(--olive-deep); font-weight: 700; font-size: .92rem; min-height: 44px; font-family: var(--f-display);
  transition: all .22s var(--ease);
}
.menu-tab:hover { background: var(--olive-tint); }
.menu-tab[aria-selected="true"] { color: var(--paper); background: var(--olive-deep); border-color: var(--olive-deep); }
.menu-panel[hidden] { display: none; }
.menu-panel { animation: fade .4s var(--ease) both; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.panel-note { text-align: center; color: var(--ink-soft); font-style: italic; font-size: 1.06rem; margin-bottom: 28px; }

.price-head { display: grid; grid-template-columns: 1fr repeat(3, 80px); gap: 8px; align-items: end; padding: 0 18px 12px; border-bottom: 1.5px solid var(--line-2); margin-bottom: 6px; }
.price-head span { text-align: right; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--olive-deep); font-weight: 800; }
.price-head span:first-child { text-align: left; }
.m-list { display: grid; gap: 2px; }
.m-row { display: grid; grid-template-columns: 1fr repeat(3, 80px); gap: 8px; align-items: center; padding: 14px 18px; border-radius: var(--r-sm); transition: background .2s var(--ease); }
.m-row + .m-row { border-top: 1px dashed var(--line); }
.m-row:hover { background: var(--olive-tint); }
.m-row .name { font-weight: 600; color: var(--ink); }
.m-row .p { text-align: right; font-variant-numeric: tabular-nums; color: var(--olive-deep); font-weight: 700; }
.m-row .p.has::after { content: " €"; color: var(--ink-soft); font-weight: 500; }
.m-row .p.empty { color: var(--ink-soft); opacity: .4; }

.simple-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px,1fr)); gap: 2px 44px; }
.s-row { display: flex; align-items: baseline; gap: 12px; padding: 13px 6px; }
.s-row + .s-row { } /* spacing handled below */
.simple-grid .s-row { border-bottom: 1px dashed var(--line); }
.s-row .name { font-weight: 600; color: var(--ink); }
.s-row .dots { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); }
.s-row .p { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--olive); white-space: nowrap; }
.s-row .p::after { content: " €"; color: var(--ink-soft); font-weight: 500; }

.chip-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.chip-cols h3 { font-size: 1.5rem; color: var(--olive-deep); margin-bottom: 4px; }
.chip-cols .sub { color: var(--ink-soft); font-size: .88rem; margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: var(--cream); border: 1px solid var(--line); font-size: .92rem; font-weight: 600; color: var(--ink);
  transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.chip:hover { border-color: var(--line-2); background: var(--olive-tint); transform: translateY(-2px); }
.chip b { color: var(--olive); font-variant-numeric: tabular-nums; }
.chip b::after { content: " €"; color: var(--ink-soft); font-weight: 500; }

.menu-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 4vw, 42px); }

/* ---------- Why us ---------- */
.why-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.why-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.why-card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--sh); }
.why-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: var(--olive-tint); border: 1px solid var(--line); }
.why-ico svg { width: 27px; height: 27px; color: var(--olive); }
.why-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--olive-deep); }
.why-card p { color: var(--ink-soft); margin-top: 8px; font-size: .96rem; }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.tst-foot { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 28px; }
.tst-foot a { color: var(--olive-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.tst-foot a:hover { color: var(--ink); }
.tst-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 28px; position: relative; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.tst-card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--sh); }
.tst-card .quote { font-family: var(--f-display); font-size: 3rem; line-height: .5; color: var(--olive); opacity: .5; }
.stars { display: inline-flex; gap: 3px; margin: 10px 0 14px; }
.stars svg { width: 18px; height: 18px; color: var(--olive); }
.tst-card blockquote p { color: var(--ink); font-size: 1.02rem; }
.tst-who { display: flex; align-items: center; gap: 13px; margin-top: 22px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; flex: none; font-weight: 800; font-family: var(--f-display); color: var(--paper); background: var(--olive); }
.tst-who b { display: block; font-size: .98rem; color: var(--olive-deep); font-family: var(--f-sans); font-weight: 800; }
.tst-who span { color: var(--ink-soft); font-size: .85rem; }

/* ---------- Order / commande ---------- */
.order-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: clamp(34px, 5vw, 52px); }
.card-cta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 8px; }
.card-cta .btn { flex: 1 1 120px; }
.order-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.order-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; display: flex; flex-direction: column; gap: 8px; transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.order-card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--sh); }
.order-card .why-ico { margin-bottom: 8px; }
.order-card h3 { font-size: 1.4rem; color: var(--olive-deep); }
.order-card p { color: var(--ink-soft); font-size: .96rem; }
.order-card.placeholder { border-style: dashed; }
.badge-soon { align-self: flex-start; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; color: var(--olive-deep); border: 1px solid var(--line-2); padding: 4px 10px; border-radius: var(--r-pill); }
.hours-box { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: flex-start; justify-content: space-between; background: var(--olive-block); border-radius: var(--r-lg); padding: 28px 30px; color: var(--cream-on); }
.hb-col { display: flex; flex-direction: column; gap: 14px; }
.hb-contact { align-items: flex-start; }
.hb-line { display: inline-flex; align-items: center; gap: 10px; color: var(--cream-on); font-weight: 600; transition: color .2s var(--ease); }
.hb-line svg { width: 20px; height: 20px; color: #f0d98a; flex: none; }
.hb-line:hover { color: #fff; }
.hb-note { font-size: .82rem; color: rgba(247,238,211,.78); max-width: 34ch; margin-top: 2px; }
.hb-note strong { color: #f0d98a; }

/* ---------- Legal pages (mentions légales, confidentialité) ---------- */
.legal-header { position: sticky; top: 0; z-index: 100; background: rgba(244,233,204,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.legal-header .nav { height: 70px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--olive-deep); font-weight: 700; font-family: var(--f-display); }
.legal-back svg { width: 18px; height: 18px; }
.legal-back:hover { color: var(--ink); }
.legal-main { padding-block: clamp(34px, 6vw, 64px) clamp(50px, 8vw, 90px); }
.legal-main .wrap { max-width: 800px; }
.legal-head { margin-bottom: 30px; }
.legal-head h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--olive-deep); }
.legal-head .updated { color: var(--ink-soft); font-size: .9rem; margin-top: 8px; }
.legal-content h2 { font-size: 1.45rem; color: var(--olive-deep); margin: 38px 0 10px; }
.legal-content h2:first-of-type { margin-top: 8px; }
.legal-content h3 { font-size: 1.12rem; color: var(--olive-deep); margin: 22px 0 6px; }
.legal-content p, .legal-content li { color: var(--ink); margin-bottom: 12px; line-height: 1.7; }
.legal-content ul { padding-left: 22px; list-style: disc; margin-bottom: 12px; }
.legal-content li { margin-bottom: 7px; }
.legal-content a { color: var(--olive-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--ink); }
.legal-content strong { color: var(--olive-deep); }
.legal-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 26px; margin-bottom: 18px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-todo { color: var(--ink-soft); font-style: italic; }
.hours-box .h-title { display: flex; align-items: center; gap: 12px; }
.hours-box .h-title svg { width: 26px; height: 26px; color: var(--cream-on); }
.hours-box .h-title b { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; }
.hours-list { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.hours-list li { display: flex; gap: 12px; }
.hours-list .d { color: rgba(247,238,211,.7); min-width: 96px; }
.hours-list .t { font-weight: 700; font-variant-numeric: tabular-nums; }
.hours-list .hl { color: #f0d98a; }
.hours-box .btn-gold { background: var(--paper); color: var(--olive-deep); }
.hours-box .btn-gold:hover { background: var(--cream); }

/* ---------- CTA band (bloc olive) ---------- */
.cta-band { text-align: center; }
.cta-band .card { background: var(--olive-block); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 72px); color: var(--cream-on); }
.cta-band h2 { font-weight: 800; font-size: clamp(1.9rem,4.4vw,3rem); color: var(--paper); }
.cta-band .kicker { color: #f0d98a; }
.cta-band p { color: rgba(247,238,211,.82); margin: 14px auto 30px; max-width: 50ch; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--paper); color: var(--olive-deep); }
.cta-band .btn-primary:hover { background: var(--cream); }
.cta-band .btn-ghost { border-color: rgba(247,238,211,.7); color: var(--cream-on); }
.cta-band .btn-ghost:hover { background: var(--cream-on); color: var(--olive-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--cream-2); border-top: 1px solid var(--line-2); position: relative; z-index: 1; padding-top: clamp(52px,7vw,78px); }
.foot-grid { display: grid; gap: 36px; grid-template-columns: 1fr 1fr 1fr 1.2fr; }
.foot-grid h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--olive-deep); margin-bottom: 18px; font-family: var(--f-sans); font-weight: 800; }
.foot-grid a { color: var(--ink-soft); display: inline-block; max-width: 100%; overflow-wrap: break-word; padding: 5px 0; transition: color .2s var(--ease); font-weight: 600; }
.foot-grid a:hover { color: var(--olive-deep); }
.foot-brand b { font-size: 1.6rem; font-weight: 800; color: var(--olive-deep); }
.foot-brand b .dot { color: var(--olive); }
.foot-brand p { color: var(--ink-soft); margin-top: 12px; max-width: 34ch; font-size: .95rem; }
.foot-social { display: flex; gap: 12px; margin-top: 20px; }
.foot-social a { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 15px; border-radius: 12px; border: 1.5px solid var(--line-2); color: var(--olive-deep); font-weight: 700; font-size: .95rem; transition: all .22s var(--ease); }
.foot-social a:hover { background: var(--olive); color: var(--paper); border-color: var(--olive); transform: translateY(-3px); }
.foot-social svg { width: 21px; height: 21px; }
.foot-li { color: var(--ink-soft); font-size: .94rem; line-height: 1.9; }
.foot-li strong { color: var(--olive-deep); }
.foot-li .ph { color: var(--ink-soft); font-style: italic; opacity: .8; }
.foot-bottom { margin-top: 48px; border-top: 1px solid var(--line); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center; color: var(--ink-soft); font-size: .86rem; }
.foot-bottom a { color: var(--ink-soft); }
.foot-bottom a:hover { color: var(--olive-deep); }

/* ---------- Back to top ---------- */
/* ---------- Map embed ---------- */
.map-embed { margin-top: 24px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--sh-sm); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Sticky mobile order bar (shown on mobile only) ---------- */
.mobile-bar { display: none; }

.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--olive-deep); color: var(--paper);
  display: grid; place-items: center; box-shadow: var(--sh);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: all .3s var(--ease);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { transform: translateY(-3px); background: var(--ink); }
.to-top svg { width: 22px; height: 22px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (min-width: 1200px) {
  .nav-meta { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: .86rem; font-weight: 600; white-space: nowrap; padding-right: 10px; border-right: 1px solid var(--line); margin-right: 4px; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 40px; }
  .hero-art { order: 2; max-width: 340px; margin-top: 6px; }
  .hero-inner { max-width: none; }
}
@media (max-width: 920px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .chip-cols { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
    display: flex; gap: 10px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(244,233,204,.94);
    backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
    border-top: 1px solid var(--line-2);
  }
  .mobile-bar .btn { flex: 1; width: auto; min-height: 50px; padding: 12px 14px; }
  body { padding-bottom: 76px; }
  .to-top { bottom: 88px; }

  .nav-links, .nav-meta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-text-hide { display: none; }
  .nav-cta .btn-primary { display: none; }      /* mobile : bouton « Commander » du header retiré (redondant avec la barre du bas) */
  .hero-actions .btn-primary { display: none; } /* mobile : « Commander maintenant » du hero retiré (redondant) */

  .mobile-menu {
    position: fixed; inset: 74px 0 0 0; z-index: 99; overflow-y: auto;
    background: rgba(248,242,224,1); backdrop-filter: blur(16px);
    align-content: start;
    border-bottom: 1px solid var(--line-2);
    padding: 18px var(--gut) 30px;
    display: grid; gap: 2px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-menu a:not(.btn) { padding: 15px 8px; font-size: 1.15rem; border-bottom: 1px solid var(--line); color: var(--olive-deep); font-family: var(--f-display); font-weight: 600; }
  .mobile-menu .btn { margin-top: 18px; }
  .mobile-menu .m-hours { color: var(--ink-soft); font-size: .92rem; font-weight: 600; padding: 14px 8px 4px; display: flex; gap: 10px; align-items: center; }
  .mobile-menu .m-hours svg { width: 18px; height: 18px; color: var(--olive); }
}
@media (min-width: 861px) { .mobile-menu { display: none; } .to-top { display: none; } }

@media (max-width: 620px) {
  /* Multi-price rows become labeled cards (no cramped columns) */
  .price-head { display: none; }
  .m-row { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px 12px; }
  .m-row + .m-row { border-top: 1px dashed var(--line); }
  .m-row:hover { background: transparent; }
  .m-row .name { grid-column: 1 / -1; font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; color: var(--olive-deep); }
  .m-row .p {
    text-align: left; background: var(--cream); border: 1px solid var(--line);
    border-radius: 10px; padding: 8px 10px; color: var(--olive-deep);
  }
  .m-row .p::before { display: block; font-size: .56rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); font-weight: 800; margin-bottom: 3px; }
  #panel-1 .m-row .p:nth-child(2)::before { content: "Sandwich"; }
  #panel-1 .m-row .p:nth-child(3)::before { content: "Wrap"; }
  #panel-1 .m-row .p:nth-child(4)::before { content: "Bao Bun"; }
  #panel-2 .m-row .p:nth-child(2)::before { content: "Bobun"; }
  #panel-2 .m-row .p:nth-child(3)::before { content: "Biboun"; }
  #panel-2 .m-row .p:nth-child(4)::before { content: "Sothy-Riz"; }
  .simple-grid { grid-template-columns: 1fr; }
  .hours-box { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero { padding-bottom: 50px; }
  /* Mobile : retirer le kicker redondant + tableau 2×2 dont chaque item tient sur UNE ligne */
  .brand small { display: none; }   /* mobile : « Snack asiatique » sous le logo retiré */
  .hero .kicker { display: none; }
  .hero-trust { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 14px 10px; align-items: start; font-size: .75rem; }
  .hero-trust li { white-space: nowrap; gap: 6px; }
  .hero-trust svg { width: 16px; height: 16px; }
  .hero-trust li:nth-child(2) { order: 3; } /* Sur place & à emporter → bas-gauche */
  .hero-trust li:nth-child(3) { order: 4; } /* Sauce maison → bas-droite */
  .hero-trust li:nth-child(4) { order: 2; } /* Options végétariennes → haut-droite */
}

/* ============ Badges végé (carte) ============ */
.veg { display: inline-flex; align-items: center; vertical-align: middle; margin-left: 6px; color: #6f8e3c; }
.veg svg { width: 15px; height: 15px; }
.menu-legend { display: flex; justify-content: center; align-items: center; gap: 7px; margin: -8px 0 26px; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.menu-legend .veg { margin-left: 0; }

/* ============ Badge note Google (avis) ============ */
.rating-badge {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  width: max-content; max-width: 100%; margin: -6px auto 32px; padding: 11px 20px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill);
  box-shadow: var(--sh-sm); color: var(--ink); font-weight: 700;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.rating-badge:hover { transform: translateY(-1px); box-shadow: var(--sh); }
.rb-stars {
  position: relative; display: inline-block; line-height: 1; font-size: 1.16rem; letter-spacing: 2px;
  font-family: "Segoe UI Symbol", "Apple Color Emoji", var(--f-sans); color: var(--line-2);
}
.rb-stars::before { content: "\2605\2605\2605\2605\2605"; }
.rb-stars i { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; width: var(--rating); color: #d8b65a; }
.rb-stars i::before { content: "\2605\2605\2605\2605\2605"; }
.rb-text { font-family: var(--f-display); color: var(--olive-deep); font-size: 1.04rem; }
.rb-text b { font-size: 1.18rem; }
.rb-sep { color: var(--line-2); }
.rb-count { color: var(--ink-soft); font-size: .94rem; font-weight: 600; }

/* ============ FAQ ============ */
.faq-grid { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 0 clamp(18px, 3vw, 26px);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] { border-color: var(--line-2); box-shadow: var(--sh-sm); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 0;
  font-family: var(--f-display); font-weight: 600; font-size: 1.1rem; color: var(--olive-deep);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none;
  font-family: var(--f-display); font-weight: 600; font-size: 1.6rem; line-height: 1;
  color: var(--olive); transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--olive); outline-offset: 4px; border-radius: 8px; }
.faq-a { padding: 0 0 22px; }
.faq-a p { margin: 0; max-width: 64ch; color: var(--ink-soft); line-height: 1.65; }
.faq-a a { color: var(--olive-deep); font-weight: 700; }

@media (max-width: 620px) {
  .faq-item summary { font-size: 1rem; gap: 12px; padding: 17px 0; }
}

/* print-friendly */
@media print {
  .site-header, .to-top, .strip, .hero-art, .cta-band, .order, .tst-grid { display: none !important; }
  body { background: #fff; color: #000; }
}
