html.lmm-lid-active,
body.lmm-lid-enabled.lmm-lid-active {
  overflow: hidden !important;
}

.lmm-lid-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--lmm-lid-z, 999999);
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--lmm-lid-bg, #000);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: transform var(--lmm-lid-duration, 1200ms) cubic-bezier(.77, 0, .175, 1);
  backface-visibility: hidden;
}

.lmm-lid-overlay.is-lifting {
  transform: translate3d(0, -102%, 0);
}

.lmm-lid-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
  user-select: none;
}

.lmm-lid-brand-primary {
  color: var(--lmm-lid-primary, #ff6a00);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(64px, 9vw, 150px);
  font-weight: 800;
  letter-spacing: .02em;
}

.lmm-lid-brand-secondary {
  margin-top: .18em;
  color: var(--lmm-lid-secondary, #fff);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(22px, 2.5vw, 48px);
  font-weight: 400;
  letter-spacing: .08em;
}


/* Use on the first hero when the desktop header is about 166px tall. */
.lmm-home-hero {
  min-height: calc(100vh - 166px);
  min-height: calc(100svh - 166px);
  display: flex;
  align-items: center;
  overflow: clip;
  scroll-snap-align: start;
}

/* Add this class to every major Elementor homepage container after the hero. */
.lmm-fullscreen-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

/* Optional outer wrapper class for gentle desktop snap scrolling. */
@media (min-width: 1025px) {
  .lmm-scroll-snap-page {
    scroll-snap-type: y proximity;
  }
}

@media (max-width: 1024px) {
  .lmm-home-hero,
  .lmm-fullscreen-section {
    min-height: auto;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmm-lid-overlay {
    transition-duration: 1ms !important;
  }
  .lmm-scroll-snap-page {
    scroll-snap-type: none !important;
  }
}
