/* Multipage navigation: every primary area lives on its own URL. */
html { scroll-behavior: auto; }

body.multiPage { overflow-x: hidden; }

.multiPage header nav a.active {
  color: #f3b21a;
}

.multiPage header nav a.active::after {
  transform: scaleX(1);
}

.innerPage main > section:first-of-type {
  padding-top: clamp(7rem, 10vw, 9rem);
}

.innerPage main > section:last-of-type {
  min-height: calc(100vh - 5rem);
}

@media (max-width: 900px) {
  .innerPage main > section:first-of-type {
    padding-top: 6.25rem;
  }
}

