.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar a { color: inherit; text-decoration: none; }
.topbar span { display: flex; align-items: center; gap: 6px; }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

nav.scrolled { box-shadow: 0 4px 24px rgba(10,50,80,.1); }

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--blue-dark);
  text-decoration: none;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  width: auto;
}

.logo span { 
  color: var(--blue-dark);
  font-weight: 600;
}

@media (max-width: 600px) {
  .logo span {
    display: none;
  }
}

.nav-links { display: flex; gap: 6px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.nav-links a:hover { background: var(--sky); color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }

.logo-mobile {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}
