/* ================================
   NAV — single source of truth
   ================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem 3rem;
  background: rgba(8,8,8,0.97);
}

.nav-logo {
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: flex-start;
  top: 6px;
}

.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  position: relative;
  top: 8px;
}

.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
}
