.navbar {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  align-items: center;
  width: 100%;
  height: var(--navbar-height);
  min-height: var(--navbar-height);
  padding: 0 clamp(24px, 4.4vw, 70px);
  border-bottom: 1px solid rgba(244, 243, 239, 0.08);
  background: rgba(2, 3, 2, 0.92);
  backdrop-filter: blur(16px);
  grid-template-columns: 1fr auto 1fr;
}

.navbar-brand {
  width: fit-content;
  height: 100%;
  gap: 11px;
  padding-right: clamp(22px, 2.7vw, 42px);
}

.navbar-brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 2.6vw, 42px);
  font-size: 11px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
  color: #898a86;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links .is-active {
  color: var(--white);
}

.nav-links .is-active {
  padding: 8px 14px;
  border: 1px solid rgba(249, 249, 248, 0.12);
  border-radius: 999px;
  background: rgba(249, 249, 248, 0.06);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(252, 199, 81, 0.65);
  border-radius: 999px;
  color: #0c0c09;
  background: var(--gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 24px rgba(252, 199, 81, 0.08);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-button:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  transform: translateY(-1px);
}

.contact-icon {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-button span {
  display: block;
  transform: translateY(0.25px);
}
