/* ═══════════════════════════════════════════
   NAV — Clean
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--slate-100);
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.nav__logo-accent {
  color: var(--primary);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav__mobile.is-open {
  display: block;
}