/* Brand mark — shared with festival redesign family. */
.brand {
  gap: 9px;
}

.brand-logo {
  background: #000;
  border-radius: 4px;
  display: block;
  flex-shrink: 0;
  height: 30px;
  max-height: 30px;
  max-width: 30px;
  object-fit: contain;
  width: 30px;
}

.brand-mark {
  box-shadow: 0 0 0 2px transparent;
}

.brand:focus-visible .brand-mark,
.brand:hover .brand-mark {
  box-shadow: 0 0 0 2px currentColor;
}

.brand-word {
  letter-spacing: -0.06em;
}

/* Keep home header balanced when logo and CTA widths differ. */
@media (min-width: 761px) {
  .site-header:not(.edition-header) {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  }

  .site-header:not(.edition-header) .brand {
    justify-self: start;
  }

  .site-header:not(.edition-header) .desktop-nav {
    justify-self: center;
  }

  .site-header:not(.edition-header) .nav-cta {
    justify-self: end;
  }
}
