/* ==========================================================================
   CHRONO PIZZA 38 — Design System & Stylesheet
   Grenoble & Saint-Martin-d'Hères
   ========================================================================== */

/* ---------- 1. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- 2. DESIGN TOKENS ---------- */
:root {
  /* Couleurs de marque */
  --red-passion: #C8102E;
  --red-passion-dark: #A50D25;
  --red-passion-light: #FDEBEC;
  --blue-deep: #0D233A;
  --blue-deep-light: #16324F;
  --gold: #FFB300;
  --gold-dark: #E5A100;

  /* Neutres */
  --white: #FFFFFF;
  --bg-soft: #F8F9FA;
  --bg-soft-2: #F1F3F5;
  --border: #E7E9EC;
  --text: #1A1A1A;
  --text-muted: #5A6472;
  --text-on-dark: #F4F6F8;
  --text-on-dark-muted: #B8C2CE;

  /* États */
  --success: #1E8E5A;
  --star: #FFB300;

  /* Typo */
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", "Plus Jakarta Sans", ui-sans-serif, Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, Roboto, Helvetica, Arial, sans-serif;

  /* Rayons & ombres */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(13, 35, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(13, 35, 58, 0.10);
  --shadow-lg: 0 12px 32px rgba(13, 35, 58, 0.16);

  /* Layout */
  --container-max: 1180px;
  --header-h: 76px;
  --mobile-bar-h: 60px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
}

/* ---------- 3. BASE ---------- */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  padding-bottom: var(--mobile-bar-h);
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.15; color: var(--blue-deep); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.25rem); }
h2 { font-size: clamp(1.6rem, 2.5vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.5vw + 1rem, 1.5rem); }
p { color: var(--text-muted); }
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--space-4); }
section { padding-block: var(--space-7); }
.section-head { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: var(--space-6); }
.section-head p { margin-top: var(--space-2); font-size: 1.05rem; }
.eyebrow { display: inline-block; color: var(--red-passion); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; margin-bottom: var(--space-2); }
.bg-soft { background: var(--bg-soft); }
.bg-deep { background: var(--blue-deep); color: var(--text-on-dark); }
.bg-deep h2, .bg-deep h3 { color: var(--white); }
.bg-deep p { color: var(--text-on-dark-muted); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 8px; top: -60px; background: var(--red-passion); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-sm); z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* ---------- 4. BOUTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 14px 26px; border-radius: var(--radius-pill); font-weight: 700; font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary { background: var(--red-passion); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-passion-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--blue-deep); border: 2px solid var(--blue-deep); }
.btn-secondary:hover { background: var(--blue-deep); color: #fff; }
.btn-gold { background: var(--gold); color: var(--blue-deep); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---------- 5. HEADER ---------- */
.top-bar {
  background: var(--blue-deep); color: var(--text-on-dark-muted); font-size: 0.82rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; padding-block: 8px; gap: var(--space-3); flex-wrap: wrap; }
.top-bar-calls { display: flex; gap: var(--space-4); }
.top-bar-calls a { color: var(--text-on-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.top-bar-calls a:hover { color: var(--gold); }
.top-bar-calls svg { width: 14px; height: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  box-shadow: var(--shadow-sm); height: var(--header-h);
}
.site-header .container { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--blue-deep); }
.logo .logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo span { color: var(--red-passion); }

.main-nav { display: flex; align-items: stretch; margin-left: auto; }
.main-nav ul { display: flex; align-items: stretch; gap: var(--space-4); }
.main-nav ul > li { display: flex; align-items: center; }
.main-nav a {
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-weight: 600; font-size: 0.95rem; line-height: 1.25; color: var(--blue-deep);
  padding: 8px 4px; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red-passion);
  transform: scaleX(0); transition: transform .2s ease; transform-origin: left;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--red-passion); }

.header-ctas { display: flex; align-items: center; gap: var(--space-3); }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px;
  border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blue-deep); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.has-dropdown { position: relative; }
.has-dropdown > a { flex-wrap: wrap; gap: 4px; }
.has-dropdown > a svg { width: 14px; height: 14px; transition: transform .15s ease; }
.has-dropdown:hover > a svg, .has-dropdown:focus-within > a svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md); min-width: 240px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .15s ease, transform .15s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 12px; border-radius: 6px; font-weight: 600; font-size: 0.9rem; }
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--bg-soft); color: var(--red-passion); }

/* ---------- 6. MOBILE STICKY ORDER BAR ---------- */
.mobile-order-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; display: none;
  background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(13,35,58,.12);
  height: var(--mobile-bar-h);
}
.mobile-order-bar .row { display: flex; height: 100%; }
.mobile-order-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.88rem; color: #fff;
}
.mobile-order-bar a.call-grenoble { background: var(--red-passion); }
.mobile-order-bar a.call-smh { background: var(--blue-deep); }
.mobile-order-bar svg { width: 18px; height: 18px; }

/* ---------- 7. HERO ---------- */
.hero {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-deep-light) 55%, #1a3a5c 100%);
  color: var(--white); position: relative; overflow: hidden;
  padding-block: var(--space-8) var(--space-7);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background-image: radial-gradient(circle at 15% 20%, var(--gold) 0, transparent 40%),
                     radial-gradient(circle at 85% 80%, var(--red-passion) 0, transparent 45%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-6); align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.hero h1 { color: #fff; margin-bottom: var(--space-3); }
.hero-lead { color: var(--text-on-dark-muted); font-size: 1.15rem; max-width: 52ch; margin-bottom: var(--space-5); }
.hero-info { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-5); }
.hero-info-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.92rem; }
.hero-info-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.hero-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--red-passion), var(--gold));
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.hero-visual svg { width: 55%; height: 55%; opacity: .95; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 8. BADGES ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 12px; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.badge-new { background: var(--gold); color: var(--blue-deep); }
.badge-popular { background: var(--red-passion); color: #fff; }
.badge-halal { background: #E8F5EE; color: var(--success); }
.badge-veggie { background: #E8F5EE; color: var(--success); }
.badge-outline { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.badge-soft { background: var(--red-passion-light); color: var(--red-passion); }

/* ---------- 9. CARDS GENERIQUES ---------- */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Grille de restaurants (accueil) */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.location-card { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.location-card .loc-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--red-passion-light);
  display: flex; align-items: center; justify-content: center;
}
.location-card .loc-icon svg { width: 28px; height: 28px; color: var(--red-passion); }
.location-card h3 { margin-top: var(--space-2); }
.location-card ul { display: flex; flex-direction: column; gap: 8px; margin-block: var(--space-2); }
.location-card li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--text-muted); align-items: flex-start; }
.location-card li svg { width: 18px; height: 18px; color: var(--red-passion); flex-shrink: 0; margin-top: 2px; }
.location-card .btn-group { margin-top: var(--space-2); }

/* Top produits / mise en avant */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-media {
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--bg-soft-2), var(--bg-soft)); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.product-media svg { width: 40%; height: 40%; color: var(--red-passion); opacity: .85; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media .badge { position: absolute; top: 10px; left: 10px; z-index: 1; }
.product-body { padding: var(--space-4); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h3 { font-size: 1.05rem; }
.product-body p { font-size: 0.88rem; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: var(--space-2); }
.price { font-family: var(--font-heading); font-weight: 800; color: var(--red-passion); font-size: 1.15rem; }

/* ---------- 10. MENU / CARTE (filtrable) ---------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: var(--space-6); }
.menu-tab {
  padding: 10px 20px; border-radius: var(--radius-pill); background: var(--bg-soft-2); color: var(--blue-deep);
  font-weight: 700; font-size: 0.9rem; border: 2px solid transparent; transition: all .15s ease;
}
.menu-tab:hover { background: var(--bg-soft); }
.menu-tab[aria-selected="true"] { background: var(--red-passion); color: #fff; }

.menu-category { margin-bottom: var(--space-7); }
.menu-category-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-4); border-bottom: 3px solid var(--gold); padding-bottom: 10px; }
.menu-category-head h2, .menu-category-head h3 { margin: 0; }
.menu-category-head .count { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-5); }
.menu-item {
  display: flex; justify-content: space-between; gap: var(--space-3); padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--border);
}
.menu-item-info h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.menu-item-info p { font-size: 0.85rem; margin-top: 3px; }
.menu-item-price { font-weight: 800; color: var(--red-passion); white-space: nowrap; font-family: var(--font-heading); }
.menu-note {
  background: var(--bg-soft); border-left: 4px solid var(--gold); padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: var(--space-5);
}

/* ---------- 11. ACCORDEON (FAQ, mobile menu categories) ---------- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-3);
  padding: var(--space-4) 0; text-align: left; font-weight: 700; color: var(--blue-deep); font-size: 1.02rem;
}
.accordion-trigger svg { width: 22px; height: 22px; flex-shrink: 0; transition: transform .2s ease; color: var(--red-passion); }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion-panel-inner { padding-bottom: var(--space-4); color: var(--text-muted); }

/* ---------- 12. AVIS GOOGLE ---------- */
.reviews-summary {
  display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; justify-content: center;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-5); box-shadow: var(--shadow-sm); max-width: 720px; margin-inline: auto;
}
.reviews-score { text-align: center; }
.reviews-score .num { font-family: var(--font-heading); font-size: 2.75rem; font-weight: 800; color: var(--blue-deep); line-height: 1; }
.stars { display: flex; gap: 2px; margin-block: 6px; }
.stars svg { width: 20px; height: 20px; color: var(--star); }
.reviews-score .count { font-size: 0.85rem; color: var(--text-muted); }
.reviews-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-5); }
.review-card { padding: var(--space-4); }
.review-card .stars { margin-bottom: 8px; }
.review-card p { font-size: 0.92rem; color: var(--text); }
.review-card .author { margin-top: var(--space-3); font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }

/* ---------- 13. ZONE LIVRAISON / HORAIRES ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.info-box { padding: var(--space-5); text-align: center; }
.info-box .icon-circle {
  width: 56px; height: 56px; border-radius: 50%; background: var(--blue-deep); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-bottom: var(--space-3);
}
.info-box .icon-circle svg { width: 28px; height: 28px; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: var(--space-3); }
.hours-table td { padding: 8px 4px; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.hours-table td:first-child { font-weight: 700; color: var(--blue-deep); text-align: left; }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }

/* ---------- 14. CTA BAND ---------- */
.cta-band { background: var(--red-passion); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: var(--space-5); }
.cta-band .btn-group { justify-content: center; }

/* ---------- 15. FORMULAIRES ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.88rem; color: var(--blue-deep); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 0.95rem;
  background: var(--white); transition: border-color .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--red-passion); outline: none; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); }
.form-required::after { content: " *"; color: var(--red-passion); }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: var(--space-3); }
.form-success, .form-error {
  padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); font-weight: 600; margin-bottom: var(--space-4); display: none;
}
.form-success { background: #E8F5EE; color: var(--success); }
.form-error { background: #FDEBEC; color: var(--red-passion-dark); }

/* ---------- 16. MAPS / ADRESSE ---------- */
.map-embed {
  aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.address-block { display: flex; flex-direction: column; gap: var(--space-3); }
.address-block .row { display: flex; gap: 12px; align-items: flex-start; }
.address-block svg { width: 22px; height: 22px; color: var(--red-passion); flex-shrink: 0; margin-top: 2px; }
.address-block h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 2px; }

/* ---------- 17. BREADCRUMB ---------- */
.breadcrumb { padding-block: var(--space-3); font-size: 0.85rem; color: var(--text-muted); background: var(--bg-soft); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb a { color: var(--text-muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--red-passion); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--border); }
.breadcrumb li[aria-current="page"] { color: var(--blue-deep); font-weight: 700; }

/* ---------- 18. PAGE HEADER (pages internes) ---------- */
.page-header { background: var(--bg-soft); padding-block: var(--space-6); text-align: center; border-bottom: 1px solid var(--border); }
.page-header p { max-width: 640px; margin: var(--space-2) auto 0; }

/* ---------- 19. FOOTER ---------- */
.site-footer { background: var(--blue-deep); color: var(--text-on-dark-muted); padding-top: var(--space-7); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-5); padding-bottom: var(--space-6); }
.footer-brand .logo { color: #fff; margin-bottom: var(--space-3); }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { max-width: 32ch; font-size: 0.9rem; }
.footer-social { display: flex; gap: 10px; margin-top: var(--space-4); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.footer-social a:hover { background: var(--red-passion); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: var(--space-3); font-family: var(--font-heading); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-block: var(--space-4); font-size: 0.8rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2);
}
.footer-bottom a:hover { color: #fff; }

/* ---------- 20. 404 ---------- */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-page .pizza-slice { width: 140px; height: 140px; margin-inline: auto; margin-bottom: var(--space-4); color: var(--red-passion); }
.error-code { font-family: var(--font-heading); font-size: 5rem; font-weight: 800; color: var(--blue-deep); line-height: 1; }

/* ---------- 21. LEGAL PAGES ---------- */
.legal-content { max-width: 780px; margin-inline: auto; }
.legal-content h2 { margin-top: var(--space-6); margin-bottom: var(--space-3); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: var(--space-3); }
.legal-content ul { padding-left: var(--space-4); list-style: disc; }

/* ---------- 21b. LEGENDE & TABLEAUX SPECIFIQUES ---------- */
.legend { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-bottom: var(--space-6); }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-table th, .pricing-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.pricing-table th { background: var(--blue-deep); color: #fff; font-family: var(--font-heading); font-size: 0.85rem; text-transform: uppercase; letter-spacing: .04em; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child, .pricing-table th:last-child { text-align: right; font-weight: 800; color: var(--red-passion); font-family: var(--font-heading); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.steps-list { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.step-card { padding: var(--space-5); text-align: center; position: relative; }
.step-card::before {
  counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--red-passion); color: #fff; font-weight: 800;
  margin-inline: auto; margin-bottom: var(--space-3); font-family: var(--font-heading);
}

/* ---------- 22. UTILITAIRES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.gap-align-center { align-items: center; }

/* ---------- 23. RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin-inline: auto; width: 100%; }
  .locations-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-cards { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .main-nav, .top-bar-calls { display: none; }
  .nav-toggle { display: flex; }
  .mobile-order-bar { display: block; }
  body { padding-bottom: var(--mobile-bar-h); }

  .main-nav.is-open {
    display: block; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 99; padding: var(--space-4); overflow-y: auto;
  }
  .main-nav.is-open ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav.is-open ul > li { display: block; }
  .main-nav.is-open a { display: block; justify-content: flex-start; text-align: left; padding: 16px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--border); }

  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .info-grid { grid-template-columns: 1fr; }
  section { padding-block: var(--space-6); }
  .top-bar .container { justify-content: center; }
}
