:root {
  --red: #c41e3a;
  --red-dark: #a01830;
  --gold: #d99528;
  --gold-dark: #b87e1c;
  --green: #2d8a4e;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --header-h: 64px;
  --max-w: 1140px;
  --font: 'Poppins', sans-serif;
  --font-title: 'Playfair Display', serif;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
}

/* ---------- Light theme (default) ---------- */
[data-theme="light"] {
  --bg: #faf6f1;
  --bg-alt: #f3ede4;
  --bg-card: #ffffff;
  --ink: #1a1a1a;
  --ink-2: #5a555c;
  --ink-3: #8a868e;
  --line: rgba(0,0,0,.08);
  --header-bg: rgba(255,255,255,.92);
  --overlay-strong: linear-gradient(180deg, rgba(20,18,23,.45) 0%, rgba(20,18,23,.75) 60%, rgba(20,18,23,.9) 100%);
  --hero-text: #ffffff;
  --cat-overlay: linear-gradient(180deg, rgba(20,18,23,.05) 40%, rgba(20,18,23,.55) 100%);
  --icon-bg: rgba(196,30,58,.10);
}

/* ---------- Dark theme ---------- */
[data-theme="dark"] {
  --bg: #141217;
  --bg-alt: #1e1c22;
  --bg-card: #1e1c22;
  --ink: #ffffff;
  --ink-2: #b8b4bc;
  --ink-3: #8a868e;
  --line: rgba(255,255,255,.06);
  --header-bg: rgba(20,18,23,.92);
  --overlay-strong: linear-gradient(180deg, rgba(20,18,23,.55) 0%, rgba(20,18,23,.8) 60%, #141217 100%);
  --hero-text: #ffffff;
  --cat-overlay: linear-gradient(180deg, rgba(20,18,23,.05) 40%, rgba(20,18,23,.55) 100%);
  --icon-bg: rgba(196,30,58,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; overflow-x: hidden; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; overflow-x: hidden; transition: background .3s, color .3s; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(92%, var(--max-w)); margin: 0 auto; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-top {
  height: 32px; background: var(--red); color: #fff;
  display: flex; align-items: center; font-size: .78rem;
  transition: height .3s, opacity .3s;
}
.header.scrolled .header-top { height: 0; opacity: 0; overflow: hidden; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.header-top .container > span:first-child { margin-left: 10px; }
.header-top-right { margin-right: 10px; }
.header-top a { color: #fff; }
.header-top a:hover { opacity: .8; }
.header-top i { margin-right: 5px; }
.header-main { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-title); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.logo-icon { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; border-radius: var(--radius-sm); font-size: .9rem; box-shadow: 0 2px 12px rgba(196,30,58,.3); }

/* ---------- Navigation ---------- */
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { font-size: .9rem; font-weight: 500; color: var(--ink-2); transition: color .2s, box-shadow .2s, background .2s; position: relative; }
.nav a:not(.cta-nav):not(.nav-delivery) { padding: 8px 14px; border-radius: 50px; }
.nav a::after { display: none; }
.nav a:not(.cta-nav):not(.nav-delivery):hover, .nav a:not(.cta-nav):not(.nav-delivery):focus-visible, .nav a.active:not(.cta-nav):not(.nav-delivery) { color: var(--red); box-shadow: inset 0 0 0 2px var(--gold); background: rgba(217,149,40,.06); }
.nav a.cta-nav { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff !important; padding: 9px 18px; border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 16px rgba(196,30,58,.25); transition: transform .2s, box-shadow .2s; }
.nav a.cta-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(196,30,58,.35); }
.nav a.cta-nav::after { display: none; }
.nav a.nav-delivery { background: #000; color: #fff !important; padding: 9px 18px; border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: transform .2s, background .2s; }
.nav a.nav-delivery:hover { background: #1f1f1f; transform: translateY(-1px); }
.nav a.nav-delivery i { color: #00b14f; margin-right: 0; font-size: .85rem; }
.theme-toggle { background: none; border: 1px solid var(--line); color: var(--ink-2); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: .95rem; display: flex; align-items: center; justify-content: center; transition: .2s; flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Hamburger ---------- */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 200; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: var(--overlay-strong); }
.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 0 20px; color: var(--hero-text); }
.hero-badge { display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; background: rgba(217,149,40,.12); padding: 8px 20px; border-radius: 50px; border: 1px solid rgba(217,149,40,.25); }
.hero h1 { font-family: var(--font-title); font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.88); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: .92rem; transition: transform .2s, box-shadow .2s; cursor: pointer; border: none; font-family: var(--font); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 4px 20px rgba(196,30,58,.3); }
.btn-primary:hover { box-shadow: 0 6px 28px rgba(196,30,58,.4); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #1a1a1a; box-shadow: 0 4px 20px rgba(217,149,40,.25); }
.btn-gold:hover { box-shadow: 0 6px 28px rgba(217,149,40,.35); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-delivery { background: #000; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.btn-delivery:hover { background: #1f1f1f; }
.btn-delivery i { color: #00b14f; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: -48px auto 0; max-width: var(--max-w); width: 92%; position: relative; z-index: 3; }
.feature-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 18px; text-align: center; transition: transform .25s, border-color .25s; box-shadow: var(--shadow); }
.feature-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.feature-icon { width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 1.05rem; margin-bottom: 14px; color: var(--red); background: var(--icon-bg); }
.feature-icon.gold { color: var(--gold); background: rgba(217,149,40,.12); }
.feature-icon.green { color: var(--green); background: rgba(45,138,78,.12); }
.feature-card h3 { font-size: .95rem; margin-bottom: 4px; color: var(--ink); }
.feature-card p { font-size: .82rem; color: var(--ink-3); }

/* ---------- Section Titles ---------- */
.section { padding: 70px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-num { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-head h2 { font-family: var(--font-title); font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 700; color: var(--ink); }
.section-head p { color: var(--ink-3); margin-top: 10px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- Categories Grid ---------- */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 60px; }
.category-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; display: flex; flex-direction: column; text-decoration: none; box-shadow: var(--shadow); }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.category-card .cat-visual { height: 190px; background-size: cover; background-position: center; position: relative; }
.category-card .cat-visual::after { content: ''; position: absolute; inset: 0; background: var(--cat-overlay); }
.category-card .cat-visual .cat-label { position: absolute; left: 18px; bottom: 14px; z-index: 2; color: #fff; font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.category-card .cat-visual.icon-tile { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--red), var(--red-dark)); }
.category-card .cat-visual.icon-tile.dessert { background: linear-gradient(135deg, #9b5de5, #7b2cbf); }
.category-card .cat-visual.icon-tile.boisson { background: linear-gradient(135deg, #0096c7, #0077b6); }
.category-card .cat-visual.icon-tile i { font-size: 3.2rem; color: #fff; z-index: 2; filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); }
.category-card .cat-visual.icon-tile::after { display: none; }
.category-card .cat-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.category-card h3 { font-family: var(--font-title); font-size: 1.15rem; margin-bottom: 6px; color: var(--ink); }
.category-card p { font-size: .85rem; color: var(--ink-3); flex: 1; line-height: 1.5; }
.category-card .cat-link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--gold); margin-top: 14px; transition: gap .2s; }
.category-card:hover .cat-link { gap: 10px; }

/* ---------- Review / Avis section ---------- */
.review-section { position: relative; padding: 80px 20px; text-align: center; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-stars { display: flex; justify-content: center; gap: 7px; margin-bottom: 16px; color: var(--gold); font-size: 1.5rem; }
.review-section .section-num { color: var(--red); }
.review-section h2 { font-family: var(--font-title); font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.review-section p { color: var(--ink-3); max-width: 560px; margin: 0 auto 30px; line-height: 1.7; }
.review-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.review-note { margin-top: 20px; font-size: .8rem; color: var(--ink-3); }

/* ---------- Page Hero ---------- */
.page-hero { position: relative; min-height: 280px; display: flex; align-items: center; justify-content: center; text-align: center; margin-top: calc(var(--header-h) + 32px); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--overlay-strong); z-index: 1; }
.page-hero h1 { font-family: var(--font-title); font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 700; position: relative; z-index: 2; color: #fff; }
.page-hero p { position: relative; z-index: 2; color: rgba(255,255,255,.85); margin-top: 8px; }

/* ---------- Menu subnav ---------- */
.menu-subnav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 30px 0 4px; }
.menu-subnav a { padding: 9px 20px; border-radius: 50px; border: 1px solid var(--line); background: var(--bg-card); color: var(--ink-2); font-size: .85rem; font-weight: 500; transition: .2s; }
.menu-subnav a:hover, .menu-subnav a.active { border-color: var(--gold); color: var(--gold); }

/* ---------- Menu Section ---------- */
.menu-section { padding: 50px 0; border-bottom: 1px solid var(--line); }
.menu-section:last-of-type { border-bottom: none; }
.menu-category-title { font-family: var(--font-title); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: 12px; margin-bottom: 6px; color: var(--ink); }
.menu-category-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--red), var(--red-dark)); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; overflow: hidden; }
.menu-category-icon img { width: 82%; height: 82%; object-fit: contain; }
.menu-category-desc { color: var(--ink-3); font-size: .9rem; margin-bottom: 20px; }
.menu-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.menu-table th { text-align: left; padding: 12px 14px; background: var(--bg-alt); color: var(--ink-3); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; }
.menu-table th:first-child { border-radius: var(--radius-xs) 0 0 0; }
.menu-table th:last-child { border-radius: 0 var(--radius-xs) 0 0; }
.menu-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); color: var(--ink); }
.menu-table tr:hover td { background: var(--bg-alt); }
.menu-table .item-name { font-weight: 600; }
.menu-table .item-desc { font-size: .82rem; color: var(--ink-3); }
.supplement { margin-top: 16px; padding: 12px 16px; background: rgba(217,149,40,.1); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-xs) var(--radius-xs) 0; font-size: .85rem; color: var(--ink-2); }
.supplement i { color: var(--gold); margin-right: 6px; }
.menu-toggle-wrap { display: flex; gap: 8px; margin-bottom: 20px; }
.menu-toggle { padding: 8px 18px; border-radius: 50px; border: 1px solid var(--line); background: transparent; color: var(--ink-3); font-size: .82rem; font-weight: 500; cursor: pointer; transition: .2s; font-family: var(--font); }
.menu-toggle:hover { border-color: var(--gold); color: var(--gold); }
.menu-toggle.active { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }

/* ---------- About ---------- */
.about-section { padding: 70px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-family: var(--font-title); font-size: 2rem; color: var(--ink); margin-bottom: 16px; }
.about-text p { color: var(--ink-2); margin-bottom: 12px; line-height: 1.7; }
.about-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-list div { padding: 10px 0; color: var(--ink); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.about-list i { color: var(--gold); font-size: 1.1rem; }
.about-image img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }

/* ---------- Stats ---------- */
.stats-section { background: var(--bg-alt); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-number { font-family: var(--font-title); font-size: 2.2rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.stat-label { color: var(--ink-3); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-section { padding: 70px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2, .contact-map h2 { font-family: var(--font-title); font-size: 1.8rem; color: var(--ink); margin-bottom: 20px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; gap: 16px; align-items: center; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; transition: border-color .2s; }
.contact-item:hover { border-color: var(--gold); }
.contact-item .ci-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--icon-bg); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item strong { color: var(--ink); display: block; margin-bottom: 2px; }
.contact-item div:last-child { font-size: .92rem; color: var(--ink-2); }
.contact-item a { color: var(--gold); }
.contact-item a:hover { opacity: .75; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 60px 20px; text-align: center; background: linear-gradient(135deg, rgba(196,30,58,.1), rgba(217,149,40,.08)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-banner h2 { font-family: var(--font-title); font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 10px; color: var(--ink); }
.cta-banner p { color: var(--ink-3); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: var(--ink-3); line-height: 1.6; }
.footer h4 { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-3); margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li, .footer ul a { font-size: .88rem; color: var(--ink-2); transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--red); margin-top: 3px; min-width: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); font-size: .78rem; color: var(--ink-3); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--ink-3); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-credit { width: 100%; text-align: center; margin-top: 14px; font-size: .72rem; color: var(--ink-3); opacity: .8; }

/* ---------- Fade-in ---------- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { position: fixed; top: 0; right: 0; width: 300px; height: 100vh; background: var(--bg-card); flex-direction: column; align-items: flex-start; padding: 80px 30px 30px; gap: 0; border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .3s ease; z-index: 99; }
  .nav.open { transform: translateX(0); }
  .nav a { display: flex; align-items: center; font-size: 1rem; border-bottom: 1px solid var(--line); width: 100%; transition: color .2s, box-shadow .2s; -webkit-tap-highlight-color: transparent; }
  .nav a:not(.cta-nav):not(.nav-delivery) { padding: 14px 12px; border-radius: var(--radius-sm); }
  .nav a::after { display: none; }
  .nav a:not(.cta-nav):not(.nav-delivery):hover, .nav a:not(.cta-nav):not(.nav-delivery):focus-visible { color: var(--red); box-shadow: inset 0 0 0 2px var(--gold); background: rgba(217,149,40,.06); }
  .nav a.cta-nav { margin-top: 16px; text-align: center; justify-content: center; width: 100%; }
  .nav a.nav-delivery { margin-top: 10px; text-align: center; justify-content: center; width: 100%; }
  .hamburger { display: block; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-table { font-size: .82rem; }
  .menu-table th, .menu-table td { padding: 8px 10px; }
}
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .page-hero { min-height: 220px; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Tableau carte empilé sur petit écran ---------- */
@media (max-width: 520px) {
  .menu-table, .menu-table tbody, .menu-table tr, .menu-table td { display: block; width: 100%; }
  .menu-table thead { display: none; }
  .menu-table tr { background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; padding: 4px 14px; }
  .menu-table td { border: none; border-bottom: 1px dashed var(--line); padding: 8px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
  .menu-table tr td:last-child { border-bottom: none; }
  .menu-table td::before { content: attr(data-label); color: var(--ink-3); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; flex-shrink: 0; }
  .menu-table td.item-name { font-size: 1.02rem; color: var(--ink); }
  .menu-table td.item-name::before { display: none; }
  .menu-table td.item-desc { font-size: .8rem; }
  .menu-toggle-wrap { flex-wrap: wrap; }
}

/* ---------- Réglages fins très petits écrans (320px) ---------- */
@media (max-width: 380px) {
  .header-main { padding: 0 12px; }
  .logo { font-size: 1.05rem; gap: 8px; }
  .logo-icon { width: 32px; height: 32px; font-size: .8rem; }
  .theme-toggle { width: 34px; height: 34px; }
  .hero-content { padding: 0 14px; }
  .hero-badge { font-size: .68rem; letter-spacing: 1px; padding: 6px 14px; }
  .hero h1 { font-size: 2rem; }
  .btn { padding: 12px 22px; font-size: .88rem; }
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 32px; }
  .cat-visual { height: 158px; }
  .review-section { padding: 56px 16px; }
  .review-actions .btn { width: 100%; justify-content: center; }
  .stat-number { font-size: 1.8rem; }
  .contact-item { padding: 14px 16px; gap: 12px; }
  .cta-banner .btn { width: 100%; justify-content: center; max-width: 280px; margin: 0 auto; }
}

/* ---------- Zones (SEO local) ---------- */
.zones-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.zone-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 50px; background: var(--bg-card); border: 1px solid var(--line); font-size: .92rem; color: var(--ink-2); font-weight: 500; }
.zone-chip i { color: var(--red); font-size: .8rem; }
.zones-text { margin-top: 28px; max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; color: var(--ink-3); font-size: .95rem; line-height: 1.75; }
.zones-text strong { color: var(--ink); }
@media (max-width: 520px) { .zone-chip { padding: 8px 14px; font-size: .85rem; } }

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(196,30,58,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
  z-index: 999;
}
#backToTop:hover {
  background: var(--red-dark);
  transform: translateY(0);
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 520px) {
  #backToTop {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ---------- Footer : secteur (discret, SEO, visible clair + sombre) ---------- */
.footer-sector {
  border-top: 1px solid var(--line);
  padding: 18px 0 12px;
  text-align: center;
}
.footer-sector-title {
  margin: 0 0 8px;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer-sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-sector-chips span {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: .74rem;
  color: var(--ink-2);
}
.footer-sector-text {
  margin: 0;
  font-size: .76rem;
  color: var(--ink-3);
}
@media (max-width: 520px) {
  .footer-sector { font-size: .74rem; }
  .footer-sector-chips span { font-size: .68rem; padding: 2px 8px; }
}
