.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 32px;
  position: relative;
  z-index: 2;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text, #f0f0f0);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.site-header .brand:hover {
  opacity: 0.9;
}

.site-header .brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--accent, #8b5cf6);
}

.site-header .brand-text {
  font-family: inherit;
}
