/* =========================================================
   Molitor Header / Navigation
   ========================================================= */

.mol-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
}

.mol-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mol-nav-logo img {
  height: 44px;
  width: auto;
}

.mol-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mol-nav-links a {
  font-size: 13px;
  color: #5F5E5A;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.22s;
}

.mol-nav-links a:hover {
  color: #234a93;
}

.mol-nav-cta {
  background: #234a93;
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.22s, transform 0.22s;
  text-decoration: none;
}

.mol-nav-cta:hover {
  background: #1b3870 !important;
  transform: translateY(-1px);
}

.mol-nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mol-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2C2C2A;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.22s;
}

.mol-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #D3D1C7;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.mol-mobile-menu.open {
  display: flex;
}

.mol-mobile-menu a {
  font-size: 14px;
  color: #2C2C2A;
  font-weight: 500;
  padding: 16px 2rem;
  border-bottom: 1px solid #F1EFE8;
  text-decoration: none;
  transition: background 0.22s;
  font-family: 'Inter', sans-serif;
}

.mol-mobile-menu a:hover {
  background: #F1EFE8;
}

.mol-mobile-logo {
  padding: 16px 2rem;
  border-bottom: 1px solid #F1EFE8;
}

.mol-mobile-logo img {
  height: 36px;
  width: auto;
}

.mol-mobile-cta {
  margin: 16px 2rem !important;
  padding: 14px !important;
  background: #234a93 !important;
  color: #fff !important;
  border-radius: 10px;
  text-align: center;
  font-weight: 600 !important;
  border-bottom: none !important;
}

@media (max-width: 768px) {
  .mol-nav-links {
    display: none;
  }

  .mol-nav-hamburger {
    display: block;
  }

  .mol-nav {
    padding: 0 1.25rem;
  }
}