/* ===========================================================
   FOUNEROU GOURMAND — Restaurant Traiteur Africain, Ivry-sur-Seine
   Identité : orange signalétique, brun chocolat, crème kraft,
   vert profond (carte), motifs triangles africains.
   =========================================================== */

:root {
  --orange: #E8761B;
  --orange-bright: #F58A28;
  --orange-deep: #C25A0C;
  --brown: #3E2415;
  --brown-deep: #2C1910;
  --cream: #FAF1E3;
  --cream-2: #F2E4CC;
  --green: #2E4435;
  --red: #CE3B26;
  --ink: #2A1B10;
  --white-warm: #FFFBF4;

  --font-display: "Alfa Slab One", serif;
  --font-script: "Lobster Two", cursive;
  --font-body: "Nunito Sans", sans-serif;

  --radius: 18px;
  --shadow-card: 0 10px 30px rgba(62, 36, 21, 0.12);
  --shadow-card-hover: 0 18px 44px rgba(62, 36, 21, 0.22);
  --maxw: 1180px;
}

/* Accent variants (Tweaks) */
body.accent-terracotta { --orange: #C8511C; --orange-bright: #DD6630; --orange-deep: #A53F0F; }
body.accent-vert { --orange: #3E7350; --orange-bright: #4C8A62; --orange-deep: #2E5A3D; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Bandeau supérieur ---------- */
.topbar {
  background: var(--brown-deep);
  color: var(--cream);
  font-size: 14.5px;
  font-weight: 600;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 7px; padding-bottom: 7px; flex-wrap: wrap;
}
.topbar-items { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item .dot { width: 8px; height: 8px; border-radius: 50%; background: #5BBE6F; flex: none; }
.topbar a { color: var(--orange-bright); text-decoration: none; font-weight: 800; }
.topbar a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .topbar { font-size: 12.5px; }
  .topbar .wrap { padding-top: 5px; padding-bottom: 5px; justify-content: space-between; flex-wrap: nowrap; gap: 10px; }
  .topbar-items { gap: 10px; flex-wrap: nowrap; }
  .topbar-items .topbar-item:nth-child(2) { display: none; }
  .topbar-item { white-space: nowrap; }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 241, 227, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(62, 36, 21, 0.12);
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(145deg, var(--orange-bright), var(--orange-deep));
  display: grid; place-items: center;
  color: var(--white-warm);
  font-family: var(--font-script); font-weight: 700; font-size: 24px;
  box-shadow: 0 4px 12px rgba(200, 90, 12, 0.35);
  flex: none;
}
.brand-name {
  font-family: var(--font-script); font-weight: 700; font-style: italic;
  font-size: 26px; line-height: 1; color: var(--brown);
}
.brand-name .accent { color: var(--orange); }
.brand-sub {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange-deep); margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  text-decoration: none; font-weight: 800; font-size: 15.5px; color: var(--brown);
  padding: 6px 2px; border-bottom: 3px solid transparent; transition: 0.18s;
}
.nav-links a:hover { color: var(--orange-deep); border-bottom-color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 11px;
  background: transparent; border: 2px solid rgba(62, 36, 21, 0.25); border-radius: 12px;
  cursor: pointer;
}
.nav-burger span {
  display: block; height: 3px; border-radius: 2px; background: var(--brown);
  transition: transform 0.2s, opacity 0.2s;
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-cta {
  background: var(--orange); color: var(--white-warm) !important;
  padding: 11px 22px !important; border-radius: 999px;
  border-bottom: none !important;
  box-shadow: 0 6px 16px rgba(200, 90, 12, 0.35);
  transition: 0.18s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-deep); transform: translateY(-1px); }
@media (max-width: 920px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(62, 36, 21, 0.15);
    box-shadow: 0 18px 34px rgba(62, 36, 21, 0.18);
    padding: 8px 0 12px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 14px 24px; font-size: 17px;
    border-bottom: 1px dashed rgba(62, 36, 21, 0.12);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a:hover { border-bottom-color: rgba(62, 36, 21, 0.12); background: rgba(232, 118, 27, 0.08); }
  .nav-links a.current { border-bottom-color: rgba(62, 36, 21, 0.12); color: var(--orange-deep); }
}
@media (max-width: 560px) {
  .nav .wrap { gap: 10px; padding-top: 10px; padding-bottom: 10px; }
  .nav-cta { padding: 10px 14px !important; font-size: 13.5px; }
  .nav-burger { width: 42px; height: 42px; padding: 10px; gap: 4.5px; }
  .nav-right { gap: 8px; }
  .brand { gap: 8px; }
  .brand-mark { width: 36px; height: 36px; font-size: 19px; border-radius: 10px; }
  .brand-name { font-size: 17px; white-space: nowrap; }
  .brand-sub { display: none; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 17px;
  text-decoration: none; border-radius: 999px; padding: 15px 30px;
  transition: 0.18s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--orange); color: var(--white-warm);
  box-shadow: 0 8px 22px rgba(200, 90, 12, 0.45);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--white-warm);
  border: 2px solid rgba(255, 251, 244, 0.65);
}
.btn-ghost:hover { background: rgba(255, 251, 244, 0.14); border-color: var(--white-warm); }
.btn-dark { background: var(--brown); color: var(--cream); }
.btn-dark:hover { background: var(--brown-deep); transform: translateY(-2px); }
.btn-uber {
  background: #06C167; color: #10231A;
  box-shadow: 0 8px 22px rgba(6, 193, 103, 0.35);
}
.btn-uber:hover { background: #05A857; transform: translateY(-2px); }
.uber-dot {
  width: 10px; height: 10px; border-radius: 50%; flex: none;
  background: #10231A;
}

/* ---------- Hero (braise & soleil) ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(900px 700px at 75% 18%, rgba(232, 118, 27, 0.22), transparent 60%),
    radial-gradient(1400px 900px at 30% 110%, #41220F, #261207 70%);
}
.soleil {
  position: absolute; z-index: -1;
  width: 1050px; height: 1050px; border-radius: 50%;
  right: -280px; top: 50%; transform: translateY(-50%);
  background:
    repeating-conic-gradient(from 0deg,
      rgba(245, 138, 40, 0.20) 0deg 6deg,
      transparent 6deg 14deg);
  -webkit-mask-image: radial-gradient(circle, transparent 24%, black 25%, black 58%, transparent 60%);
  mask-image: radial-gradient(circle, transparent 24%, black 25%, black 58%, transparent 60%);
}
@media (prefers-reduced-motion: no-preference) {
  .soleil { animation: soleil-spin 90s linear infinite; }
  @keyframes soleil-spin { to { transform: translateY(-50%) rotate(360deg); } }
}
.float-tri {
  position: absolute; z-index: -1; width: 0; height: 0;
  border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-top: 22px solid rgba(245, 138, 40, 0.5);
}
.float-tri.t1 { left: 6%; top: 14%; border-top-color: rgba(245, 183, 30, 0.55); }
.float-tri.t2 { left: 46%; bottom: 12%; border-top-color: rgba(206, 59, 38, 0.55); transform: rotate(16deg); }
.float-tri.t3 { right: 8%; top: 10%; border-top-color: rgba(46, 125, 67, 0.6); transform: rotate(-12deg); }
@media (prefers-reduced-motion: no-preference) {
  .float-tri { animation: tri-float 7s ease-in-out infinite; }
  .float-tri.t2 { animation-delay: 2.2s; }
  .float-tri.t3 { animation-delay: 4.1s; }
  @keyframes tri-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -16px; } }
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 56px; align-items: center;
  padding-top: 84px; padding-bottom: 96px; min-height: min(78vh, 760px);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 13.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 20px;
}
.hero-kicker::before { content: ""; width: 34px; height: 3px; background: var(--orange-bright); border-radius: 2px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.04; font-weight: 400;
  color: var(--cream);
  max-width: 12ch;
  margin-bottom: 18px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}
.hero h1 .em { color: var(--orange-bright); }
.hero h1 .script {
  display: block;
  font-family: var(--font-script); font-style: italic; font-weight: 700;
  color: #F5B71E;
  font-size: 0.78em; line-height: 1.15;
  margin-top: 10px;
}
.hero-sub { font-size: 19px; max-width: 44ch; margin-bottom: 32px; color: rgba(250, 241, 227, 0.85); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-outline {
  background: transparent; color: var(--brown);
  border: 2.5px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--cream); transform: translateY(-2px); }
.hero-proofs {
  list-style: none; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-weight: 800; font-size: 15px; color: rgba(250, 241, 227, 0.92);
}
.hero-proofs li { display: flex; align-items: center; gap: 16px; }
.hero-proofs .star { color: #F5B71E; margin-right: -8px; }
.tri-sep {
  width: 0; height: 0; display: inline-block;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 9px solid var(--orange-bright);
}

/* Médaillon photo rotatif */
.hero-show { display: flex; justify-content: center; }
.medallion { position: relative; width: min(100%, 440px); aspect-ratio: 1; }
.medallion .ring {
  position: absolute; inset: -22px; border-radius: 50%;
  border: 3px dashed rgba(245, 138, 40, 0.65);
}
@media (prefers-reduced-motion: no-preference) {
  .medallion .ring { animation: soleil-spin-flat 50s linear infinite; }
  @keyframes soleil-spin-flat { to { rotate: 360deg; } }
}
.medallion .photos {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  border: 10px solid var(--cream);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background: #1d0e05;
}
.medallion .photos img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.9s ease;
}
.medallion .photos img.active { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .medallion .photos img { transform: scale(1.0); transition: opacity 0.9s ease, transform 5s ease-out; }
  .medallion .photos img.active { transform: scale(1.09); }
}
.bulle {
  position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%) rotate(-2deg);
  background: var(--orange); color: var(--white-warm);
  font-family: var(--font-script); font-style: italic; font-weight: 700;
  font-size: 24px; line-height: 1; padding: 12px 24px 14px;
  border-radius: 16px; border: 2px dashed rgba(255, 251, 244, 0.85);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

/* Bande kente + marquee des plats */
.kente-band {
  height: 16px;
  background: repeating-linear-gradient(90deg,
    #2E7D43 0 70px, #F5B71E 70px 140px, #CE3B26 140px 210px,
    var(--orange) 210px 280px, #261207 280px 350px);
}
.marquee {
  background: var(--orange); overflow: hidden;
  padding: 13px 0; border-bottom: 4px solid var(--brown-deep);
}
.marquee-track {
  display: flex; align-items: center; gap: 38px; width: max-content;
  font-family: var(--font-display); font-size: 24px; text-transform: uppercase;
  color: var(--brown-deep); letter-spacing: 0.04em; white-space: nowrap;
}
.marquee-track span:nth-child(4n + 3) { color: var(--white-warm); }
.m-tri {
  width: 0; height: 0; flex: none;
  border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-top: 14px solid var(--brown-deep);
}
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee-scroll 30s linear infinite; }
  @keyframes marquee-scroll { to { transform: translateX(-50%); } }
}
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr; min-height: 0;
    padding-top: 36px; padding-bottom: 56px; gap: 40px;
  }
  .hero-copy { text-align: center; }
  .hero-kicker { margin-bottom: 14px; }
  .hero h1 { max-width: none; margin-bottom: 12px; }
  .hero-sub { max-width: 52ch; margin-left: auto; margin-right: auto; margin-bottom: 24px; }
  .hero-actions { justify-content: center; margin-bottom: 26px; }
  .hero-proofs { justify-content: center; }
  .medallion { width: min(72vw, 340px); }
  .marquee-track { font-size: 19px; }
}

/* ---------- Frise triangles (motif de la carte) ---------- */
.tri-divider {
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='26' viewBox='0 0 96 26'%3E%3Cpath d='M4 4 L28 4 L16 22 Z' fill='%23E8761B'/%3E%3Cpath d='M36 4 L60 4 L48 22 Z' fill='%233E2415'/%3E%3Cpath d='M68 4 L92 4 L80 22 Z' fill='%23CE3B26'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}
.tri-divider.on-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='26' viewBox='0 0 96 26'%3E%3Cpath d='M4 4 L28 4 L16 22 Z' fill='%23F58A28'/%3E%3Cpath d='M36 4 L60 4 L48 22 Z' fill='%23F2E4CC'/%3E%3Cpath d='M68 4 L92 4 L80 22 Z' fill='%23CE3B26'/%3E%3C/svg%3E");
}

/* ---------- Sections génériques ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-kicker {
  font-family: var(--font-script); font-style: italic; font-weight: 700;
  font-size: 26px; color: var(--orange-deep);
}
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.15;
  color: var(--brown); margin: 6px 0 14px;
}
.section-lead { font-size: 18px; color: rgba(42, 27, 16, 0.78); }
.on-dark .section-title { color: var(--cream); }
.on-dark .section-kicker { color: var(--orange-bright); }
.on-dark .section-lead { color: rgba(250, 241, 227, 0.78); }

/* ---------- Plats signatures ---------- */
.dishes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 26px;
}
.dish-card {
  background: var(--white-warm); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex; flex-direction: column;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.dish-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dish-card:hover .dish-photo img { transform: scale(1.06); }
.dish-price {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange); color: var(--white-warm);
  font-family: var(--font-display); font-size: 17px;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.dish-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.dish-name { font-family: var(--font-display); font-weight: 400; font-size: 20px; color: var(--brown); }
.dish-desc { font-size: 15px; color: rgba(42, 27, 16, 0.72); }
.dish-tag {
  align-self: flex-start; margin-top: auto;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange-deep); background: rgba(232, 118, 27, 0.12);
  padding: 4px 12px; border-radius: 999px;
}

/* ---------- La carte (fond chocolat, comme le menu papier) ---------- */
.menu-section { background: var(--brown); color: var(--cream); }
body.menu-vert .menu-section { background: var(--green); }
.menu-columns {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px 56px;
}
.menu-cat { break-inside: avoid; }
.menu-cat h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 26px;
  color: var(--orange-bright); letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.menu-cat .cat-note { font-size: 14px; color: rgba(250, 241, 227, 0.6); margin-bottom: 16px; font-style: italic; }
.menu-items { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.menu-item { display: flex; flex-direction: column; gap: 2px; }
.menu-line { display: flex; align-items: baseline; gap: 10px; }
.menu-line .name { font-weight: 800; font-size: 17.5px; }
.menu-line .dots {
  flex: 1; border-bottom: 2px dotted rgba(250, 241, 227, 0.35);
  transform: translateY(-4px);
}
.menu-line .price { font-family: var(--font-display); font-size: 17px; color: var(--orange-bright); white-space: nowrap; }
.menu-item .desc { font-size: 14.5px; color: rgba(250, 241, 227, 0.65); max-width: 46ch; }
.menu-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }

/* ---------- Offre étudiants ---------- */
.promo {
  background: var(--orange);
  color: var(--white-warm);
  padding: 0;
}
.promo .wrap {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  flex-wrap: wrap; padding-top: 34px; padding-bottom: 34px; text-align: center;
}
.promo-price {
  font-family: var(--font-display); font-size: 52px; line-height: 1;
  background: var(--white-warm); color: var(--orange-deep);
  padding: 12px 24px; border-radius: 16px; transform: rotate(-3deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.promo-text { text-align: left; max-width: 480px; }
.promo-text h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; margin-bottom: 4px; }
.promo-text p { font-size: 16.5px; opacity: 0.95; }

/* ---------- Traiteur ---------- */
.traiteur-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) { .traiteur-grid { grid-template-columns: 1fr; } }
.traiteur-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card-hover);
  position: relative;
}
.traiteur-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.traiteur-copy .section-kicker, .traiteur-copy .section-title { text-align: left; }
.traiteur-copy { display: flex; flex-direction: column; gap: 18px; }
.traiteur-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.traiteur-list li {
  display: flex; align-items: center; gap: 10px;
  background: var(--white-warm); border-radius: 12px; padding: 13px 16px;
  font-weight: 800; font-size: 15.5px; color: var(--brown);
  box-shadow: var(--shadow-card);
}
.traiteur-list .tri {
  width: 0; height: 0; flex: none;
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-top: 11px solid var(--orange);
}

/* ---------- Galerie ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-grid a {
  border-radius: 14px; overflow: hidden; display: block;
  box-shadow: var(--shadow-card);
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1;
  transition: transform 0.35s;
}
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid a.wide { grid-column: span 2; }
.gallery-grid a.wide img { aspect-ratio: 2.05 / 1; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Avis ---------- */
.reviews { background: var(--cream-2); }
.reviews-box {
  max-width: 660px; margin: 0 auto; text-align: center;
  background: var(--white-warm); border-radius: 22px;
  padding: 48px 40px; box-shadow: var(--shadow-card);
}
.reviews-score {
  font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--brown);
}
.reviews-stars { font-size: 28px; letter-spacing: 6px; color: #F5A623; margin: 10px 0 6px; }
.reviews-count { font-weight: 800; color: rgba(42, 27, 16, 0.65); margin-bottom: 24px; }
.reviews-quote {
  font-family: var(--font-script); font-style: italic; font-weight: 700;
  font-size: 24px; color: var(--orange-deep); margin-bottom: 26px;
}

/* ---------- Infos pratiques ---------- */
.infos { background: var(--brown-deep); color: var(--cream); }
.infos-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: stretch; }
@media (max-width: 880px) { .infos-grid { grid-template-columns: 1fr; } }
.infos-copy { display: flex; flex-direction: column; gap: 26px; }
.infos-copy .section-kicker { color: var(--orange-bright); }
.infos-copy .section-title { color: var(--cream); }
.info-block { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: rgba(245, 138, 40, 0.16); border: 1px solid rgba(245, 138, 40, 0.4);
  display: grid; place-items: center; font-size: 20px;
  color: var(--orange-bright); font-weight: 800;
}
.info-block h4 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-bright); margin-bottom: 3px;
}
.info-block p { font-size: 17.5px; font-weight: 700; }
.info-block .muted { font-size: 14.5px; font-weight: 600; color: rgba(250, 241, 227, 0.6); }
.info-block a { color: var(--cream); text-decoration: none; }
.info-block a:hover { color: var(--orange-bright); }
.infos-map {
  border-radius: var(--radius); overflow: hidden; min-height: 420px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  display: flex; flex-direction: column;
}
.infos-map iframe { border: 0; width: 100%; flex: 1; min-height: 320px; }
.infos-map .map-caption {
  background: var(--orange); color: var(--white-warm);
  font-weight: 800; text-align: center; padding: 12px 16px; font-size: 15.5px;
}

/* ---------- Footer ---------- */
footer { background: var(--brown-deep); color: rgba(250, 241, 227, 0.75); border-top: 1px solid rgba(250, 241, 227, 0.12); }
footer .wrap { padding-top: 44px; padding-bottom: 40px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 30px; }
.footer-brand { max-width: 360px; }
.footer-brand .brand-name { color: var(--cream); font-size: 30px; }
.footer-brand p { font-size: 14.5px; margin-top: 12px; }
.footer-col h5 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange-bright); margin-bottom: 12px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { text-decoration: none; font-weight: 700; font-size: 15px; }
.footer-col a:hover { color: var(--orange-bright); }
.footer-legal {
  border-top: 1px solid rgba(250, 241, 227, 0.14); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
}

/* ---------- Animations d'entrée ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .promo-text { text-align: center; }
  .traiteur-list { grid-template-columns: 1fr; }
  .hero-sub { font-size: 17px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .section-lead { font-size: 16.5px; }
  .menu-cta-row .btn { width: 100%; justify-content: center; }
  .infos-map { min-height: 340px; }
  .reviews-box { padding: 36px 22px; }
  .reviews-score { font-size: 52px; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .footer-legal { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .btn { padding: 14px 22px; font-size: 16px; }
  .hero h1 { font-size: clamp(33px, 9vw, 40px); }
  .hero-sub { font-size: 16px; }
  .bulle { font-size: 18px; padding: 9px 16px 11px; }
  .medallion { width: min(66vw, 280px); }
  .promo-price { font-size: 40px; }
  .hero-proofs { font-size: 13px; gap: 8px; }
  .hero-proofs li { gap: 8px; }
  .marquee { padding: 9px 0; }
  .marquee-track { font-size: 15px; gap: 22px; }
  .kente-band { height: 10px; }
  .dish-name { font-size: 18px; }
  .gallery-grid { gap: 10px; }
}
