/* Shared project scroll snapping.
   Desktop keeps the existing bottom-edge landing.
   Mobile matches the homepage: snap section starts below the fixed header. */
html {
  scroll-snap-type:y mandatory;
}

main > section {
  scroll-snap-align:top;
  scroll-snap-stop:always;
}

.catelier-page main > section:not(.catelier-next-project) {
  scroll-snap-align:start;
}

.catelier-page main > .catelier-next-project {
  scroll-snap-align:none;
  scroll-snap-stop:normal;
}

@media screen and (max-width:767px),
       screen and (orientation:landscape) and (max-height:500px) {
  html {
    scroll-behavior:smooth;
    scroll-snap-type:y mandatory;
    scroll-padding-top:var(--header-height);
  }

  main > section[class] {
    scroll-snap-align:start;
    scroll-snap-stop:always;
    scroll-margin-top:0;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-snap-type:none;
  }
}
