/* =========================================================
   LARA'S TABLE — Feuille de style
   Ambiance : étalage de marché, coloré, frais et chaleureux
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  /* Palette marché */
  --cream:        #FFF8EE;
  --cream-2:      #FFF1DE;
  --ink:          #2B2016;
  --ink-soft:     #5A4A3A;

  --tomato:       #E64A3B;
  --tomato-dk:    #C7362A;
  --orange:       #F79020;
  --orange-dk:    #E0770B;
  --yellow:       #FFC13B;
  --green:        #46A24A;
  --green-dk:     #2F7D3A;
  --leaf:         #7FB63B;
  --pepper:       #D8232A;
  --pepper-dk:    #B01B22;
  --grape:        #7A4FC0;
  --grape-dk:     #5F37A3;

  --shadow:       0 14px 34px rgba(80, 45, 20, .12);
  --shadow-sm:    0 6px 16px rgba(80, 45, 20, .10);
  --radius:       22px;
  --radius-lg:    32px;

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Nunito", system-ui, -apple-system, sans-serif;
  --font-hand: "Caveat", cursive;

  --maxw: 1160px;
}

/* ---------- Reset léger ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 .4em; font-weight: 900; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: .82em 1.5em; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap; text-align: center;
}
.btn-lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--tomato); color: #fff; box-shadow: 0 8px 20px rgba(230,74,59,.34); }
.btn-primary:hover { background: var(--tomato-dk); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(230,74,59,.42); }
.btn-outline { background: #fff; color: var(--tomato); box-shadow: inset 0 0 0 2.5px var(--tomato); }
.btn-outline:hover { background: var(--tomato); color: #fff; transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--green-dk); box-shadow: inset 0 0 0 2.5px var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; transform: translateY(-3px); }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,238,.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(230,74,59,.10);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.logo { display: inline-flex; align-items: center; gap: .45em; font-family: var(--font-head); font-weight: 900; font-size: 1.4rem; color: var(--ink); }
.logo-mark { font-size: 1.5rem; }
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  display: inline-block; padding: .5em .8em; border-radius: 999px;
  font-weight: 700; font-size: .95rem; color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--cream-2); color: var(--tomato); }
.btn-nav { padding: .6em 1.25em; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { display: flex; flex-direction: column; gap: 4px; padding: 16px 24px 24px; background: var(--cream); border-bottom: 2px solid rgba(230,74,59,.1); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: .7em .4em; font-weight: 700; color: var(--ink); border-bottom: 1px solid rgba(0,0,0,.05); }
.mobile-menu a.btn { border: none; color: #fff; margin-top: 10px; justify-content: center; }

/* ---------- HÉRO ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,193,59,.40), transparent 40%),
    radial-gradient(circle at 88% 12%, rgba(216,35,42,.28), transparent 42%),
    radial-gradient(circle at 78% 82%, rgba(70,162,74,.30), transparent 45%),
    radial-gradient(circle at 20% 88%, rgba(247,144,32,.30), transparent 45%),
    linear-gradient(180deg, var(--cream-2), var(--cream));
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-block; background: #fff; color: var(--green-dk);
  font-weight: 800; font-size: .9rem; padding: .5em 1em; border-radius: 999px;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.hero h1 { font-size: clamp(1.5rem, 2.9vw, 2.2rem); letter-spacing: -.3px; margin-bottom: .5em; }
.hl { position: relative; white-space: nowrap; }
.hl-green { color: var(--green-dk); }
.hl-orange { color: var(--orange-dk); }
.hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: .06em; height: .28em;
  border-radius: 999px; z-index: -1; opacity: .5;
}
.hl-green::after { background: var(--leaf); }
.hl-orange::after { background: var(--yellow); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 26px; font-weight: 700; font-size: .95rem; color: var(--ink-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Panier de légumes animé */
.hero-art { display: flex; justify-content: center; }
.produce-basket {
  position: relative; width: min(380px, 72vw); aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, #fff 0 58%, transparent 60%),
    conic-gradient(from 0deg, var(--tomato), var(--orange), var(--yellow), var(--leaf), var(--green), var(--grape), var(--pepper), var(--tomato));
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  animation: spinSlow 60s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.produce-basket .veg {
  position: absolute; font-size: clamp(1.9rem, 5vw, 3.15rem);
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.18));
  animation: bob 4s ease-in-out infinite;
}
.produce-basket .veg { animation-play-state: running; }
.produce-basket { animation-play-state: running; }
.v1 { top: 4%;  left: 44%; } .v2 { top: 18%; left: 76%; animation-delay:.3s;}
.v3 { top: 46%; left: 88%; animation-delay:.6s;} .v4 { top: 76%; left: 76%; animation-delay:.9s;}
.v5 { top: 90%; left: 44%; animation-delay:1.2s;} .v6 { top: 76%; left: 10%; animation-delay:1.5s;}
.v7 { top: 46%; left: 2%;  animation-delay:1.8s;} .v8 { top: 18%; left: 10%; animation-delay:2.1s;}
.v9 { top: 47%; left: 43%; font-size: clamp(2.6rem,7vw,4rem); animation-delay:.4s;}
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* Vague de séparation */
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; z-index: 1;
  background: var(--cream);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60 V28 Q150 0 300 22 T600 22 T900 22 T1200 20 V60 Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60 V28 Q150 0 300 22 T600 22 T900 22 T1200 20 V60 Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
}

/* ---------- Bandeau confiance ---------- */
.trust-strip { background: var(--green-dk); color: #fff; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; padding: 16px 24px; font-weight: 700; font-size: .95rem; }

/* ---------- Sections génériques ---------- */
.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.kicker { display: inline-block; font-family: var(--font-hand); font-size: 1.6rem; color: var(--pepper); font-weight: 700; line-height: 1; margin-bottom: 6px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-sub { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }

/* ---------- Cartes services ---------- */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.service-card { position: relative; overflow: hidden; border-top: 6px solid var(--tomato); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-icon { font-size: 2.6rem; margin-bottom: 14px; line-height: 1; }
.service-card h3 { font-size: 1.28rem; }
.service-card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.sc-green  { border-top-color: var(--green); }
.sc-pepper   { border-top-color: var(--pepper); }
.sc-purple { border-top-color: var(--grape); }
.sc-orange { border-top-color: var(--orange); }

/* ---------- Comment ça marche (fusionné dans Services) ---------- */
.how-subhead { margin-top: 78px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; list-style: none; padding: 0; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 40px 24px 28px; text-align: center; box-shadow: var(--shadow-sm); }
.step-num {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--tomato); color: #fff;
  font-family: var(--font-head); font-weight: 900; font-size: 1.3rem;
  display: grid; place-items: center; box-shadow: 0 6px 14px rgba(230,74,59,.4);
}
.step:nth-child(2) .step-num { background: var(--orange); box-shadow: 0 6px 14px rgba(247,144,32,.4); }
.step:nth-child(3) .step-num { background: var(--green); box-shadow: 0 6px 14px rgba(70,162,74,.4); }
.step:nth-child(4) .step-num { background: var(--pepper); box-shadow: 0 6px 14px rgba(216,35,42,.4); }
.step-emoji { font-size: 2.4rem; margin: 6px 0 8px; }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* ---------- À propos ---------- */
.about { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.about-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.photo-frame { background: #fff; padding: 14px; border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(-2deg); }
.about-img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: 20px; display: block; }
.photo-placeholder {
  aspect-ratio: 4/5; border-radius: 20px; display: grid; place-content: center; gap: 8px; text-align: center;
  color: var(--ink-soft); font-weight: 700;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,193,59,.5), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(70,162,74,.45), transparent 45%),
    var(--cream-2);
  border: 3px dashed rgba(230,74,59,.35);
}
.photo-placeholder span { font-size: 3rem; }
.about-sticker {
  position: absolute; bottom: -18px; right: -14px;
  background: var(--yellow); color: var(--ink); font-family: var(--font-hand); font-weight: 700;
  font-size: 1.5rem; line-height: 1.05; text-align: center; padding: 14px 20px; border-radius: 18px;
  box-shadow: var(--shadow-sm); transform: rotate(4deg);
}
.about-copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.about-copy p { color: var(--ink-soft); font-size: 1.06rem; }
.signature { font-family: var(--font-hand); font-size: 1.8rem; color: var(--tomato); font-weight: 700; }
.about-stats { display: flex; gap: 34px; margin-top: 22px; }
.about-stats li { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--font-head); font-size: 2rem; color: var(--green-dk); line-height: 1; }
.about-stats span { color: var(--ink-soft); font-weight: 700; font-size: .9rem; }

/* ---------- Menus ---------- */
.menu { background: var(--cream); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-col { background: #fff; border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); border-bottom: 7px solid var(--green); }
.mc-green  { border-bottom-color: var(--green); }
.mc-orange { border-bottom-color: var(--orange); }
.mc-pepper   { border-bottom-color: var(--pepper); }
.menu-col h3 { font-size: 1.3rem; margin-bottom: 16px; }
.menu-col li { padding: 12px 0; border-bottom: 1px dashed rgba(0,0,0,.12); color: var(--ink-soft); font-weight: 600; display: flex; align-items: flex-start; gap: 10px; }
.menu-col li:last-child { border-bottom: none; }
.menu-col li::before { content: "🍴"; font-size: .95rem; }
.menu-note { text-align: center; margin-top: 34px; font-weight: 700; color: var(--green-dk); font-size: 1.05rem; }

/* ---------- Témoignages ---------- */
.testimonials { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  position: relative; background: #fff; border-radius: var(--radius); padding: 34px 28px 26px;
  box-shadow: var(--shadow-sm); border-top: 6px solid var(--green); margin: 0;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: "\201C"; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-head); font-size: 4.5rem; line-height: 1; color: rgba(0,0,0,.07);
}
.tc-green  { border-top-color: var(--green); }
.tc-pepper   { border-top-color: var(--pepper); }
.tc-orange { border-top-color: var(--orange); }
.stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card blockquote { margin: 0 0 20px; }
.testimonial-card blockquote p { margin: 0; color: var(--ink); font-size: 1.02rem; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-size: 1.5rem; background: var(--cream-2); flex-shrink: 0;
}
.testimonial-card figcaption strong { display: block; font-family: var(--font-head); font-weight: 600; }
.testimonial-card figcaption small { color: var(--ink-soft); font-weight: 700; }

/* ---------- Zoom postpartum (intégré aux Services) ---------- */
.pp-block {
  margin-top: 30px; padding: 28px 30px;
  background: linear-gradient(135deg, #FFF3E4, #FFE9DC);
  border-radius: var(--radius); border-left: 7px solid var(--pepper);
  box-shadow: var(--shadow-sm);
}
.pp-tag {
  display: inline-block; background: var(--pepper); color: #fff;
  font-weight: 800; font-size: .8rem; padding: .35em .9em;
  border-radius: 999px; margin-bottom: 12px;
}
.pp-block h2 { font-size: 1.4rem; margin-bottom: .3em; }
.pp-head { margin-bottom: 22px; }
.pp-head p { color: var(--ink-soft); margin: 0; font-size: .97rem; max-width: 68ch; }
.pp-points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; margin-bottom: 20px; }
.pp-points li { display: flex; gap: 13px; align-items: flex-start; }
.pp-points li span { font-size: 1.6rem; line-height: 1.1; flex-shrink: 0; }
.pp-points li div { color: var(--ink-soft); font-size: .94rem; line-height: 1.45; }
.pp-points strong { color: var(--ink); }
.pp-block .btn { margin-top: 0; }

/* ---------- Tarifs ---------- */
.pricing { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 38px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; border: 2px solid rgba(0,0,0,.05); }
.price-card.featured { border-color: var(--tomato); box-shadow: var(--shadow); transform: scale(1.035); background: linear-gradient(180deg, #fff, var(--cream)); }
.badge-popular {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--tomato); color: #fff; font-weight: 800; font-size: .82rem;
  padding: .45em 1.1em; border-radius: 999px; box-shadow: 0 6px 14px rgba(230,74,59,.4); white-space: nowrap;
}
.price-card h3 { font-size: 1.5rem; color: var(--ink); }
.price { display: flex; flex-direction: column; margin: 6px 0 4px; }
.price .from { font-size: .82rem; color: var(--ink-soft); font-weight: 700; }
.price .amount { font-family: var(--font-head); font-size: 2.7rem; font-weight: 900; color: var(--tomato); line-height: 1; }
.price .per { font-size: .9rem; color: var(--ink-soft); font-weight: 700; }
.price-quote { display: flex; flex-direction: column; margin: 6px 0 4px; font-family: var(--font-head); font-weight: 900; font-size: 1.9rem; color: var(--tomato); line-height: 1.05; }
.price-quote span { font-family: var(--font-body); font-size: .9rem; font-weight: 700; color: var(--ink-soft); }
.price-desc { color: var(--ink-soft); font-weight: 600; margin: 4px 0 18px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex-grow: 1; }
.price-features li { color: var(--ink-soft); font-size: .96rem; }
.price-card .btn { margin-top: auto; }
.pricing-note { text-align: center; margin-top: 34px; font-weight: 700; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden; border-left: 6px solid var(--orange); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 24px; font-family: var(--font-head);
  font-weight: 600; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--tomato); font-weight: 400; transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { margin: 0; color: var(--ink-soft); }
.faq-item:nth-child(2n) { border-left-color: var(--green); }
.faq-item:nth-child(3n) { border-left-color: var(--pepper); }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(160deg, var(--green-dk), #245e2c); color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact .kicker { color: var(--yellow); }
.contact-copy h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.contact-copy p { color: rgba(255,255,255,.9); font-size: 1.08rem; }
.contact-details { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; font-weight: 700; }
.contact-details li { display: flex; align-items: center; gap: 12px; }
.contact-details a:hover { color: var(--yellow); text-decoration: underline; }

.contact-form { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 800; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; padding: .8em .95em;
  border: 2px solid rgba(0,0,0,.12); border-radius: 12px; background: var(--cream); color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(70,162,74,.18); background: #fff;
}
.field textarea { resize: vertical; }
.form-status { text-align: center; font-weight: 700; margin: 14px 0 0; min-height: 1.2em; }
.form-status.ok { color: var(--green-dk); }
.form-status.err { color: var(--tomato); }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--ink); color: #fff; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding: 56px 24px 40px; }
.logo-footer { color: #fff; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,.72); max-width: 38ch; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 8px; }
.site-footer h4 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 6px; color: var(--yellow); }
.footer-nav a, .footer-contact a, .footer-contact span { color: rgba(255,255,255,.78); font-weight: 600; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .container { padding: 18px 24px; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.6); font-size: .88rem; text-align: center; }

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .pp-points { grid-template-columns: 1fr; gap: 15px; }
  .pp-block { padding: 24px 22px; }
  .menu-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 380px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
/* Le menu mobile n'existe qu'en dessous de 821px */
@media (min-width: 821px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 820px) {
  .main-nav, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 26px 0 46px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; }
  .produce-basket { width: min(290px, 62vw); }
  .produce-basket .veg { font-size: 1.7rem; }
  .hero-badges { gap: 6px 16px; margin-bottom: 20px; font-size: .87rem; }
  .hero-cta, .hero-badges { justify-content: center; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .services-grid, .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 8px 18px; font-size: .85rem; }
  .about-stats { gap: 22px; justify-content: center; }
  /* Photo plus compacte sur téléphone */
  .about-photo { max-width: 260px; }
  .about-sticker { font-size: 1.2rem; padding: 10px 14px; }
}

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .produce-basket, .produce-basket .veg { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
