/* Mobile navigation shared by the Loft Thai site and Journal. */
.contact-rail .rail-spa-menu {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    transition: transform 240ms cubic-bezier(.22, .61, .36, 1), box-shadow 240ms ease;
    will-change: transform;
  }

  .site-header.is-scroll-hidden {
    pointer-events: none;
    box-shadow: none;
    transform: translate3d(0, -105%, 0);
  }

  .contact-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-bottom: env(safe-area-inset-bottom);
    background: #080808;
  }

  .contact-rail a {
    min-width: 0;
  }

  .contact-rail .rail-spa-menu {
    display: flex;
  }

  [data-smart-sticky-submenu="ready"] {
    top: var(--lt-mobile-header-offset, 84px) !important;
    transition: top 240ms cubic-bezier(.22, .61, .36, 1);
  }

  html.lt-smart-mobile-header-hidden [data-smart-sticky-submenu="ready"] {
    top: 0 !important;
  }

  /* Keep the promotions submenu sticky without reintroducing horizontal scroll. */
  .promo-main {
    overflow: clip !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  [data-smart-sticky-submenu="ready"] {
    transition-duration: 1ms;
  }
}
