/* OwnYour — Canonical Nav — Tier 1 shared stylesheet */
/* NI-Nav-1: Replace with Jinja2 template system post-beta */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28,25,23,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__link {
  font-size: 0.875rem;
  color: var(--gray-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav__link:hover { color: var(--light); }
.nav__login {
  font-size: 0.875rem;
  color: var(--gray-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav__login:hover { color: var(--light); }
.nav__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light);
  background: var(--coral);
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--coral-dark); }
@media (max-width: 640px) {
  .nav { padding: 1rem 1.25rem; }
  .nav__link { display: none; }
  .nav__links { gap: 0.75rem; }
}