.header {
  position: relative;
  z-index: 10;
  min-height: 82px;
  padding: 22px clamp(24px, 4.6vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: .14em;
}
.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-style: italic;
}
.brand__name { font-size: 11px; }
.header__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .16em;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(241,238,231,.55);
}
@media (max-width: 560px) {
  .header { min-height: 68px; padding: 17px 20px; }
  .header__status span:last-child { display: none; }
}
