/* responsive.css — fine-tuning mobile-first */

/* Mobile (<768px) corrections */
@media (max-width:520px){
  .hero-centre__title{font-size:clamp(2rem,9vw,2.6rem);}
  .hero-centre__sub{font-size:1rem;}
}

/* Tablet */
@media (min-width:560px) and (max-width:899px){
  .hero-centre{padding-top:60px;padding-bottom:32px;}
}

/* Desktop large */
@media (min-width:1280px){
  .hero-centre{padding-top:90px;}
}

/* Reduced motion globaux */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

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