.navbar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-soft);
}

.navbar .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-text);
}

.brand-title{ font-family: Montserrat; font-weight: 700; }
.brand-subtitle{ font-size: 14px; color: var(--c-muted); }

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(233,236,238,0.6);
}

.login-logo {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(233,236,238,0.6);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 520px) {
  .nav-text { display: none; }
  .nav-actions .btn { padding: 10px 12px; }
}

