.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  white-space: nowrap;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 5px rgba(13, 48, 102, .18));
  transition: transform .2s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-5deg) scale(1.06);
}

@media (max-width: 760px) {
  .site-header .brand { gap: .35rem; }
  .brand-logo { width: 40px; height: 40px; }
}
