/* Reliable root scrolling after in-page anchor navigation. */
html {
  min-height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  overflow-x: clip;
}

main {
  overflow: visible;
}

#reviews,
#finished-projects,
#before-after,
#our-team,
#request-estimate {
  scroll-margin-top: 16px;
}

/* Review platform order and compact rating summary. */
.proofFirst {
  display: flex;
  flex-direction: column;
}

.proofFirst .reviewStrip:nth-child(2) {
  order: -1;
}

.reviewStrip .stripHead {
  justify-content: flex-start;
  gap: 10px;
}

.reviewStrip .stripHead > span {
  margin-left: 0;
  white-space: nowrap;
}

/* Horizontal swipe remains available; vertical gestures belong to the page. */
.swipeRow,
.projectSwipe,
.finishedSwipe {
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  touch-action: auto;
  -webkit-overflow-scrolling: touch;
}

.swipeRow > *,
.projectSwipe > *,
.finishedSwipe > * {
  scroll-snap-stop: normal;
}

.swipeRow img,
.projectSwipe img,
.finishedSwipe img {
  -webkit-user-drag: none;
  user-select: none;
}

@media (max-width: 560px) {
  .finishedSwipe figure {
    height: min(72svh, 680px);
    min-height: 460px;
  }
}
