/* ================= NAV ================= */
.nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  padding: 22px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
.nav.scrolled {
  background: rgba(8, 11, 20, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-brd);
}
.brand {
  font-family: var(--script);
  font-size: 26px;
  color: var(--rose);
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 30px;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  transition: 0.25s;
}
.nav-links a:hover {
  color: var(--teal);
}
