.site-header {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 8rem;
  gap: 2rem;
  padding: 1.25rem clamp(1.25rem, 5vw, 5.5rem);
  color: var(--color-white);
}
.site-header--light {
  position: relative;
  color: var(--color-ink);
  background: var(--color-white);
}
.site-header--light .primary-navigation a {
  color: var(--color-ink);
}
.site-header--light .menu-toggle {
  border-color: #11120f66;
  background: transparent;
}
.site-header--light .menu-toggle span {
  background: var(--color-ink);
}
.site-header--light .primary-navigation.is-open a {
  color: var(--color-white);
}
.site-logo {
  flex: 0 0 10.5rem;
}
.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
}
.primary-navigation a {
  position: relative;
  padding: 0.6rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.primary-navigation a:hover::after, .primary-navigation a.is-active::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
}
@media (max-width: 1050px) {
  .primary-navigation {
    display: none;
  }
  .menu-toggle {
    display: grid;
    gap: 0.3rem;
    width: 3rem;
    height: 3rem;
    padding: 0.7rem;
    border: 1px solid #ffffff99;
    border-radius: 0.3rem;
    background: #00000033;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-white);
  }
}
@media (max-width: 620px) {
  .site-header {
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    min-height: 0;
    gap: 0.65rem;
    padding: 1rem 1.25rem 0.5rem;
  }
  .site-logo {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: 10rem;
  }
  .site-header > .button {
    grid-column: 3;
    grid-row: 1;
    min-height: 3rem;
    padding: 0 0.9rem;
    font-size: 0.75rem;
  }
  .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    position: relative;
    z-index: 3;
    touch-action: manipulation;
  }
  .primary-navigation.is-open {
    position: fixed;
    z-index: 2;
    top: 8.2rem;
    right: 1.25rem;
    left: 1.25rem;
    display: grid;
    width: auto;
    gap: 0;
    padding: 0.6rem 1.25rem;
    border: 1px solid #ffffff33;
    border-radius: 0.35rem;
    background: #10110ef2;
    box-shadow: 0 1rem 2.5rem #00000055;
    pointer-events: auto;
  }
  .primary-navigation.is-open a + a {
    border-top: 1px solid #ffffff22;
  }
}
