.site-nav {
  position: relative;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  background: #050505;
  color: #fff;
}

.site-nav .nav-container {
  display: inline-flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .85);
}

.site-nav a {
  display: block;
  padding: 5px clamp(18px, 3.15vw, 50px);
  color: #fff;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fff;
  color: #000;
  outline: none;
}

.site-nav a.active {
  background: #fff;
  color: #000;
}

.site-nav .hamburger {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 900px) {
  .site-nav {
    min-height: 48px;
    justify-content: flex-end;
  }

  .site-nav .hamburger {
    position: static;
    display: flex;
    min-width: 48px;
    min-height: 48px;
    padding: 8px 15px;
    align-items: center;
    justify-content: center;
    transform: none;
    font-size: 28px;
    line-height: 1;
  }

  .site-nav .nav-container {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    flex-direction: column;
    border-top: 1px solid #333;
    border-bottom: 1px solid #fff;
    background: #050505;
  }

  .site-nav .nav-container.active {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 10px;
    border-bottom: 1px solid #333;
    font-size: 18px;
    text-align: center;
  }
}
