main {
	display: flex;
	flex-direction: column;
}

/* ============================================
   PAGE HERO
   ============================================ */

.hero-wrapper {
  height: auto;
}

.hero-wrapper::after {
  display: none;
}

.page-hero__subtitle {
  font-size: 2rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
}

/* ============================================
   MENU SECTIONS
   ============================================ */

.menu-section {
  position: relative;
  height: 54rem;
  overflow: hidden;
}

.menu-section--dark {
  background-color: var(--color-bg);
}

.menu-section--light {
  background-color: #ffffff;
}

.menu-section__img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  user-select: none;
}

.menu-section--dark .menu-section__img {
  height: auto;
  width: 100vw;
  max-width: 1300px;
}

.menu-section--light .menu-section__img {
  height: auto;
  width: 55vw;
  max-width: 850px;
}

.menu-section__inner {
  display: flex;
  align-items: center;
  min-height: 54rem;
  position: relative;
  isolation: isolate;
}

.menu-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 1.2vw, 1.5rem);
}

.menu-section__title {
  font-size: var(--text-h3);
  font-weight: var(--fw-semibold);
  line-height: 1.05;
  color: #ffffff;
}

.menu-section__desc {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: var(--fw-medium);
  color: #ffffff;
  line-height: 1.5;
  max-width: 46rem;
}

.menu-section__content .btn {
  margin-top: clamp(1rem, 1.2vw, 1.5rem);
}

.menu-section--light .menu-section__title,
.menu-section--light .menu-section__desc {
  color: #000000;
}

.btn--dark {
  background-color: #000000;
  color: #ffffff;
  border: none;
}

.btn--dark:hover {
  background-color: #1a1a1a;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.9);
}

@media (max-width: 1024px) {
  .menu-section {
    height: auto;
    padding: var(--section-padding) 0;
  }

  .menu-section__inner {
    min-height: 40rem;
  }
}

@media (max-width: 768px) {
  .menu-section__inner {
    min-height: 30rem;
  }
  
  .menu-section--dark {
    order: 1;	
  }
	
  .callback {
    order: 2;	
  }

  .map {
    order: 3;	
  }  
}
