/* ── NAV — hamburger dropdown ── */
.site-nav {
  position: sticky !important;
  top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(83,74,183,0.13);
  box-shadow: 0 1px 4px rgba(60,52,137,0.07);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; display: block; }

/* Hide any accidental .nav-links text */
.nav-links { display: none !important; }

/* ── Burger button ── */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none;
  border: 1.5px solid rgba(83,74,183,0.28);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-burger:hover { background: #EEEDFE; }
.nav-burger span {
  display: block;
  height: 2px; background: #1A1730; border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.15s ease, width 0.15s ease;
  transform-origin: center;
}
.nav-burger span:nth-child(1) { width: 18px; }
.nav-burger span:nth-child(2) { width: 18px; }
.nav-burger span:nth-child(3) { width: 11px; }
/* X state */
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 18px; }

/* ── Dropdown panel — hidden by JS inline style ── */
.nav-menu {
  display: none; /* JS overrides with style="display:block" */
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid rgba(83,74,183,0.13);
  border-bottom: 1px solid rgba(83,74,183,0.13);
  box-shadow: 0 8px 24px rgba(60,52,137,0.12);
  z-index: 199;
}
.nav-menu-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0.6rem 1.25rem 0.9rem;
  display: flex; flex-direction: column; gap: 2px;
}
.nav-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 10px;
  font-size: 15px; color: #4A4668; font-weight: 400;
  text-decoration: none;
}
.nav-menu a:hover  { background: #EEEDFE; color: #3C3489; }
.nav-menu a.active { background: #EEEDFE; color: #3C3489; font-weight: 500; }
.nav-menu-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(83,74,183,0.26); flex-shrink: 0;
}
.nav-menu a.active .nav-menu-dot { background: #1D9E75; }
