.global-header {
  position: relative;
  z-index: 40;
  height: 64px;
  flex: 0 0 64px;
  background: #fffcf7;
  border-bottom: 1px solid #f2e2cd;
  color: #4a2c21;
  font-family: Nunito, Arial, sans-serif;
}

.global-header__inner {
  width: min(100% - 32px, 1180px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.global-header__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  color: #4a2c21;
  text-decoration: none;
}

.global-header__brand img {
  width: 36px;
  height: 36px;
}

.global-header__brand > span {
  display: grid;
  line-height: 1;
}

.global-header__brand strong {
  font-size: 20px;
  font-weight: 900;
}

.global-header__brand strong span {
  color: #c13a2e;
}

.global-header__brand small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.global-header__desktop {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 11px;
}

.global-header__desktop a,
.global-header__mobile a {
  color: #4a2c21;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.global-header__desktop a:hover,
.global-header__desktop a:focus-visible,
.global-header__desktop a[aria-current="page"],
.global-header__mobile a:hover,
.global-header__mobile a:focus-visible,
.global-header__mobile a[aria-current="page"] {
  color: #9e2f25;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.global-header__mobile {
  display: none;
  position: relative;
}

.global-header__mobile summary {
  cursor: pointer;
  color: #9e2f25;
  font-weight: 900;
  list-style: none;
}

.global-header__mobile summary::-webkit-details-marker {
  display: none;
}

.global-header__mobile nav {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 50;
  width: min(188px, calc(100vw - 24px));
  padding: 10px;
  display: grid;
  gap: 7px;
  background: #fffcf7;
  border: 1px solid #f2e2cd;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(74, 44, 33, .14);
}

.global-header__mobile nav a {
  padding: 3px 5px;
}

.skip-link {
  position: fixed;
  top: -56px;
  left: 12px;
  z-index: 100;
  padding: 8px 12px;
  border-radius: 10px;
  background: #9e2f25;
  color: #fff !important;
  font: 900 13px/1.2 Nunito, Arial, sans-serif;
}

.skip-link:focus {
  top: 8px;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .global-header__desktop {
    gap: 8px;
  }

  .global-header__desktop a {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .global-header {
    height: 56px;
    flex-basis: 56px;
  }

  .global-header__inner {
    width: min(100% - 18px, 1180px);
  }

  .global-header__desktop {
    display: none;
  }

  .global-header__mobile {
    display: block;
  }

  .global-header__brand img {
    width: 32px;
    height: 32px;
  }

  .global-header__brand strong {
    font-size: 18px;
  }

  .global-header__brand small {
    font-size: 12px;
  }
}

@media (max-width: 370px), (max-height: 700px) {
  .global-header__brand small {
    display: none;
  }
}
