/* ============================================================
   nav.css — Top navigation bar
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,146,42,0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 18px;
  color: var(--navy); letter-spacing: -0.5px; flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 15px;
  color: var(--white); letter-spacing: 0.3px; line-height: 1.2;
}
.nav-logo-sub {
  font-size: 10px; color: var(--gold-light);
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 300;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 13px; letter-spacing: 0.8px; text-transform: uppercase;
  font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--gold-light); }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 8px 20px; border-radius: 3px;
  transition: all 0.2s !important;
}
.nav-cta:hover,
.nav-cta.nav-active {
  background: var(--gold) !important;
  color: var(--navy) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); margin: 5px 0; transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
