/* Mobile-first responsive overrides */

@media (max-width: 767px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .page-header {
    min-height: auto;
    height: auto;
    padding: calc(var(--nav-height) + var(--space-md)) var(--space-md) var(--space-md);
  }

  .page-header__title {
    font-size: clamp(1.75rem, 8.5vw, 2.5rem);
    letter-spacing: -0.02em;
  }

  .map-section__inner {
    height: clamp(260px, 40vh, 380px);
  }

  .map-section__frame {
    filter: grayscale(0.05);
  }

  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  :root {
    --nav-height: 90px;
  }
}
