/* ============================================
   CADLEM CONSULTANTS — Navigation
   ============================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem var(--section-pad-x);
  transition: all 0.5s ease;
}

nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  padding: 1.2rem var(--section-pad-x);
  border-bottom: 1px solid rgba(184,150,12,0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.nav-logo sup {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  vertical-align: super;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.6rem !important;
  letter-spacing: 0.25em !important;
  background: #1a1610 !important;
  border: 1.5px solid #1a1610 !important;
  padding: 0.7rem 1.8rem !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  border-radius: 2px !important;
  -webkit-text-fill-color: #ffffff !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--gold-light);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 400;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .mm-cta {
  font-size: 0.7rem !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--gold-light) !important;
  border: 1px solid rgba(212,175,55,0.4);
  padding: 0.8rem 2.5rem;
}
