/* ============================================================
   CLEAN NAV (NO BOOTSTRAP COLLAPSE)
   ============================================================ */

.site-header {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.site-brand {
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}

/* Desktop menu */
.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  opacity: 0.9;
}

.site-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-cta {
  display: inline-block;
  text-decoration: none;
  background-color: #0b5ed7;
  border: 1px solid #0b5ed7;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* Hamburger button hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* MOBILE breakpoint */
@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-block;
  }

  /* Hide menu by default on mobile */
  .site-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0 4px;
  }

  /* Show menu only when toggled */
  .site-menu.is-open {
    display: flex;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .site-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .site-cta {
    width: fit-content;
  }
}