/* ============================================================
   MORDU — Street Food  •  Feuille de style partagée
   Démo réalisée par AdopteUnSite
   --------------------------------------------------------
   👉 Modifiez les variables ci-dessous pour rhabiller le site.
   ============================================================ */

:root {
  /* ---- Couleurs ---- */
  --bg:            #FBF6EE;   /* crème chaud */
  --bg-alt:        #F2E9DA;   /* crème plus dense */
  --surface:       #FFFFFF;
  --ink:           #1C1814;   /* presque noir, chaud */
  --ink-soft:      #5C544B;   /* texte secondaire */
  --ink-faint:     #8C8377;   /* labels / légendes */
  --line:          #E6DCCB;   /* bordures */
  --accent:        #E63B2E;   /* rouge tomate */
  --accent-dark:   #BE2C20;
  --accent-2:      #F2B01E;   /* jaune moutarde */
  --accent-3:      #2E7D52;   /* vert frais (touches) */
  --dark:          #181410;   /* sections sombres */
  --dark-soft:     #2A241D;

  /* ---- Typographie ---- */
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body:    "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* ---- Échelle d'espacement ---- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  /* ---- Rayons ---- */
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* ---- Ombres ---- */
  --shadow-sm: 0 2px 8px rgba(28,24,20,.06);
  --shadow:    0 14px 40px -18px rgba(28,24,20,.28);
  --shadow-lg: 0 30px 70px -30px rgba(28,24,20,.40);

  /* ---- Mise en page ---- */
  --container: 1180px;
  --header-h: 76px;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Typographie
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-family: var(--font-body); font-weight: 800; font-size: 1.1rem; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

/* ============================================================
   Layout helpers
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section { padding-block: var(--space-5); }
@media (min-width: 900px) { .section { padding-block: var(--space-6); } }
.section--tight { padding-block: var(--space-4); }
.section-head { max-width: 640px; margin-bottom: var(--space-4); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 0.9rem; }
.section-head h2 { margin-bottom: 0.8rem; }

.grid { display: grid; gap: var(--space-3); }
@media (min-width: 640px)  { .cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px)  { .cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px)  { .cols-4 { grid-template-columns: repeat(4, 1fr); } }

.bg-alt  { background: var(--bg-alt); }
.bg-dark { background: var(--dark); color: #F4EDE2; }
.bg-dark .eyebrow { color: var(--accent-2); }
.bg-dark .eyebrow::before { background: var(--accent-2); }
.bg-dark .muted { color: #C9BEAE; }

/* ============================================================
   Boutons
   ============================================================ */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  padding: 0.85rem 1.6rem;
  border: 2px solid var(--btn-bg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn svg { width: 18px; height: 18px; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  border-color: #fff;
}
.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  border-color: var(--ink);
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.link-arrow {
  font-weight: 800;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.3px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   Header / Navigation (sans JS, responsive en flex-wrap)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-block: 0.85rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand .brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  transform: rotate(-6deg);
}
.brand .brand-mark svg { width: 20px; height: 20px; }
.brand b { color: var(--accent); }

.site-nav { order: 3; width: 100%; }
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.4rem;
  justify-content: center;
}
.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  transition: color .15s ease, background .15s ease;
}
.site-nav a:hover { color: var(--ink); background: var(--bg-alt); }
.site-nav a[aria-current="page"] { color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.header-cta { order: 2; }

@media (min-width: 940px) {
  .site-nav { order: 0; width: auto; }
  .site-nav ul { gap: 0.2rem; }
  .header-cta { order: 0; }
}

/* ============================================================
   Image frame (placeholder appétissant si offline)
   ============================================================ */
.imgwrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--bg-alt), #e3d5bf);
}
.imgwrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HERO (Accueil)
   ============================================================ */
.hero {
  background: var(--dark);
  color: #F6EFE4;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(242,176,30,.18), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(230,59,46,.20), transparent 60%);
}
.hero-inner {
  position: relative;
  display: grid;
  gap: var(--space-4);
  padding-block: var(--space-5);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; padding-block: var(--space-6); }
}
.hero .eyebrow { color: var(--accent-2); }
.hero .eyebrow::before { background: var(--accent-2); }
.hero h1 { color: #fff; margin: 1rem 0 1.2rem; }
.hero h1 em { color: var(--accent-2); font-style: normal; }
.hero p { color: #D8CDBC; font-size: 1.18rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1.8rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stats b { font-family: var(--font-display); font-size: 1.9rem; color: var(--accent-2); display: block; line-height: 1; }
.hero-stats span { font-size: 0.85rem; color: #C9BEAE; }

.hero-media { position: relative; }
.hero-media .imgwrap {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  left: -14px; bottom: 28px;
  background: var(--accent-2);
  color: var(--ink);
  width: 116px; height: 116px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow);
  rotate: -8deg;
  padding: 10px;
}
.hero-badge small { font-family: var(--font-body); font-weight: 800; font-size: 0.62rem; display:block; margin-top: 3px;}

/* ============================================================
   Bandeau marquee (sans JS)
   ============================================================ */
.ticker {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  border-block: 3px solid var(--ink);
}
.ticker ul {
  display: flex;
  gap: 2.5rem;
  padding: 0.7rem 0;
  white-space: nowrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.05rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ticker li { display: inline-flex; align-items: center; gap: 0.7rem; }
.ticker li::before { content: "★"; color: var(--accent-2); }

/* ============================================================
   Cartes produit (menu)
   ============================================================ */
.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.product .imgwrap { aspect-ratio: 4 / 3; border-radius: 0; }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-pill);
}
.product-tag--hot { background: var(--accent); }
.product-tag--veg { background: var(--accent-3); }
.product-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-body h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.1rem; text-transform: none; letter-spacing: 0; }
.product-body p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.price { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); }
.price small { font-size: 0.85rem; color: var(--ink-faint); }

/* ============================================================
   Stats strip
   ============================================================ */
.stats { display: grid; gap: var(--space-3); text-align: center; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4,1fr); } }
.stat b { font-family: var(--font-display); font-size: clamp(2.6rem,5vw,3.6rem); display: block; line-height: 1; color: var(--accent); }
.bg-dark .stat b { color: var(--accent-2); }
.stat span { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.78rem; color: var(--ink-faint); }
.bg-dark .stat span { color: #C9BEAE; }

/* ============================================================
   Timeline (process)
   ============================================================ */
.timeline { display: grid; gap: var(--space-3); counter-reset: step; }
@media (min-width: 760px) { .timeline { grid-template-columns: repeat(4,1fr); } }
.tl-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.4rem 1.5rem;
}
.tl-step::before {
  counter-increment: step;
  content: counter(step,decimal-leading-zero);
  position: absolute;
  top: -22px; left: 1.4rem;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  border-radius: 14px;
  rotate: -6deg;
  box-shadow: var(--shadow-sm);
}
.tl-step h3 { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 1.15rem; font-weight: 800; margin-bottom: 0.4rem; }
.tl-step p { font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   Comparatif (tableau)
   ============================================================ */
.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.compare caption { caption-side: top; text-align: left; padding-bottom: 1rem; color: var(--ink-soft); }
.compare th, .compare td { padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--ink); color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; }
.compare thead th.is-us { background: var(--accent); }
.compare tbody th { font-weight: 700; }
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom: 0; }
.compare td.is-us { background: color-mix(in srgb, var(--accent) 8%, #fff); font-weight: 700; }
.compare .yes { color: var(--accent-3); font-weight: 800; }
.compare .no  { color: var(--ink-faint); }
.compare svg { width: 20px; height: 20px; display: inline; vertical-align: middle; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ============================================================
   Tarifs / formules
   ============================================================ */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card--featured { background: var(--ink); color: #fff; border-color: var(--ink); position: relative; }
.price-card--featured .price-amount { color: var(--accent-2); }
.price-card--featured .muted { color: #C9BEAE; }
.price-flag {
  position: absolute; top: -14px; right: 1.6rem;
  background: var(--accent-2); color: var(--ink);
  font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 0.35rem 0.9rem; border-radius: var(--radius-pill);
}
.price-card h3 { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 1.3rem; font-weight: 800; }
.price-amount { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--accent); }
.price-amount small { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--ink-faint); }
.price-list { display: flex; flex-direction: column; gap: 0.6rem; margin: 0.4rem 0 0.8rem; }
.price-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.96rem; }
.price-list svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--accent-3); }
.price-card--featured .price-list svg { color: var(--accent-2); }

/* ============================================================
   FAQ accordéon (CSS pur : details / summary)
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 0.8rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: color-mix(in srgb, var(--accent) 40%, var(--line)); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq-body { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); }

/* ============================================================
   Témoignages
   ============================================================ */
.testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testi .stars { color: var(--accent-2); letter-spacing: 2px; font-size: 1rem; }
.testi blockquote { font-size: 1.05rem; font-weight: 500; }
.testi figcaption { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.1rem;
  flex: none;
}
.testi cite { font-style: normal; font-weight: 800; display: block; }
.testi figcaption span { font-size: 0.85rem; color: var(--ink-faint); }

/* ============================================================
   Galerie (portfolio)
   ============================================================ */
.gallery { display: grid; gap: 0.9rem; grid-template-columns: repeat(2,1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4,1fr); } }
.gallery .imgwrap { aspect-ratio: 1; }
.gallery .tall { grid-row: span 2; aspect-ratio: auto; }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery figure .imgwrap { border-radius: var(--radius); height: 100%; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(24,20,16,.82));
  color: #fff; font-weight: 800;
  font-size: 0.92rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============================================================
   Avant / Après
   ============================================================ */
.beforeafter { display: grid; gap: 1rem; }
@media (min-width: 700px) { .beforeafter { grid-template-columns: 1fr 1fr; } }
.ba-card { position: relative; }
.ba-card .imgwrap { aspect-ratio: 16/11; }
.ba-tag {
  position: absolute; top: 12px; left: 12px;
  background: #fff; color: var(--ink);
  font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 0.35rem 0.8rem; border-radius: var(--radius-pill);
}
.ba-card--after .ba-tag { background: var(--accent); color: #fff; }

/* ============================================================
   Article / blog
   ============================================================ */
.post {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post .imgwrap { aspect-ratio: 16/10; border-radius: 0; }
.post-body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.post-meta { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); }
.post-body h3 { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 1.22rem; font-weight: 800; line-height: 1.25; }
.post-body p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }

.post-featured { display: grid; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 820px) { .post-featured { grid-template-columns: 1.1fr 1fr; } }
.post-featured .imgwrap { aspect-ratio: 16/11; border-radius: 0; min-height: 260px; }
.post-featured .pf-body { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; justify-content: center; }

/* ============================================================
   Split / texte + image
   ============================================================ */
.split { display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } }
.split--reverse .split-media { order: -1; }
@media (min-width: 880px) { .split--reverse .split-media { order: 0; } }
.split-media .imgwrap { aspect-ratio: 5/4; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-body h2 { margin-bottom: 1rem; }
.split-body .lead { margin-bottom: 1.4rem; }

/* listes de valeurs / features */
.feature-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.4rem; }
.feature-list li { display: flex; gap: 1rem; align-items: flex-start; }
.feature-list .ic {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, #fff);
  color: var(--accent);
  border-radius: 14px;
}
.feature-list .ic svg { width: 22px; height: 22px; }
.feature-list h4 { margin-bottom: 0.15rem; }
.feature-list p { font-size: 0.94rem; color: var(--ink-soft); }

/* ============================================================
   Menu list (prix en ligne)
   ============================================================ */
.menu-list { display: flex; flex-direction: column; }
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row h4 { font-size: 1.08rem; }
.menu-row .desc { grid-column: 1 / 2; font-size: 0.9rem; color: var(--ink-soft); }
.menu-row .menu-price { font-family: var(--font-display); font-size: 1.35rem; color: var(--accent); }
.menu-cat-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.menu-cat-tabs span {
  font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 0.5rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--line);
}
.menu-cat-tabs span:first-child { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(255,255,255,.16), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-band p { color: #FBE4E0; max-width: 52ch; margin: 0 auto 1.8rem; font-size: 1.1rem; }
.cta-band .btn--light { color: var(--accent); }

/* ============================================================
   Formulaire de contact
   ============================================================ */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 800; font-size: 0.9rem; }
.field .req { color: var(--accent); }
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font-size: 1rem;
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-hint { font-size: 0.82rem; color: var(--ink-faint); }
.checkbox-field { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1.3rem; }
.checkbox-field input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.checkbox-field label { font-weight: 500; font-size: 0.9rem; color: var(--ink-soft); }

.info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1.4rem;
}
.info-card h3 { color: #fff; }
.info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-item .ic { width: 42px; height: 42px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,.08); border-radius: 12px; color: var(--accent-2); }
.info-item .ic svg { width: 20px; height: 20px; }
.info-item b { display: block; }
.info-item span { color: #C9BEAE; font-size: 0.92rem; }
.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 0.95rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list span { color: var(--accent-2); font-weight: 700; }

/* ============================================================
   Page hero (intérieur)
   ============================================================ */
.page-hero { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-hero .container { padding-block: var(--space-5); }
.breadcrumb { font-size: 0.85rem; font-weight: 700; color: var(--ink-faint); margin-bottom: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.page-hero h1 { margin-bottom: 1rem; max-width: 16ch; }
.page-hero p { max-width: 56ch; font-size: 1.15rem; color: var(--ink-soft); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--dark); color: #D8CDBC; padding-top: var(--space-5); }
.footer-grid { display: grid; gap: var(--space-4); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand b { color: var(--accent-2); }
.footer-about p { font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { color: #fff; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.95rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent-2); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.7rem; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--accent-2); }
.socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  transition: background .15s ease, transform .15s ease;
}
.socials a:hover { background: var(--accent); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: #9D9384;
}
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Utilitaires divers
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.8rem 1.2rem;
  z-index: 100; border-radius: 0 0 8px 0; font-weight: 800;
}
.skip-link:focus { left: 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--surface); border: 1px solid var(--line);
  padding: 0.45rem 0.9rem; border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 700;
}
.badge svg { width: 16px; height: 16px; color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
