/* responsive.css — mobile-first overrides */

/* === HEADER MOBILE === */
@media (max-width: 767px) {
  .site-header { height: var(--header-h-mobile); }
  .nav-desktop { display: none; }
  .header-cta { display: none; }
  html { scroll-padding-top: var(--header-h-mobile); }
}

/* FAB mobile : visible sous 768px */
@media (max-width: 767px) {
  .fab-call { display: flex; }
}

/* === HERO EDITORIAL CENTRE mobile === */
@media (max-width: 767px) {
  .hero-centre {
    padding: calc(var(--header-h-mobile) + 28px) 0 24px;
  }
  .hero-centre__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }
  .hero-centre__band {
    aspect-ratio: 16/10;
    border-radius: var(--r-lg);
  }
  .hero-centre__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-centre__cta .btn {
    width: 100%;
  }
}

/* === SERVICES GRID mobile === */
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* === ABOUT mobile === */
@media (max-width: 768px) {
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-photo { max-width: 420px; margin: 0 auto; }
}

/* === GALERIE GRID mobile === */
@media (max-width: 768px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gal-grid { grid-template-columns: 1fr; }
}

/* === GALERIE MASONRY mobile === */
@media (max-width: 768px) {
  .gal-masonry { column-count: 2; }
}
@media (max-width: 480px) {
  .gal-masonry { column-count: 1; }
}

/* === STATS mobile === */
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); }
  .stat-number { font-size: 2.4rem; }
}

/* === AVIS mobile : scroll snap horizontal === */
@media (max-width: 767px) {
  .avis-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .avis-card {
    flex: 0 0 auto;
    width: min(85vw, 380px);
    scroll-snap-align: start;
  }
}

/* === FAQ mobile === */
@media (max-width: 560px) {
  .faq-trigger { font-size: 0.97rem; padding: 16px 0; }
}

/* === ZONE mobile === */
@media (max-width: 768px) {
  .zone-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .map-wrapper iframe { height: 280px; }
}

/* === CONTACT mobile === */
@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cta-stack .btn { width: 100%; }
}

/* === TEASER REALISATIONS mobile === */
@media (max-width: 640px) {
  .teaser-realisations .container {
    flex-direction: column;
    text-align: center;
  }
}

/* === FOOTER mobile === */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* === MENU BURGER : visible mobile === */
@media (min-width: 768px) {
  .burger { display: none; }
  .menu-mobile { display: none !important; }
}

/* wf-contrast-enforced */
.site-footer, .site-footer * { color: oklch(94% 0.018 162) !important; }
/* /wf-contrast-enforced */

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