/* ============================================================
   LE FRÉROT — Pizzeria italienne chic & abordable
   Feuille de style commune — Imara Digital (démo portfolio)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --cream:        #F8F4EE;
  --cream-deep:   #F0E9DE;
  --ivory:        #FCFAF6;
  --sage:         #7C9E8A;
  --sage-deep:    #5F8270;
  --terracotta:   #C4704A;
  --terracotta-deep:#A85838;
  --gold:         #B8924A;
  --ink:          #2A2521;
  --ink-soft:     #514a42;
  --muted:        #8A8076;
  --line:         #E3DACD;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Spacing rhythm */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 14px rgba(42,37,33,.06);
  --shadow-md: 0 14px 40px rgba(42,37,33,.10);
  --shadow-lg: 0 30px 70px rgba(42,37,33,.16);
  --nav-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 16px; color: var(--ink); }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.06; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--terracotta);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--terracotta);
  display: inline-block;
}

.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); }
.serif-accent { font-family: var(--serif); font-style: italic; color: var(--sage-deep); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.center { text-align: center; }
.section__head { max-width: 640px; }
.section__head.center { margin-inline: auto; }
.section__head h2 { margin-top: .5rem; }
.section__head .lead { margin-top: 1rem; }

.bg-cream-deep { background: var(--cream-deep); }
.bg-ivory { background: var(--ivory); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-sage { background: var(--sage); color: var(--ivory); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .01em;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform .35s var(--ease), background .25s, color .25s, box-shadow .35s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--terracotta); color: var(--ivory); box-shadow: 0 10px 24px rgba(196,112,74,.28); }
.btn--primary:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(196,112,74,.34); }
.btn--sage { background: var(--sage); color: var(--ivory); }
.btn--sage:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: #1c1814; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 1rem; }
.btn[disabled] { opacity: .5; pointer-events: none; }

.linkmore {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .92rem; color: var(--terracotta);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color .25s, gap .25s;
}
.linkmore:hover { border-color: var(--terracotta); gap: .8em; }
.linkmore svg { transition: transform .25s var(--ease); }
.linkmore:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s, height .3s;
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand {
  font-family: var(--serif); font-weight: 700; font-size: 1.6rem;
  letter-spacing: -.01em; line-height: 1; display: flex; align-items: baseline; gap: .4em;
  white-space: nowrap; flex: 0 0 auto;
}
.nav__brand small { white-space: nowrap; }
.nav__brand .dot { color: var(--terracotta); }
.nav__brand small {
  font-family: var(--sans); font-size: .56rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
  transform: translateY(-2px);
}
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--ink);
  padding: 9px 16px; border-radius: 100px; position: relative;
  transition: color .25s, background .25s;
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a.is-active { color: var(--terracotta); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 3px;
  height: 1.5px; background: var(--terracotta);
}
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__cart {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 100px;
  box-shadow: inset 0 0 0 1.5px var(--line); transition: box-shadow .25s, transform .25s;
}
.nav__cart:hover { box-shadow: inset 0 0 0 1.5px var(--ink); transform: translateY(-1px); }
.nav__cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--terracotta); color: #fff; border-radius: 100px;
  font-size: .68rem; font-weight: 700; display: none;
  align-items: center; justify-content: center; border: 2px solid var(--cream);
}
.nav__cart-count.show { display: flex; }
.nav__resa-btn { flex: 0 0 auto; }

/* Scrolled state */
.nav.is-scrolled { background: rgba(248,244,238,.86); backdrop-filter: saturate(140%) blur(14px); box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(42,37,33,.05); height: 66px; }

/* Burger */
.nav__burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  position: relative; flex: 0 0 auto;
}
.nav__burger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .35s var(--ease), opacity .25s, top .35s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
body.menu-open .nav__burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding-top: calc(var(--nav-h) + 40px);
  min-height: 100svh; display: flex; align-items: center;
  overflow: hidden;
}
.hero__grid {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 580px; }
.hero h1 { margin: 1.1rem 0 0; line-height: 1.04; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero__copy .lead { margin-top: 1.8rem; max-width: 460px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2rem; }
.hero__meta { display: flex; gap: 30px; margin-top: 2.6rem; flex-wrap: wrap; }
.hero__meta div { line-height: 1.2; }
.hero__meta .n { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; color: var(--sage-deep); }
.hero__meta .l { font-size: .8rem; color: var(--muted); letter-spacing: .02em; }

.hero__media { position: relative; }
.hero__media .frame {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -28px; bottom: 38px; z-index: 3;
  background: var(--ivory); border-radius: 14px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 13px;
}
.hero__badge .stars { color: var(--gold); font-size: .95rem; letter-spacing: 1px; }
.hero__badge .t { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1; }
.hero__badge .s { font-size: .76rem; color: var(--muted); }
.hero__seal {
  position: absolute; top: -26px; right: -14px; z-index: 3;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--terracotta); color: var(--ivory);
  display: grid; place-content: center; text-align: center;
  font-family: var(--serif); font-style: italic; line-height: 1.1;
  box-shadow: var(--shadow-md); transform: rotate(-8deg);
}
.hero__seal b { display: block; font-size: 1.6rem; font-style: normal; }
.hero__seal span { font-size: .66rem; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; font-style: normal; }
.hero__deco {
  position: absolute; z-index: 0; pointer-events: none;
  width: 60vw; max-width: 720px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(124,158,138,.18), transparent 62%);
  top: -18%; right: -16%;
}

/* ============================================================
   ATOUTS (3 features)
   ============================================================ */
.atouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 3.4rem; }
.atout {
  background: var(--ivory); border-radius: var(--radius-lg); padding: 38px 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.atout:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.atout__ic {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-content: center;
  background: var(--cream); color: var(--sage-deep); margin-bottom: 22px;
}
.atout__ic svg { width: 28px; height: 28px; }
.atout h3 { font-size: 1.55rem; }
.atout p { margin-top: .6rem; color: var(--ink-soft); font-size: .98rem; }
.atout .num { font-family: var(--serif); font-size: .95rem; color: var(--gold); display: block; margin-bottom: 6px; letter-spacing: .1em; }

/* ============================================================
   MENU PREVIEW / MENU PAGE
   ============================================================ */
.menu-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; margin-top: 3rem; }
.dish-row {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; align-items: start;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.dish-row__img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow-sm); }
.dish-row__b { min-width: 0; }
.dish-row__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.dish-row__tag {
  font-family: var(--sans); font-size: .58rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 7px; border-radius: 100px;
  background: rgba(124,158,138,.16); color: var(--sage-deep);
}
.dish-row__tag.veg { background: rgba(124,158,138,.18); color: var(--sage-deep); }
.dish-row__tag.spicy { background: rgba(196,112,74,.16); color: var(--terracotta-deep); }
.dish-row__tag.signature { background: rgba(184,146,74,.18); color: var(--gold); }
.dish-row__desc { font-size: .9rem; color: var(--muted); margin-top: 2px; }
.dish-row__price { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--terracotta); white-space: nowrap; }

/* Menu page categories */
.menu-hero { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 10px; }
.menu-nav {
  position: sticky; top: 66px; z-index: 40;
  background: rgba(248,244,238,.9); backdrop-filter: blur(12px);
  border-block: 1px solid var(--line); padding: 0;
}
.menu-nav__inner { display: flex; gap: 6px; overflow-x: auto; padding: 12px var(--gut); scrollbar-width: none; }
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: 0 0 auto; font-size: .86rem; font-weight: 600; color: var(--ink-soft);
  padding: 9px 18px; border-radius: 100px; transition: background .25s, color .25s;
  white-space: nowrap;
}
.menu-nav a:hover, .menu-nav a.is-active { background: var(--ink); color: var(--cream); }

.menu-cat { padding-block: clamp(48px, 6vw, 86px); }
.menu-cat__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 14px; }
.menu-cat__head h2 { display: flex; align-items: baseline; gap: 16px; }
.menu-cat__head h2 .idx { font-size: .9rem; font-family: var(--sans); font-weight: 700; color: var(--gold); letter-spacing: .1em; }
.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 44px; }
.menu-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 20px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding .3s;
}
.menu-item__img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); background: var(--cream-deep); }
.menu-item__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.menu-item__desc { font-size: .9rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.menu-item__price { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--terracotta); }
.menu-item--nopic { grid-template-columns: 1fr auto; }
.menu-cat__photo { width: 100%; aspect-ratio: 21/8; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin: 8px 0 30px; background: var(--cream-deep); }

/* ============================================================
   AVIS CLIENTS
   ============================================================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3.2rem; }
.review {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.review__q { font-family: var(--serif); font-size: 1.32rem; line-height: 1.4; margin: 16px 0 auto; color: var(--ink); }
.review__by { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.review__av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--sage); }
.review__by b { font-size: .94rem; font-weight: 600; }
.review__by span { display: block; font-size: .78rem; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; border-radius: 20px; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(42,37,33,.88) 30%, rgba(42,37,33,.55)); }
.cta-band__in { position: relative; z-index: 2; padding: clamp(48px, 7vw, 92px) var(--gut); text-align: center; }
.cta-band h2 { color: var(--cream); max-width: 640px; margin-inline: auto; }
.cta-band h2 em { font-style: italic; color: #E8B98C; }
.cta-band p { color: rgba(248,244,238,.8); margin: 1rem auto 0; max-width: 460px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; gap: 20px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.col-span { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .02em; color: var(--ink-soft); }
.field label .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  background: var(--ivory); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 14px 16px; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(124,158,138,.14);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8076' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field .hint { font-size: .78rem; color: var(--muted); }
.field input.invalid, .field select.invalid { border-color: var(--terracotta); }
.field .err { font-size: .76rem; color: var(--terracotta-deep); display: none; }
.field .err.show { display: block; }

/* Time slot chips */
.slots { display: flex; flex-wrap: wrap; gap: 8px; }
.slot {
  padding: 9px 15px; border-radius: 100px; background: var(--ivory);
  box-shadow: inset 0 0 0 1.5px var(--line); font-size: .86rem; font-weight: 600;
  color: var(--ink-soft); transition: all .2s;
}
.slot:hover { box-shadow: inset 0 0 0 1.5px var(--sage); }
.slot.is-selected { background: var(--sage); color: #fff; box-shadow: inset 0 0 0 1.5px var(--sage); }
.slot--label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); width: 100%; margin-top: 6px; }
.slot--label:first-child { margin-top: 0; }

/* Stepper */
.stepper { display: inline-flex; align-items: center; gap: 0; background: var(--ivory); border-radius: 100px; box-shadow: inset 0 0 0 1.5px var(--line); padding: 4px; }
.stepper button { width: 40px; height: 40px; border-radius: 100px; font-size: 1.3rem; color: var(--ink); display: grid; place-content: center; transition: background .2s; }
.stepper button:hover { background: var(--cream-deep); }
.stepper input { width: 56px; text-align: center; border: none; background: none; font-weight: 700; font-size: 1.1rem; font-family: var(--serif); }
.stepper input:focus { outline: none; }

/* Reservation deposit panel */
.resa-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; }
.panel {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.panel--sticky { position: sticky; top: calc(var(--nav-h) + 16px); }
.deposit { background: var(--ink); color: var(--cream); border: none; }
.deposit h3 { color: var(--cream); }
.deposit__row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(248,244,238,.12); font-size: .94rem; }
.deposit__row span { color: rgba(248,244,238,.7); }
.deposit__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; }
.deposit__total .lbl { font-size: .92rem; color: rgba(248,244,238,.7); }
.deposit__total .amt { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: #E8B98C; line-height: 1; }
.deposit__note { font-size: .8rem; color: rgba(248,244,238,.6); margin-top: 8px; }

/* Stripe card */
.card-field { background: var(--ivory); border: 1.5px solid var(--line); border-radius: 10px; padding: 16px; transition: border-color .2s, box-shadow .2s; }
.card-field.StripeElement--focus, .card-field--focus { border-color: var(--sage); box-shadow: 0 0 0 4px rgba(124,158,138,.14); }
.card-field.StripeElement--invalid { border-color: var(--terracotta); }
.card-hint { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); margin-top: 10px; }
.card-hint code { background: var(--cream-deep); padding: 2px 7px; border-radius: 5px; font-size: .82em; color: var(--ink); }
.pay-error { color: var(--terracotta-deep); font-size: .86rem; margin-top: 10px; display: none; }
.pay-error.show { display: block; }
.stripe-badge { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--muted); margin-top: 14px; }

/* Success state */
.success-card { text-align: center; padding: 56px 40px; }
.success-card .check {
  width: 76px; height: 76px; border-radius: 50%; background: var(--sage); color: #fff;
  display: grid; place-content: center; margin: 0 auto 24px; animation: pop .5s var(--ease);
}
.success-card .check svg { width: 38px; height: 38px; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.success-card h3 { font-size: 2.2rem; }
.success-card .ref { display: inline-block; margin-top: 14px; font-family: var(--serif); font-size: 1.1rem; color: var(--sage-deep); background: rgba(124,158,138,.12); padding: 8px 18px; border-radius: 100px; }

/* ============================================================
   COMMANDE (Click & collect)
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 32px; }
.filter {
  padding: 10px 18px; border-radius: 100px; background: var(--ivory);
  box-shadow: inset 0 0 0 1.5px var(--line); font-size: .86rem; font-weight: 600;
  color: var(--ink-soft); transition: all .2s;
}
.filter:hover { box-shadow: inset 0 0 0 1.5px var(--sage); transform: translateY(-1px); }
.filter.is-active { background: var(--ink); color: var(--cream); box-shadow: inset 0 0 0 1.5px var(--ink); }

.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.product {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product__img { aspect-ratio: 16/11; object-fit: cover; width: 100%; background: var(--cream-deep); }
.product__b { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-deep); }
.product__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-top: 4px; }
.product__desc { font-size: .86rem; color: var(--muted); margin-top: 5px; line-height: 1.5; flex: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 12px; }
.product__price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--terracotta); }
.product__add {
  display: inline-flex; align-items: center; gap: 7px; background: var(--ink); color: var(--cream);
  padding: 11px 18px; border-radius: 100px; font-size: .86rem; font-weight: 600;
  transition: background .25s, transform .25s;
}
.product__add:hover { background: var(--terracotta); transform: translateY(-1px); }
.product__add.added { background: var(--sage); }

/* Cart */
.cart { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--nav-h) + 16px); overflow: hidden; }
.cart__head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.cart__head h3 { font-size: 1.5rem; }
.cart__head .count { font-size: .8rem; color: var(--muted); }
.cart__items { max-height: 46vh; overflow-y: auto; padding: 8px 24px; }
.cart__empty { padding: 40px 24px; text-align: center; color: var(--muted); }
.cart__empty svg { width: 44px; height: 44px; margin: 0 auto 14px; opacity: .4; }
.cart-item { display: grid; grid-template-columns: 52px 1fr auto; gap: 13px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item:last-child { border-bottom: none; }
.cart-item__img { width: 52px; height: 52px; border-radius: 9px; object-fit: cover; }
.cart-item__name { font-size: .92rem; font-weight: 600; line-height: 1.25; }
.cart-item__price { font-size: .82rem; color: var(--muted); margin-top: 2px; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; }
.cart-item__qty button { width: 26px; height: 26px; border-radius: 7px; background: var(--cream-deep); font-size: 1rem; color: var(--ink); display: grid; place-content: center; transition: background .2s; }
.cart-item__qty button:hover { background: var(--line); }
.cart-item__qty span { min-width: 22px; text-align: center; font-weight: 700; font-size: .9rem; }
.cart-item__sum { font-family: var(--serif); font-weight: 600; font-size: 1.05rem; color: var(--terracotta); }
.cart__foot { padding: 22px 24px; border-top: 1px solid var(--line); background: var(--cream); }
.cart__line { display: flex; justify-content: space-between; font-size: .9rem; color: var(--ink-soft); padding: 5px 0; }
.cart__line.total { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); padding-top: 12px; margin-top: 6px; border-top: 1px solid var(--line); }
.cart__line.total span:last-child { color: var(--terracotta); }

/* Mobile cart toggle (bottom bar) */
.cart-bar {
  display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  background: var(--ink); color: var(--cream); border-radius: 16px; padding: 14px 18px;
  align-items: center; justify-content: space-between; box-shadow: var(--shadow-lg);
}
.cart-bar b { font-family: var(--serif); font-size: 1.2rem; }
.cart-bar .go { background: var(--terracotta); color: #fff; padding: 10px 18px; border-radius: 100px; font-weight: 600; font-size: .88rem; }

/* Modal (mobile cart / checkout) */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal__scrim { position: absolute; inset: 0; background: rgba(42,37,33,.5); backdrop-filter: blur(3px); animation: fade .3s; }
@keyframes fade { from { opacity: 0; } }
.modal__panel {
  position: absolute; background: var(--cream); box-shadow: var(--shadow-lg);
  inset: auto 0 0 0; border-radius: 22px 22px 0 0; max-height: 92vh; overflow-y: auto;
  animation: slideUp .4s var(--ease);
}
@keyframes slideUp { from { transform: translateY(100%); } }
.modal__panel.center { inset: 0; margin: auto; max-width: 520px; height: max-content; border-radius: 20px; animation: pop .35s var(--ease); }
.modal__close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--cream-deep); display: grid; place-content: center; z-index: 3; }
.modal__close:hover { background: var(--line); }
.modal__body { padding: 32px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-block { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-block:last-child { border-bottom: none; }
.info-block__ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; background: var(--cream-deep); color: var(--sage-deep); display: grid; place-content: center; }
.info-block__ic svg { width: 22px; height: 22px; }
.info-block h4 { font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.info-block p { font-size: 1.02rem; margin-top: 4px; color: var(--ink); }
.info-block a:hover { color: var(--terracotta); }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(.2) sepia(.08); }
.hours-table { width: 100%; }
.hours-table tr td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.today td { color: var(--terracotta-deep); }
.hours-table tr.today td:first-child::after { content: " · Aujourd'hui"; font-size: .72rem; color: var(--terracotta); font-weight: 700; }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head { padding-top: calc(var(--nav-h) + 64px); padding-bottom: 8px; }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-top: .8rem; }
.page-head .lead { margin-top: 1rem; max-width: 560px; }
.breadcrumb { font-size: .8rem; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--terracotta); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(248,244,238,.74); padding-top: clamp(56px, 7vw, 88px); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(248,244,238,.12); }
.footer__brand .b { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--cream); }
.footer__brand .b .dot { color: var(--terracotta); }
.footer__brand p { font-size: .92rem; margin-top: 14px; max-width: 280px; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-content: center; box-shadow: inset 0 0 0 1px rgba(248,244,238,.2); transition: background .25s, color .25s; }
.footer__social a:hover { background: var(--terracotta); color: #fff; box-shadow: none; }
.footer__col h5 { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col li { font-size: .92rem; transition: color .2s; }
.footer__col a:hover { color: var(--cream); }
.footer__col .hr { display: flex; justify-content: space-between; gap: 12px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-block: 26px; font-size: .8rem; color: rgba(248,244,238,.5); }
.footer__bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--cream); }
.footer__credit em { font-style: normal; color: var(--terracotta); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--cream); padding: 14px 22px; border-radius: 100px;
  box-shadow: var(--shadow-lg); font-size: .9rem; font-weight: 500; z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .dot-ok { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 440px; margin-inline: auto; width: 100%; }
  .hero { min-height: auto; }
  .atouts { grid-template-columns: 1fr; gap: 16px; }
  .menu-preview { grid-template-columns: 1fr; gap: 0 40px; }
  .menu-list { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .resa-layout { grid-template-columns: 1fr; gap: 28px; }
  .panel--sticky { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .cart { display: none; }
  .cart-bar { display: flex; }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    background: var(--cream); padding: calc(var(--nav-h) + 20px) 24px 40px;
    box-shadow: var(--shadow-lg); transform: translateX(105%);
    transition: transform .42s var(--ease); gap: 4px;
  }
  body.menu-open .nav__links { transform: translateX(0); }
  .nav__links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav__links a.is-active::after { display: none; }
  .nav__links a.is-active { background: var(--cream-deep); }
  .nav__burger { display: block; }
  .nav__resa-btn { display: none; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(42,37,33,.4); z-index: 99; opacity: 0; pointer-events: none; transition: opacity .4s; }
  body.menu-open .nav-scrim { opacity: 1; pointer-events: auto; }
  .menu-preview { grid-template-columns: 1fr; }
  .dish-row { grid-template-columns: 56px 1fr auto; }
  .products { grid-template-columns: 1fr; }
  .form-grid.two { grid-template-columns: 1fr; }
  .menu-item { grid-template-columns: 64px 1fr; grid-template-areas: "img name" "img desc" "price price"; row-gap: 4px; }
  .menu-item__img { grid-area: img; width: 64px; height: 64px; }
  .menu-item__price { grid-area: price; margin-top: 6px; }
  .hero__seal { width: 84px; height: 84px; top: -18px; right: 6px; }
  .hero__badge { left: 8px; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  :root { --gut: 18px; }
  .hero__meta { gap: 22px; }
}