nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  height: 58px;
  background: rgba(8,6,4,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191,28,18,.18);
  overflow: visible;
}

.nav-logo-wrap {
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 32px !important;
  width: auto !important;
  max-height: 32px !important;
  display: block;
  object-fit: contain;
  cursor: pointer;
}

.nav-logo-img {
  display: flex;
  align-items: center;
}
.nav-logo-img img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: .18em;
  color: var(--fg);
}
.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-s);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: color .15s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }

.nav-logo-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  background: var(--bg2);
  border: 1px solid rgba(191,28,18,.25);
  min-width: 160px;
  z-index: 600;
  flex-direction: column;
}
.nav-logo-dropdown.open {
  display: flex;
}
.nav-logo-dropdown a {
  font-family: var(--font-s);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 14px 18px;
  transition: background .15s, color .15s;
  border-bottom: 1px solid rgba(191,28,18,.1);
  text-decoration: none;
}
.nav-logo-dropdown a:last-child {
  border-bottom: none;
}
.nav-logo-dropdown a:hover {
  background: var(--bg3);
  color: var(--red);
}
