/* ===== HOME — Hero (photo réelle en fond) ===== */
.hero {
  position: relative; min-height: 500px;
  display: flex; align-items: center; overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(60,50,40,.72) 0%, rgba(60,50,40,.45) 45%, rgba(60,50,40,.05) 78%, rgba(60,50,40,0) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 50px; padding-bottom: 50px; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 5.5vw, 4.2rem); max-width: 14ch;
  text-shadow: 0 2px 18px rgba(0,0,0,.25); }
.hero h1 .thin { font-weight: 400; }
.hero p { max-width: 34ch; font-size: 1.05rem; color: #f3ece2; text-shadow: 0 1px 10px rgba(0,0,0,.3); }
.hero .btn { margin-top: 22px; }

/* ===== Découvrez + Comment ça marche ===== */
.two-col { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.discover h2 { font-size: 2.2rem; }
.discover .link { color: var(--rosegold); border-bottom: 1px solid var(--rosegold); font-weight: 600; }

.hiw-title { text-align: center; font-size: 2rem; margin-bottom: 30px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.step { text-align: center; }
.step .num { width: 30px; height: 30px; border-radius: 50%; background: var(--rosegold);
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; margin: 0 auto 14px; }
.step .ico { width: 84px; height: 84px; border-radius: 50%; background: var(--cream-2);
  display: grid; place-items: center; margin: 0 auto 16px; color: var(--taupe); }
.step h3 { font-size: 1.25rem; }
.step p { font-size: .88rem; color: var(--muted); }

/* ===== Avantages + Ingrédients phares ===== */
.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.adv-title { font-size: 1.7rem; margin-bottom: 26px; }
.adv-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.adv-item { text-align: center; }
.adv-item .ico { color: var(--sage); margin-bottom: 10px; display:flex; justify-content:center; }
.adv-item h4 { font-family: var(--serif); font-size: 1.1rem; }
.adv-item p { font-size: .78rem; color: var(--muted); }

.ing-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ing-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.ing-card img { height: 110px; width: 100%; object-fit: cover; }
.ing-card .body { padding: 12px 14px; }
.ing-card h4 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 2px; }
.ing-card p { font-size: .78rem; color: var(--muted); margin: 0; }

/* ===== Bandeau CTA ===== */
.cta-band { background: var(--sage); color: #fff; text-align: center; padding: 40px 0; }
.cta-band .small { font-size: .95rem; opacity: .95; }
.cta-band h2 { color: #fff; font-size: 2rem; margin: 6px 0 20px; }

@media (max-width: 900px) {
  .two-col, .adv-grid { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: 1fr; }
  .adv-items, .ing-cards { grid-template-columns: 1fr 1fr; }
}
