
/* ---------- Organic ground vines (bottom decorative strip) ---------- */
.ground-vines {
  position: fixed;           /* reste collé à la fenêtre, n'étire pas la page */
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;      /* décoratif */
  transform: translateY(40%);
  will-change: transform;
}
.ground-vines picture,
.ground-vines img {
  display: block;
  width: 100%;
  height: auto;
}
