/* RELUPOURVOUS
   Correctif minimal : header fixe au scroll.
   Aucun autre élément du design n'est modifié. */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

html {
  scroll-padding-top: 100px;
}

@media (max-width: 1040px) {
  html {
    scroll-padding-top: 90px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }
}
