.site-header__identity {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.site-header__section-picker {
  position: relative;
}

.site-header__section-picker summary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 108px;
  min-height: 34px;
  padding: 0 15px 0 14px;
  border: 1px solid rgba(247, 37, 169, .6);
  background: rgba(247, 37, 169, .14);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .035em;
  list-style: none;
  text-transform: uppercase;
  transition: background .18s, color .18s;
}

.site-header__section-picker summary::-webkit-details-marker {
  display: none;
}

.site-header__section-picker summary:hover,
.site-header__section-picker[open] summary {
  background: var(--pink);
  color: #16050f;
}

.site-header__section-picker summary b {
  display: block;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1px solid var(--pink);
  border-bottom: 1px solid var(--pink);
  transform: rotate(45deg);
  transform-origin: center;
  transition: border-color .18s, margin .18s, transform .18s;
}

.site-header__section-picker summary:hover b,
.site-header__section-picker[open] summary b {
  border-color: currentColor;
}

.site-header__section-picker[open] summary b {
  margin-top: 3px;
  transform: rotate(225deg);
}

.site-header__section-picker nav {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  width: 190px;
  padding: 6px;
  border: 1px solid rgba(247, 37, 169, .45);
  background: rgba(12, 7, 12, .98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
}

.site-header__section-picker nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 11px;
  color: #eee8ed;
  font-size: 12px;
  font-weight: 800;
  transition: background .18s, color .18s;
}

.site-header__section-picker nav a:hover {
  background: rgba(247, 37, 169, .12);
  color: #fff;
}

.site-header__section-picker nav a[aria-current="page"] {
  background: var(--pink);
  color: #16050f;
  cursor: default;
}

.site-header__section-picker nav small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1099px) {
  .site-header__identity {
    gap: 12px;
  }

  .site-header__section-picker summary {
    min-width: 96px;
    min-height: 32px;
    padding-inline: 11px 13px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .site-header__identity {
    gap: 8px;
  }

  .site-header__section-picker summary {
    min-width: 83px;
    min-height: 30px;
    padding-inline: 9px 11px;
    gap: 7px;
    font-size: 9px;
  }

  .site-header__section-picker nav {
    width: 168px;
  }
}
