/* =========================================================
   LMEH — GLOBAL NAVIGATION
   ========================================================= */

.lmeh-topbar {
  background: #080808;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.lmeh-topbar-inner {
  width: min(92%, 1440px);
  margin: 0 auto;
  min-height: 44px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hmx-link {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.4px;
}

.hmx-label {
  font-size: 9px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}


/* MAIN NAV */

.lmeh-nav {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid #e3e3e3;
}

.lmeh-nav-inner {
  width: min(92%, 1440px);
  margin: 0 auto;

  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.lmeh-brand img {
  display: block;
  height: 54px;
  width: auto;
}

.lmeh-links {
  display: flex;
  align-items: center;
  gap: 28px;

  list-style: none;
}

.lmeh-links a {
  position: relative;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;

  color: #111111;
}

.lmeh-links a::after {
  content: "";
  position: absolute;

  left: 0;
  right: 100%;
  bottom: -8px;

  height: 2px;
  background: #111111;

  transition: right .2s ease;
}

.lmeh-links a:hover::after,
.lmeh-links a.active::after {
  right: 0;
}


/* MOBILE BUTTON */

.lmeh-menu-toggle {
  display: none;

  border: 0;
  background: transparent;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;

  cursor: pointer;
}


/* MOBILE */

@media (max-width: 900px) {

  .hmx-label {
    display: none;
  }

  .lmeh-nav-inner {
    min-height: 70px;
  }

  .lmeh-brand img {
    height: 46px;
  }

  .lmeh-menu-toggle {
    display: block;
  }

  .lmeh-links {
    position: absolute;

    top: 70px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    align-items: flex-start;

    gap: 0;

    padding: 12px 4% 18px;

    background: #ffffff;

    border-bottom: 1px solid #dddddd;
  }

  .lmeh-links.open {
    display: flex;
  }

  .lmeh-links li {
    width: 100%;
  }

  .lmeh-links a {
    display: block;
    width: 100%;

    padding: 14px 0;

    border-bottom: 1px solid #eeeeee;
  }

  .lmeh-links a::after {
    display: none;
  }

}