/* responsive.css — mobile-first strict, media queries élargissement */

/* ======== SCROLL PADDING ADAPTATIF ======== */
@media (min-width: 768px) {
  html { scroll-padding-top: var(--header-h); }
}

/* ======== HEADER DESKTOP ======== */
@media (min-width: 768px) {
  .site-header { height: var(--header-h); }
  main { padding-top: var(--header-h); }

  /* Cacher le burger sur desktop */
  .burger { display: none !important; }
  .menu-mobile { display: none !important; }

  /* Afficher nav desktop + CTA */
  .nav-desktop { display: flex; }
  .header-cta { display: flex; }
}

/* ======== STATS STRIP ======== */
@media (max-width: 639px) {
  /* Pas de border-left sur mobile (flex-wrap) */
  .stat-item + .stat-item { border-left: 0; padding-left: 0; }
  .stats-grid { gap: 16px; }
}

/* ======== HERO CTA — desktop côte à côte ======== */
@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
  .hero-cta .btn {
    width: auto;
    justify-content: flex-start;
  }
}

/* ======== ABOUT GRID — desktop ======== */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(32px, 5vw, 64px);
  }

  .about-photo {
    order: 0;
  }

  .about-photo img {
    aspect-ratio: 3/4;
  }
}

/* ======== ZONE D'INTERVENTION — desktop ======== */
@media (min-width: 768px) {
  .zone-cols {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

/* ======== CONTACT — desktop ======== */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }

  .contact-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-cta-group .btn {
    width: auto;
    flex: 1;
    min-width: 180px;
  }
}

/* ======== GALERIE SLIDER ======== */
@media (min-width: 768px) {
  .gal-slide {
    flex: 0 0 clamp(320px, 30vw, 420px);
  }
}

/* ======== AVIS CAROUSEL ======== */
@media (min-width: 768px) {
  .avis-card {
    flex: 0 0 clamp(300px, 30vw, 360px);
  }
}

/* ======== FAQ — espacement ======== */
@media (min-width: 768px) {
  .faq-trigger {
    font-size: 1.05rem;
    padding: 22px 4px;
  }
}

/* ======== FOOTER ======== */
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

/* ======== FAB — masquer sur desktop ======== */
@media (min-width: 900px) {
  .fab-call { display: none; }
}

/* ======== SECTIONS spacings desktop ======== */
@media (min-width: 768px) {
  section { padding: clamp(64px, 8vw, 96px) 0; }
  .stats-strip { padding: clamp(36px, 5vw, 56px) 0; }
  .hero-immersif { margin-top: calc(-1 * var(--header-h)); padding-top: calc(var(--header-h) + clamp(40px, 6vw, 72px)); }
}

/* wf-noxoverflow : reveal vertical (le slide horizontal deborde la largeur sur mobile) */
[data-reveal]:not(.in){ transform: translateY(18px) !important; }
