.sw-h3-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid #262B33;
  background: transparent;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.sw-h3-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: inherit;
}
.sw-h3-logo-mark {
  position: relative;
  width: 32px; height: 32px;
  background: #C9F948;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.8rem;
  color: #0F1216;
  overflow: hidden;
}
.sw-h3-logo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.sw-h3-logo[data-mode="image"] .sw-h3-logo-img { display: block; }
.sw-h3-logo[data-mode="image"] .sw-h3-logo-letter { display: none; }
.sw-h3-logo-letter { font-family: 'Space Grotesk', sans-serif; }
.sw-h3-brand {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17.6px;
  letter-spacing: 0.05em;
  color: #E8ECF1;
}
.sw-h3-links {
  display: flex; gap: 2rem;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #7B8390; font-weight: 500;
}
.sw-h3-links a { color: inherit; text-decoration: none; transition: color 0.2s; }
.sw-h3-links a:hover { color: #E8ECF1; }
.sw-h3-emergency {
  display: inline-flex; align-items: center; gap: 8px;
  color: #C9F948;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  text-decoration: none;
}
.sw-h3-emergency-dot {
  width: 8px; height: 8px;
  background: #C9F948;
  border-radius: 50%;
  box-shadow: 0 0 12px #C9F948;
}
@media (max-width: 900px) {
  .sw-h3-links { display: none; }
  .sw-h3-nav { padding: 1.2rem 1.5rem; }
}
