.sw-h6-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid transparent;
  background: transparent;
  font-family: 'Inter', sans-serif;
}
.sw-h6-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
}
.sw-h6-logo-mark {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: #FF6B5A;
  color: #FFF6EE;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 6px 18px -8px rgba(255, 107, 90, 0.6);
  overflow: hidden;
}
.sw-h6-logo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.sw-h6-logo[data-mode="image"] .sw-h6-logo-img { display: block; }
.sw-h6-logo[data-mode="image"] .sw-h6-logo-letter { display: none; }
.sw-h6-brand {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 19px;
  color: #3D2817;
}
.sw-h6-links {
  display: flex; gap: 2.2rem;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.88rem;
  color: #7A5A3F;
  font-weight: 500;
}
.sw-h6-links a { color: inherit; text-decoration: none; transition: color 0.2s; }
.sw-h6-links a:hover { color: #FF6B5A; }
.sw-h6-emergency {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF6B5A;
  color: #FFF6EE;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 6px 18px -8px rgba(255, 107, 90, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sw-h6-emergency:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(255, 107, 90, 0.6); }
@media (max-width: 900px) {
  .sw-h6-links { display: none; }
  .sw-h6-nav { padding: 1.2rem 1.5rem; }
}
