/* ============================================================
   LE FOOD TRUCK DE CHEZ CHRISTOPHE — v2
   Esprit : chaleureux, artisanal, familial — sans emojis
   Palette : bleu #4EACC5 / ardoise #1E2A35 / crème #F8F5F0
   Icônes : SVG inline, pas d'emojis
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&family=Pacifico&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --bleu:        #4EACC5;
  --bleu-dark:   #2E8BA6;
  --bleu-light:  #A8DAE8;
  --bleu-pale:   #E6F5FA;
  --ardoise:     #1E2A35;
  --ardoise-mid: #2D3E4E;
  --creme:       #F8F5F0;
  --creme-dark:  #EDE8E0;
  --orange:      #E8914A;
  --orange-dark: #C97030;
  --text:        #1E2A35;
  --text-light:  #5A7080;
  --white:       #FFFFFF;

  --font-titre:  'Fredoka One', cursive;
  --font-script: 'Pacifico', cursive;
  --font-body:   'Nunito', sans-serif;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(30,42,53,.1);
  --shadow:      0 4px 20px rgba(30,42,53,.15);
  --shadow-lg:   0 8px 40px rgba(30,42,53,.2);

  --max-w:       1140px;
  --header-h:    68px;
}

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

/* ── Helpers ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }
.section-ardoise { background: var(--ardoise); color: var(--creme); }

/* ── SVG Icons ────────────────────────────────────────────── */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Icône de camion SVG dans le header */
.truck-svg {
  width: 32px; height: 22px;
  display: flex; align-items: center;
  flex-shrink: 0;
}
.truck-svg svg {
  width: 100%; height: 100%;
  fill: var(--bleu-light);
}

/* ── Typography ───────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bleu);
  display: block;
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-titre);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ardoise);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { color: var(--bleu); font-style: normal; }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.7;
}
.section-ardoise .section-eyebrow { color: var(--bleu-light); }
.section-ardoise .section-title { color: var(--white); }
.section-ardoise .section-sub { color: rgba(248,245,240,.7); }

/* ── Boutons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
  transition: all .22s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-bleu { background: var(--bleu); color: var(--white); }
.btn-bleu:hover { background: var(--bleu-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(78,172,197,.4); }

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,145,74,.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-outline-bleu {
  background: transparent;
  color: var(--bleu);
  border: 2.5px solid var(--bleu);
}
.btn-outline-bleu:hover { background: var(--bleu); color: var(--white); }

/* ── HEADER ───────────────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ardoise);
  height: var(--header-h);
  border-bottom: 2px solid rgba(78,172,197,.2);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: .75rem; flex-wrap: nowrap; min-width: 0;
}
.header-brand {
  display: flex; align-items: center; gap: .75rem;
  flex-shrink: 1; min-width: 0; overflow: hidden;
}
.header-name {
  font-family: var(--font-titre); font-size: 1.15rem;
  color: var(--white); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; line-height: 1.2;
}
.header-sub {
  font-size: .7rem; color: var(--bleu-light);
  white-space: nowrap; font-weight: 600; letter-spacing: .04em;
}
.header-nav {
  display: flex; align-items: center; gap: .2rem; flex-shrink: 1;
}
.header-nav a {
  font-size: .88rem; font-weight: 700;
  color: rgba(248,245,240,.75);
  padding: .45rem .8rem; border-radius: 100px;
  transition: background .18s, color .18s; white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.header-cta { flex-shrink: 0; display: flex; align-items: center; gap: .6rem; }

/* Bouton téléphone header — avec icône SVG */
.btn-phone-header {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .85rem; padding: .6rem 1.4rem;
  white-space: nowrap; border-radius: 100px;
  background: var(--bleu); color: var(--white);
  font-family: var(--font-body); font-weight: 800;
  transition: background .18s, transform .18s;
  border: none;
}
.btn-phone-header:hover { background: var(--bleu-dark); transform: translateY(-1px); }
.btn-phone-header svg { width: 14px; height: 14px; fill: var(--white); flex-shrink: 0; }

.btn-mobile-reserv {
  display: none;
  flex-shrink: 0;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  padding: .55rem 1.1rem;
  white-space: nowrap;
  border-radius: 100px;
  background: var(--bleu);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  transition: background .18s;
  border: none;
  line-height: 1;
}
.btn-mobile-reserv .btn-icon {
  width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-mobile-reserv .btn-icon svg { width: 15px; height: 15px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 8px;
  border-radius: var(--radius-sm); transition: background .18s; flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block; height: 2.5px; background: var(--creme);
  border-radius: 2px; transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 99; }
.mobile-nav.open { display: block; }
.mobile-overlay { position: absolute; inset: 0; background: rgba(30,42,53,.55); backdrop-filter: blur(3px); }
.mobile-drawer {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--creme); border-bottom: 3px solid var(--bleu);
  opacity: 0; transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-nav.open .mobile-drawer { opacity: 1; transform: translateY(0); }
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-bottom: 1px solid var(--creme-dark);
}
.mobile-drawer-header .drawer-name {
  font-family: var(--font-titre); font-size: 1.05rem; color: var(--ardoise);
  display: flex; align-items: center; gap: .55rem;
}
.mobile-drawer-close {
  font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-light); padding: .4rem .85rem; border: 1.5px solid var(--creme-dark);
  border-radius: 100px; background: none; cursor: pointer; font-family: var(--font-body);
  transition: all .18s;
}
.mobile-drawer-close:hover { border-color: var(--bleu); color: var(--bleu); }
.mobile-drawer-nav { display: flex; flex-direction: column; }
.mobile-drawer-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; color: var(--text); font-size: 1.05rem; font-weight: 700;
  border-bottom: 1px solid var(--creme-dark); transition: background .15s, color .15s;
}
.mobile-drawer-nav a:hover { background: var(--bleu-pale); color: var(--bleu-dark); }
.drawer-arrow { font-size: .85rem; color: var(--bleu); opacity: .5; }
.mobile-drawer-footer {
  padding: 1.25rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: .75rem;
}
.mobile-drawer-footer .btn { width: 100%; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,42,53,.95) 0%,
    rgba(30,42,53,.6) 45%,
    rgba(30,42,53,.15) 75%,
    transparent 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 3rem 0 5rem; max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--bleu); color: var(--white);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--white); }
.hero-title {
  font-family: var(--font-titre);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: var(--white); line-height: 1.05; margin-bottom: .4rem;
}
.hero-title-em {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--bleu-light); display: block;
  font-weight: 400; margin-bottom: 1.25rem;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(78,172,197,.25); border: 1.5px solid rgba(78,172,197,.5);
  color: var(--bleu-light); font-size: .82rem; font-weight: 700;
  padding: .35rem .9rem; border-radius: 100px;
}
.hero-chip svg { width: 13px; height: 13px; fill: currentColor; opacity: .85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── GALERIE ──────────────────────────────────────────────── */
#galerie { background: var(--white); }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 6px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.galerie-item {
  overflow: hidden; cursor: pointer; position: relative;
}
.galerie-item:first-child {
  grid-row: span 2;
}
.galerie-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(.92);
}
.galerie-item:hover img { transform: scale(1.04); filter: saturate(1.08); }
.galerie-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(30,42,53,0);
  transition: background .3s;
}
.galerie-item:hover::after { background: rgba(30,42,53,.08); }

/* Lightbox galerie */
.lb { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(20,30,40,.92); backdrop-filter: blur(8px); }
.lb.open { display: flex; flex-direction: column; }
.lb-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; }
.lb-counter { color: rgba(255,255,255,.5); font-size: .82rem; }
.lb-close { color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 700; padding: .5rem 1.1rem; border: 1.5px solid rgba(255,255,255,.25); border-radius: 100px; cursor: pointer; transition: all .18s; font-family: var(--font-body); background: none; }
.lb-close:hover { background: rgba(255,255,255,.1); color: var(--white); }
.lb-stage { flex: 1; display: grid; place-items: center; padding: 0 1rem; }
.lb-stage img { max-width: 100%; max-height: 75vh; object-fit: contain; border-radius: var(--radius); }
.lb-nav { display: flex; gap: .75rem; justify-content: center; padding: 1rem; }
.lb-btn { color: var(--white); padding: .55rem 1.4rem; border: 1.5px solid rgba(255,255,255,.25); border-radius: 100px; cursor: pointer; font-size: .82rem; font-weight: 700; transition: all .18s; font-family: var(--font-body); background: none; }
.lb-btn:hover { background: rgba(255,255,255,.12); }

/* ── CONCEPT ──────────────────────────────────────────────── */
#concept .concept-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.concept-visual { position: relative; }
.concept-truck-img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.concept-sticker {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-titre); font-size: .85rem;
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; line-height: 1.2;
  box-shadow: var(--shadow); transform: rotate(12deg);
}
.concept-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; font-size: 1.02rem; }
.concept-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-titre); font-size: 2.2rem; color: var(--bleu); display: block; line-height: 1; }
.stat-label { font-size: .8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; }

/* ── SPÉCIALITÉS (aperçu accueil) ─────────────────────────── */
.spec-apercu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 3rem;
}
.spec-apercu-card {
  background: var(--white); border: 1.5px solid var(--creme-dark);
  border-radius: var(--radius-lg); padding: 1.75rem 1.25rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.spec-apercu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* Icône dans les cards spécialités */
.spec-icon {
  width: 48px; height: 48px; margin: 0 auto .75rem;
  background: var(--bleu-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.spec-icon svg { width: 26px; height: 26px; }
.spec-apercu-nom { font-family: var(--font-titre); font-size: 1.15rem; color: var(--ardoise); margin-bottom: .35rem; }
.spec-apercu-desc { font-size: .82rem; color: var(--text-light); line-height: 1.5; margin-bottom: .65rem; }
.spec-apercu-prix { font-family: var(--font-titre); font-size: 1rem; color: var(--orange); }

/* ── ÉVÉNEMENTS ───────────────────────────────────────────── */
#evenements { background: var(--ardoise); color: var(--creme); }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.event-card {
  background: rgba(248,245,240,.06); border: 1.5px solid rgba(78,172,197,.25);
  border-radius: var(--radius-lg); padding: 1.5rem 1.25rem; text-align: center;
  transition: background .2s, border-color .2s;
}
.event-card:hover { background: rgba(78,172,197,.12); border-color: rgba(78,172,197,.5); }
/* Icône événement en SVG */
.event-icon-wrap {
  width: 52px; height: 52px; margin: 0 auto .75rem;
  background: rgba(78,172,197,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.event-icon-wrap svg { width: 26px; height: 26px; stroke: var(--bleu-light); fill: none; stroke-width: 1.8; }
.event-nom { font-weight: 700; font-size: .95rem; color: var(--creme); }
.event-body { max-width: 600px; color: rgba(248,245,240,.75); line-height: 1.8; margin-bottom: 2rem; font-size: 1rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
#faq-content .faq-list { max-width: 700px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1.5px solid var(--creme-dark); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; cursor: pointer; font-weight: 700; font-size: 1rem;
  color: var(--text); gap: 1rem; transition: color .18s;
}
.faq-question:hover { color: var(--bleu-dark); }
.faq-icon {
  width: 26px; height: 26px; border: 2px solid var(--bleu); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.faq-icon::before {
  content: '+'; font-size: .95rem; color: var(--bleu);
  font-family: var(--font-body); font-weight: 800; line-height: 1;
}
.faq-item.open .faq-icon { background: var(--bleu); border-color: var(--bleu); transform: rotate(45deg); }
.faq-item.open .faq-icon::before { color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding-bottom: 1.1rem; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ── CONTACT SECTION ──────────────────────────────────────── */
#contact-section { background: var(--bleu); color: var(--white); text-align: center; padding: 5rem 0; }
#contact-section .section-eyebrow { color: rgba(255,255,255,.7); }
#contact-section .section-title { color: var(--white); }
.contact-big-phone {
  font-family: var(--font-titre); font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white); display: block; margin: 1.5rem 0; transition: opacity .2s;
}
.contact-big-phone:hover { opacity: .85; }
.contact-note { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 2rem; }

/* ── CARTE PAGE ───────────────────────────────────────────── */
.carte-nav-sticky {
  position: sticky; top: var(--header-h); z-index: 50;
  background: var(--ardoise); padding: .75rem 0;
  border-bottom: 2px solid rgba(78,172,197,.3);
}
.carte-nav-inner { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.carte-tab {
  font-family: var(--font-body); font-size: .8rem; font-weight: 800;
  color: rgba(248,245,240,.6); padding: .4rem .9rem; border-radius: 100px;
  transition: all .18s; cursor: pointer; white-space: nowrap; border: none; background: none;
}
.carte-tab:hover, .carte-tab.active { background: var(--bleu); color: var(--white); }

.carte-section { margin-bottom: 4rem; scroll-margin-top: calc(var(--header-h) + 70px); }
.carte-section-header {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--bleu-pale); flex-wrap: wrap;
}
.carte-section-titre { font-family: var(--font-titre); font-size: 1.8rem; color: var(--ardoise); }
.carte-section-sous { font-size: .88rem; color: var(--bleu-dark); font-weight: 700; }

/* Grille items — SANS photos */
.carte-items-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.carte-item-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--creme-dark);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.carte-item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* Bandeau coloré haut de carte — remplace la zone photo */
.carte-item-top {
  height: 6px;
  background: linear-gradient(90deg, var(--bleu), var(--bleu-light));
  flex-shrink: 0;
}
.carte-item-top.orange { background: linear-gradient(90deg, var(--orange), #f5bb85); }
.carte-item-top.vert { background: linear-gradient(90deg, #4a9966, #7fcc9f); }

.carte-item-body { padding: 1.1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.carte-item-nom { font-family: var(--font-titre); font-size: 1.1rem; color: var(--ardoise); margin-bottom: .3rem; }
.carte-item-desc { font-size: .82rem; color: var(--text-light); line-height: 1.5; flex: 1; margin-bottom: .75rem; font-style: italic; }
.carte-item-prix {
  display: inline-flex; align-items: center;
  background: var(--orange); color: var(--white);
  font-family: var(--font-titre); font-size: 1rem;
  padding: .25rem .85rem; border-radius: 100px; align-self: flex-start;
}

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  background: var(--ardoise); padding: 4rem 0 3rem;
  text-align: center; border-bottom: 3px solid var(--bleu);
}
.page-hero .section-eyebrow { color: var(--bleu-light); }
.page-hero h1 { font-family: var(--font-titre); font-size: clamp(2rem, 5vw, 3rem); color: var(--white); }
.page-hero p { color: rgba(248,245,240,.65); font-size: .95rem; margin-top: .5rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
#site-footer {
  background: var(--ardoise-mid); color: rgba(248,245,240,.65);
  padding: 2.5rem 0 1.5rem; border-top: 2px solid rgba(78,172,197,.2);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.footer-brand { font-family: var(--font-titre); font-size: 1.2rem; color: var(--white); display: flex; align-items: center; gap: .65rem; }
.footer-brand span { font-size: .8rem; font-family: var(--font-body); color: rgba(248,245,240,.5); display: block; font-weight: 400; }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; transition: color .18s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(78,172,197,.15); padding-top: 1.25rem;
  display: flex; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap; font-size: .78rem;
}
.footer-bottom a:hover { color: var(--white); }

/* ── Back to top ──────────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 80;
  width: 46px; height: 46px; background: var(--bleu); border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: background .2s, transform .2s; border: none; cursor: pointer;
}
#back-top.visible { display: flex; }
#back-top:hover { background: var(--bleu-dark); transform: translateY(-3px); }
#back-top svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2.5; }

/* ── Legal ────────────────────────────────────────────────── */
.legal-content { max-width: 740px; margin: 0 auto; padding: 3rem 0 5rem; }
.legal-content h2 { font-family: var(--font-titre); font-size: 1.4rem; color: var(--bleu-dark); margin: 2rem 0 .75rem; }
.legal-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; font-size: .95rem; }
.legal-content a { color: var(--bleu-dark); text-decoration: underline; }
.bot-field { display: none !important; }

/* ── Wave divider ─────────────────────────────────────────── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
section, main, .section { max-width: 100%; overflow-x: hidden; }

@media (max-width: 980px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .btn-mobile-reserv { display: inline-flex; }
  .hamburger { display: flex !important; }
  #concept .concept-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .concept-truck-img { height: 300px; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-apercu-grid { grid-template-columns: repeat(2, 1fr); }
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .galerie-item { height: 200px; }
  .galerie-item:first-child { grid-row: span 1; }
}

@media (max-width: 580px) {
  :root { --header-h: 62px; }
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .spec-apercu-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .spec-apercu-card { padding: 1.25rem .9rem; }
  .galerie-grid { grid-template-columns: 1fr; gap: 4px; }
  .galerie-item { height: 200px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-big-phone { font-size: 2rem; }
}

/* ── v2 UPGRADES ──────────────────────────────────────────── */

/* SVG icons dans les boutons */
.btn-icon {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-icon svg { width: 16px; height: 16px; }

/* Header truck icon */
.header-truck-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  color: var(--bleu-light);
}
.header-truck-icon svg { width: 28px; height: 28px; }

/* Hero badge icon */
.hero-badge-icon { width: 18px; height: 18px; display: inline-flex; }
.hero-badge-icon svg { width: 18px; height: 18px; }

/* Hero chips icon */
.chip-icon { width: 14px; height: 14px; display: inline-flex; margin-right: .2rem; }
.chip-icon svg { width: 14px; height: 14px; }

/* Drawer truck icon */
.drawer-truck-icon { width: 20px; height: 20px; display: inline-flex; margin-right: .4rem; vertical-align: middle; }
.drawer-truck-icon svg { width: 20px; height: 20px; }
.drawer-arrow { width: 16px; height: 16px; display: inline-flex; opacity: .45; }
.drawer-arrow svg { width: 16px; height: 16px; }

/* Concept sticker — SVG */
.concept-sticker {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .3rem; text-align: center;
  font-size: .78rem; line-height: 1.2;
}
.sticker-icon { width: 26px; height: 26px; color: var(--white); }
.sticker-icon svg { width: 26px; height: 26px; }

/* Stat items avec SVG */
.stat-icon { font-size: 2.2rem; color: var(--bleu); display: block; line-height: 1; }
.stat-icon svg { width: 2.2rem; height: 2.2rem; }

/* Event cards — SVG icons */
.event-icon { display: block; margin-bottom: .5rem; color: var(--bleu-light); }
.event-icon svg { width: 2rem; height: 2rem; }

/* Footer truck icon */
.footer-truck-icon { display: inline-flex; width: 20px; height: 20px; margin-right: .5rem; vertical-align: middle; color: var(--bleu-light); }
.footer-truck-icon svg { width: 20px; height: 20px; }

/* Contact phone avec SVG */
.contact-big-phone .btn-icon { width: 2rem; height: 2rem; }

/* ── GALERIE SECTION ──────────────────────────────────────── */
#galerie-section { background: var(--ardoise); padding: 4.5rem 0; }
#galerie-section .section-eyebrow { color: var(--bleu-light); }
#galerie-section .section-title { color: var(--white); }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 2rem;
}
.galerie-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.galerie-item:hover img { transform: scale(1.05); }
.galerie-overlay {
  position: absolute; inset: 0;
  background: rgba(30,42,53,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.galerie-item:hover .galerie-overlay { background: rgba(30,42,53,.45); }
.galerie-zoom {
  color: var(--white); opacity: 0;
  transition: opacity .3s; width: 36px; height: 36px;
}
.galerie-zoom svg { width: 36px; height: 36px; }
.galerie-item:hover .galerie-zoom { opacity: 1; }

@media (max-width: 780px) { .galerie-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .galerie-grid { grid-template-columns: repeat(2,1fr); gap: .5rem; } }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
}
#lightbox.open { display: flex; align-items: center; justify-content: center; }
.lb-overlay { position: absolute; inset: 0; background: rgba(12,18,24,.92); backdrop-filter: blur(6px); }
.lb-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  width: min(90vw, 900px); max-height: 90vh;
  gap: .75rem;
}
.lb-top { display: flex; justify-content: space-between; align-items: center; }
.lb-counter { font-size: .8rem; font-weight: 700; color: rgba(248,245,240,.55); letter-spacing: .08em; }
.lb-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(248,245,240,.1); border: 1px solid rgba(248,245,240,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; color: var(--white);
}
.lb-close:hover { background: rgba(248,245,240,.2); }
.lb-close svg { width: 18px; height: 18px; }
.lb-stage { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; }
.lb-stage img { max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: var(--radius); }
.lb-nav { display: flex; justify-content: center; gap: 1rem; }
.lb-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(78,172,197,.2); border: 1.5px solid rgba(78,172,197,.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; color: var(--bleu-light);
}
.lb-btn:hover { background: var(--bleu); color: var(--white); }
.lb-btn svg { width: 22px; height: 22px; }

/* ── Carte page — sans photos ─────────────────────────────── */
/* Restyle sans zone photo : item plus compact et élégant */
.carte-item-card {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--creme-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  overflow: hidden;
}
.carte-item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.carte-item-body { padding: 1.1rem 1.25rem 1.25rem; }
.carte-item-nom {
  font-family: var(--font-titre);
  font-size: 1.1rem; color: var(--ardoise);
  margin-bottom: .3rem;
  padding-bottom: .45rem;
  border-bottom: 1.5px solid var(--creme-dark);
}
.carte-item-desc { font-size: .83rem; color: var(--text-light); line-height: 1.55; margin-bottom: .75rem; }
.carte-item-prix {
  display: inline-flex; align-items: center;
  background: var(--orange); color: var(--white);
  font-family: var(--font-titre); font-size: 1rem;
  padding: .22rem .85rem; border-radius: 100px;
}

/* ── spec aperçu — SVG icons ──────────────────────────────── */
.spec-apercu-icon svg { width: 2.5rem; height: 2.5rem; color: var(--bleu); }

/* ── Hero — amélioration overlay pour la photo du camion ──── */
.hero-bg::after {
  background: linear-gradient(
    to top,
    rgba(30,42,53,.92) 0%,
    rgba(30,42,53,.55) 38%,
    rgba(30,42,53,.18) 65%,
    transparent 100%
  );
}

/* ── Amélioration concept-stats ───────────────────────────── */
.concept-stats { border-top: 1px solid var(--creme-dark); padding-top: 1.5rem; margin-top: 2rem; }
.stat-item { min-width: 90px; }
.stat-icon { color: var(--bleu); }
.stat-icon svg { width: 2rem; height: 2rem; }

/* Bouton mobile — supprimer emojis */
.btn-mobile-reserv .btn-icon { width: 14px; height: 14px; }

/* ── v2.2 : Event icons — taille et lisibilité ────────────── */
.event-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto .85rem;
  background: rgba(78,172,197,.12);
  border: 1.5px solid rgba(78,172,197,.28);
  border-radius: 16px;
  color: var(--bleu-light);
  flex-shrink: 0;
}
.event-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
  stroke-width: 1.5;
}
.event-grid .event-icon { font-size: 0; }

/* Event card — centrage et espacement amélioré */
.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.75rem 1.25rem 1.5rem;
}
.event-nom {
  font-size: .92rem;
  font-weight: 700;
  text-align: center;
  color: var(--creme);
  line-height: 1.3;
}

/* Footer — supprimer le bouton téléphone du bas */
.footer-inner { align-items: flex-start; }

/* Stat icon — fix taille SVG */
.stat-icon svg { width: 2rem; height: 2rem; display: block; }

/* ── Event cards — emoji mode ─────────────────────────────── */
.event-emoji {
  font-size: 2rem !important;
  background: rgba(78,172,197,.12);
  border: 1.5px solid rgba(78,172,197,.28);
  border-radius: 16px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .85rem;
  line-height: 1;
}

/* ── SECTION AVIS — CAROUSEL ──────────────────────────────── */
.avis-header {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.avis-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--radius-xl);
  padding: 1.25rem 3rem;
  box-shadow: var(--shadow-sm);
}
.avis-score-num {
  font-family: var(--font-titre);
  font-size: 2.4rem;
  color: var(--ardoise);
  line-height: 1;
}
.avis-stars { display: flex; gap: 3px; }
.avis-score-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
}

/* Carousel wrapper */
.avis-carousel-wrap { position: relative; }
.avis-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
}
.avis-carousel::-webkit-scrollbar { display: none; }

/* Chaque carte occupe ~80% de la largeur visible → on voit le suivant */
.avis-card {
  flex: 0 0 calc(100% - 2rem);
  max-width: 440px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1.5px solid var(--creme-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
@media (min-width: 640px) {
  .avis-card { flex: 0 0 380px; }
}
@media (min-width: 1024px) {
  .avis-card { flex: 0 0 420px; }
}

.avis-card-top {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.avis-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bleu);
  color: var(--white);
  font-family: var(--font-titre);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.avis-meta { flex: 1; min-width: 0; }
.avis-nom {
  font-weight: 800;
  font-size: .9rem;
  color: var(--ardoise);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.avis-date { font-size: .75rem; color: var(--text-light); margin-top: .1rem; }
.avis-stars-sm { display: flex; gap: 2px; flex-shrink: 0; }
.avis-texte {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}
.avis-tag {
  display: inline-flex;
  background: var(--bleu-pale);
  color: var(--bleu-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem .8rem;
  border-radius: 100px;
  align-self: flex-start;
}

/* Dots de navigation */
.avis-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.25rem;
}
.avis-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--creme-dark);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.avis-dot.active {
  background: var(--bleu);
  transform: scale(1.25);
}

/* Spécialités — emoji mode */
.spec-emoji {
  font-size: 2.4rem !important;
  line-height: 1;
  background: none;
  color: inherit;
}

/* ── CTA bannière bas de carte ────────────────────────────── */
.carte-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding: 1.75rem 2rem;
  background: var(--bleu-pale);
  border: 1.5px solid rgba(78,172,197,.3);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}
.carte-cta-left { flex: 1; min-width: 0; }
.carte-cta-title {
  font-family: var(--font-titre);
  font-size: 1.35rem;
  color: var(--ardoise);
  margin-bottom: .3rem;
}
.carte-cta-sub {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.55;
}
.carte-cta-btn {
  flex-shrink: 0;
  font-size: .95rem;
  padding: .8rem 1.75rem;
  gap: .5rem;
}
.carte-cta-btn svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}
@media (max-width: 580px) {
  .carte-cta-banner { flex-direction: column; text-align: center; }
  .carte-cta-btn { width: 100%; justify-content: center; }
}

/* ── SEO helpers ──────────────────────────────────────────── */
.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;
}
