.site-nav {
  width: 100%;
  height: 118px;
  background: var(--header-bg);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.035);
}

.nav-inner {
  width: 100%;
  max-width: none;
  height: 118px;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}

.logo {
  width: 52%;
  height: 118px;
  flex: 0 0 52%;
  overflow: hidden;
}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.logo img {
  display: block;
  width: 100%;
  height: 118px;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}

.nav-links {
  width: 48%;
  height: 118px;
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding-right: 48px;
  box-sizing: border-box;
  overflow: visible;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1;
  padding: 5px 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover {
  color: #111;
  background: transparent;
  border-color: rgba(0, 0, 0, 0.18);
}

.nav-links a.active {
  color: #111;
  background: var(--accent);
  border-color: transparent;
  padding: 6px 14px;
  box-shadow: none;
}

.nav-links a.active:hover {
  color: #111;
  background: var(--accent);
  border-color: transparent;
}

.nav-divider {
  width: 1px;
  height: 16px;
  flex: 0 0 1px;
  background: rgba(0, 0, 0, 0.09);
  transform: scaleX(0.5);
  transform-origin: center;
}

.nav-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
  .site-nav,
  .nav-inner {
    height: 88px;
  }

  .logo {
    width: 42%;
    height: 88px;
    flex-basis: 42%;
  }

  .logo img {
    height: 88px;
  }

  .nav-links {
    width: 58%;
    height: 88px;
    flex-basis: 58%;
    gap: 12px;
    padding-right: 24px;
  }

  .nav-links a {
    font-size: 12px;
    padding: 5px 6px;
  }

  .nav-links a.active {
    font-size: 12px;
    padding: 6px 11px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    height: auto;
    min-height: 68px;
    padding: 12px 18px;
    overflow: visible;
  }

  .nav-inner {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    overflow: visible;
  }

  .logo {
    width: 100%;
    height: 70px;
    flex-basis: auto;
  }

  .logo img {
    width: 260px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
  }

  .nav-links {
    width: 100%;
    height: auto;
    flex-basis: auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-right: 0;
    white-space: normal;
  }

  .nav-divider {
    height: 16px;
  }
}

/* Sept 3 header refinement */
@media (min-width:1201px){
  .site-nav,.nav-inner,.logo,.logo img,.nav-links{height:118px;}
  .nav-links{justify-content:flex-end;}
}
