/* ===================================================
   RESTO DÉMO — style.css
   Mobile-first responsive restaurant showcase site
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --red:    #C0392B;
  --red-dk: #a93226;
  --red-lt: #e74c3c;
  --navy:   #2C3E50;
  --navy-lt:#34495e;
  --orange: #F39C12;
  --orange-lt: #f7b733;
  --white:  #ffffff;
  --gray-50:#f8f8f6;
  --gray-100:#f0eeeb;
  --gray-200:#e0ddd8;
  --gray-400:#9a9690;
  --gray-600:#6b6760;
  --gray-900:#1a1916;
  --wa-green: #25D366;

  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Open Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}
html {
  overflow-x: hidden;
}
img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- UTILS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .container { padding: 0 24px; }
}
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(192,57,43,.09);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.section-desc {
  margin-top: 12px;
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--sm  { padding: 8px 18px; font-size: .85rem; }
.btn--lg  { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192,57,43,.3);
}
.btn--primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,.4);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: rgba(255,255,255,.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
.btn--wa:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 0;
}
.header.scrolled .nav__logo .logo-text { color: var(--navy); }
.header.scrolled .nav__link { color: var(--gray-600); }
.header.scrolled .nav__link:hover { color: var(--red); }
.header.scrolled .nav__burger span { background: var(--navy); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  color: var(--white);
  transition: color var(--transition);
}
.logo-text strong { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--white); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */

/* ══════════════════════════════════════════════
   HERO — Mobile-first, zéro conflit
   Règle unique par breakpoint, pas de !important
   ══════════════════════════════════════════════ */

/* ── Layout global ── */
.hero {
  position: relative;
  height: auto;          /* s'adapte au contenu sur mobile */
  min-height: auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;    /* bloque tout débordement horizontal */
  overflow-y: visible;
}

/* ── Fond slideshow ── */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform 7s ease;
}
.hero__slide.active img { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,30,48,.88) 0%,
    rgba(192,57,43,.65) 50%,
    rgba(15,15,15,.80) 100%
  );
}

/* ── Dots ── */
.hero__dots {
  position: absolute; bottom: 16px; right: 14px;
  display: flex; flex-direction: column; gap: 5px; z-index: 6;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none;
  cursor: pointer; padding: 0; transition: all .3s ease;
}
.hero__dot.active { background: var(--orange); height: 18px; border-radius: 3px; }

/* ── Float cards : masquées par défaut ── */
.hero__float-card { display: none; }

/* ════════════════════════════════════════
   CONTENU — Base mobile
   Colonne : badge › titre › texte › btns › stats
   ════════════════════════════════════════ */
.hero__content {
  position: relative;
  z-index: 3;
  /* Largeur strictement limitée à l'écran */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Padding mobile compact */
  padding: 90px 20px 24px;
  /* Colonne */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Pas de overflow */
  overflow: hidden;
}

/* ── Badge ── */
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-size: 11px; font-weight: 600;
  letter-spacing: .05em; color: var(--orange);
  background: rgba(243,156,18,.15); border: 1px solid rgba(243,156,18,.4);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 10px;
  /* Empêche tout débordement */
  max-width: 100%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  box-sizing: border-box;
}
.hero__badge-dot {
  width: 6px; height: 6px; background: var(--orange);
  border-radius: 50%; flex-shrink: 0;
  animation: blinkDot 1.4s ease-in-out infinite;
}
@keyframes blinkDot { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* ── Titre ── */
.hero__title {
  display: flex; flex-direction: column; width: 100%;
  font-family: var(--ff-head); font-weight: 900; color: #fff;
  margin-bottom: 10px; overflow: hidden;
}
.hero__title-line   { display: block; line-height: 1.1; word-break: break-word; }
/* Tailles MOBILES */
.hero__title-line--1 { font-size: 16px; opacity: .85; }
.hero__title-line--2 { font-size: 30px; }
.hero__title-line--2 em {
  font-style: normal; color: var(--orange);
  text-shadow: 0 0 28px rgba(243,156,18,.45);
}
.hero__title-line--3 { font-size: 20px; font-weight: 700; opacity: .9; }

/* ── Sous-titre ── */
.hero__subtitle {
  font-size: 14px; color: rgba(255,255,255,.82);
  line-height: 1.55; margin-bottom: 18px;
  width: 100%; word-break: break-word; overflow-wrap: break-word;
}
.hero__subtitle strong { color: #fff; font-weight: 600; }

/* ── Boutons : colonne pleine largeur ── */
.hero__actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 18px; width: 100%;
}
.hero__actions .btn {
  width: 100%; justify-content: center; text-align: center;
  padding: 14px 16px; font-size: 14px; font-weight: 700;
  border-radius: 12px; box-sizing: border-box; white-space: nowrap;
  overflow: hidden;
}

/* Pulse WA */
.btn--pulse { position: relative; }
.btn--pulse::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: inherit; border: 2px solid var(--wa-green);
  animation: btnPulse 2s ease-in-out infinite; pointer-events: none;
}
@keyframes btnPulse { 0%{transform:scale(1);opacity:.7;} 100%{transform:scale(1.12);opacity:0;} }

/* ── Stats ── */
.hero__stats {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 12px;
  padding: 10px 8px; overflow: hidden;
}
.stat {
  flex: 1; min-width: 0; display: flex; flex-direction: column;
  align-items: center; gap: 2px; text-align: center;
}
.stat__num {
  display: block; font-family: var(--ff-head); font-size: 15px;
  font-weight: 800; color: #fff; line-height: 1.1; white-space: nowrap;
}
.stat__label {
  font-size: 9px; color: rgba(255,255,255,.65);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.stat__divider { width: 1px; height: 26px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ── Trust bar ── */
.hero__trust {
  position: relative; z-index: 3;
  background: rgba(192,57,43,.92); backdrop-filter: blur(8px);
  padding: 9px 0; border-top: 1px solid rgba(255,255,255,.1); flex-shrink: 0;
}
.hero__trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 4px 10px; overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--ff-head); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.92); white-space: nowrap;
}
.trust-item span { font-size: 13px; }
.trust-sep { display: none; }

/* ── Scroll indicator ── */
.hero__scroll { display: none; }
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4;} 50%{opacity:1;} }

/* ════════════════════════════════════════════════════
   @media (max-width: 768px) — Renforcement mobile
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero               { height: auto; min-height: auto; }
  .hero__content      { padding: 88px 16px 20px; max-width: 100%; overflow: hidden; }

  .hero__title-line--1 { font-size: 15px; }
  .hero__title-line--2 { font-size: 30px; }
  .hero__title-line--3 { font-size: 19px; }
  .hero__title         { margin-bottom: 10px; }

  .hero__subtitle      { font-size: 14px; margin-bottom: 16px; line-height: 1.5; }

  .hero__actions       { flex-direction: column; gap: 10px; margin-bottom: 16px; }
  .hero__actions .btn  { width: 100%; padding: 13px 14px; font-size: 14px; }

  .hero__stats         { padding: 8px 6px; }
  .stat__num           { font-size: 14px; }
  .stat__label         { font-size: 9px; }
  .stat__divider       { height: 22px; }

  .hero__float-card    { display: none; }
  .hero__scroll        { display: none; }
  .hero__dots          { bottom: 12px; right: 10px; }
  .hero__trust         { padding: 8px 0; }
  .trust-sep           { display: none; }
  .trust-item          { font-size: 10px; }
}

/* ════════════════════════════════════════
   @media (min-width: 769px) — Tablette
   ════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero { min-height: 100svh; height: auto; }
  .hero__content      { padding: 110px 28px 40px; max-width: 680px; }
  .hero__title-line--1 { font-size: 20px; }
  .hero__title-line--2 { font-size: 46px; }
  .hero__title-line--3 { font-size: 26px; }
  .hero__title        { margin-bottom: 16px; }
  .hero__subtitle     { font-size: 16px; margin-bottom: 26px; }
  .hero__actions      { flex-direction: row; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
  .hero__actions .btn { width: auto; min-width: 175px; font-size: 15px; padding: 14px 22px; }
  .hero__stats        { width: fit-content; padding: 13px 18px; gap: 14px; }
  .stat__num          { font-size: 20px; }
  .stat__label        { font-size: 11px; }
  .stat__divider      { height: 32px; }
  .hero__dots         { bottom: 90px; right: 20px; }
  .hero__trust        { padding: 11px 0; }
  .trust-item         { font-size: 12px; }
}

/* ════════════════════════════════════════
   @media (min-width: 1024px) — Desktop
   ════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero { min-height: 100svh; height: auto; }
  .hero__content      { padding: 130px 0 60px; max-width: 760px; justify-content: center; }
  .hero__badge        { font-size: 13px; margin-bottom: 22px; padding: 7px 18px; }
  .hero__title        { margin-bottom: 20px; }
  .hero__title-line--1 { font-size: clamp(22px, 2.2vw, 34px); }
  .hero__title-line--2 { font-size: clamp(48px, 5.5vw, 78px); }
  .hero__title-line--3 { font-size: clamp(28px, 2.8vw, 42px); }
  .hero__subtitle     { font-size: 17px; max-width: 520px; margin-bottom: 32px; }
  .hero__actions      { flex-direction: row; gap: 14px; margin-bottom: 38px; }
  .hero__actions .btn { width: auto; padding: 15px 28px; font-size: 16px; }
  .hero__stats        { width: fit-content; padding: 16px 24px; gap: 20px; }
  .stat__num          { font-size: 22px; }
  .stat__label        { font-size: 12px; }
  .stat__divider      { height: 38px; }
  .hero__float-card   { display: flex; }
  .hero__float-card--1 { top: 30%; right: 8%; }
  .hero__float-card--2 { top: 52%; right: 8%; }
  .hero__scroll       {
    display: flex; position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%); z-index: 4; flex-direction: column;
    align-items: center; gap: 6px; color: rgba(255,255,255,.5);
    font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  }
  .hero__dots         { bottom: 120px; right: 48px; }
  .trust-sep          { display: block; }
  .trust-item         { font-size: 13px; }
  .hero__trust        { padding: 13px 0; }
}

/* ---------- AVANTAGES ---------- */
.avantages {
  padding: 96px 0;
  background: var(--gray-50);
}

.avantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.avantage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  text-align: center;
}
.avantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(192,57,43,.15);
}
.avantage-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 70px; height: 70px;
  line-height: 70px;
  background: rgba(192,57,43,.07);
  border-radius: 50%;
}
.avantage-card h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.avantage-card p { color: var(--gray-600); font-size: .92rem; }

/* ---------- MENU SECTION ---------- */
.menu-section {
  padding: 96px 0;
  background: var(--white);
}

.menu__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.dish-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.dish-card__img-wrap img {
  width: 100%; height: 100%;
  transition: transform .4s ease;
}
.dish-card:hover .dish-card__img-wrap img { transform: scale(1.05); }

.dish-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--ff-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 11px;
  border-radius: 100px;
  background: var(--orange);
  color: var(--white);
}
.dish-badge--hot { background: var(--red); }
.dish-badge--new { background: var(--navy); }

.dish-card__body { padding: 20px; }

.dish-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.dish-card__name {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.dish-card__price {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--red);
  white-space: nowrap;
}
.dish-card__price small { font-size: .7rem; font-weight: 600; }

.dish-card__desc {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 80px 0;
  background: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testimonial__stars {
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial p {
  color: var(--gray-600);
  font-size: .92rem;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.6;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-family: var(--ff-head);
  font-size: .9rem;
  color: var(--navy);
}
.testimonial__author span { font-size: .78rem; color: var(--gray-400); }

/* ---------- À PROPOS ---------- */
.apropos {
  padding: 96px 0;
  background: var(--white);
}

.apropos__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.apropos__img-stack {
  position: relative;
  height: 340px;
}
.apropos__img {
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.apropos__img--main {
  width: 85%;
  height: 100%;
  box-shadow: var(--shadow-lg);
}
.apropos__img--secondary {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 52%;
  height: 55%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.apropos__badge {
  position: absolute;
  top: 20px; right: 0;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: var(--ff-head);
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}
.apropos__badge-num { display: block; font-size: 1.5rem; margin-bottom: 2px; }

.apropos__lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 12px;
}
.apropos__text-col p {
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.7;
}

.apropos__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}
.apropos__feature {
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 96px 0;
  background: var(--gray-50);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.contact__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  width: 60px; height: 60px;
  line-height: 60px;
  background: rgba(192,57,43,.08);
  border-radius: 50%;
  display: inline-block;
}
.contact__card h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact__card p { color: var(--gray-600); font-size: .88rem; line-height: 1.6; }

.contact__link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--ff-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
  padding: 8px 18px;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.contact__link:hover { background: var(--red); color: var(--white); }
.contact__link--wa { border-color: var(--wa-green); color: var(--wa-green); }
.contact__link--wa:hover { background: var(--wa-green); color: var(--white); }

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p { font-size: .88rem; line-height: 1.65; max-width: 320px; }

.footer__links h4 {
  font-family: var(--ff-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer__links a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); }

.wa-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid var(--wa-green);
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- SCROLL REVEAL ---------- */
/* Reveal animations - tout visible par défaut */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .65s ease, transform .65s ease;
}
/* Quand JS est actif, les éléments s'animent */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- DISH HIDDEN ---------- */
.dish-card.hidden { display: none; }

/* ===========================================
   TABLET — 640px+
   =========================================== */
@media (min-width: 640px) {
  .avantages__grid { grid-template-columns: repeat(3, 1fr); }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* ===========================================
   DESKTOP — 1024px+
   =========================================== */
@media (min-width: 1024px) {
  .nav__burger { display: none; }
  .nav__links {
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  /* hero__content padding gérée dans le bloc HERO */

  .menu__grid { grid-template-columns: repeat(3, 1fr); }

  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  .apropos__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
  .apropos__img-stack { height: 480px; }
  .apropos__img--secondary { bottom: -30px; }

  .contact__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile nav */
@media (max-width: 1023px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(44,62,80,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .nav__links.open { opacity: 1; pointer-events: all; }
  .nav__link { font-size: 1.4rem; padding: 14px 24px; }
  .header.scrolled .nav__burger span { background: var(--navy); }
}
