.brand {
  align-items: center;
  white-space: nowrap;
}

.brand-symbol {
  position: relative;
  width: 35px;
  height: 35px;
  display: block;
  flex: none;
  color: currentColor;
}

.brand-symbol img {
  display: none;
}

/* Transparent, single-color rendering prevents the source image's white square
   from appearing against either the hero or the ivory sticky header. */
.brand-symbol::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand-name strong {
  font-size: 15px;
  letter-spacing: .1em;
}

.site-header nav {
  gap: clamp(15px, 2vw, 30px);
}

.site-header nav a {
  font-size: 11px;
  letter-spacing: .11em;
  white-space: nowrap;
}

@media (max-width: 580px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .brand-name small {
    display: none;
  }

  .brand-name strong {
    font-size: 13px;
  }
}
