/* ── Site Nav ─────────────────────────────────────────────── */
#siteNav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1C2B4A;
  border-bottom: 3px solid #4A90D9;
  box-shadow: 0 2px 12px rgba(28,43,74,0.25);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 58px;
  gap: 32px;
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand span { color: #4A90D9; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-link.active { color: white; }

.nav-cta {
  flex-shrink: 0;
  background: #4A90D9;
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 2px;
  transition: background 0.15s;
}
.nav-cta:hover { background: #3d7ec4; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.2s;
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  #siteNav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 58px;
    left: 0; right: 0;
    background: #1C2B4A;
    padding: 12px 20px 20px;
    border-bottom: 3px solid #4A90D9;
    gap: 2px;
    align-items: flex-start;
  }
  #siteNav.open .nav-cta {
    display: block;
    margin: 10px 20px 0;
    text-align: center;
  }
}
