

.site-header {
  background: #fffafb;
  border-bottom: 0.0625em solid #ffe4e6;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: 1em;
}

.site-header__logo {
  display: block;
  height: 1.9em;
  width: auto;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__toggle {
  margin-left: auto;
}

.site-header__nav {
  display: flex;
}

.site-header__close {
  color: #4c0519;
}

.site-header__list {
  list-style: none;
  display: flex;
}

.site-header__item {
  position: relative;
}

.site-header__link {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95em;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-header__item--dropdown > .site-header__link::after {
  content: ' \25BE';
  font-size: 0.8em;
}



@media (min-width: 768px) {
  .site-header__item--dropdown:hover .site-header__dropdown,
  .site-header__item--dropdown:focus-within .site-header__dropdown {
    display: grid;
  }

  [data-mm-menu] .site-header__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;
    background: #ffffff;
    border: 0.0625em solid #ffe4e6;
    border-radius: 0.5em;
    box-shadow: 0 1.25em 2.5em rgba(76, 5, 25, 0.14);
    padding: 1em;
    min-width: 28em;
    max-width: calc(100vw - 2em);
    z-index: 20;
  }

  .site-header__dropdown-link {
    display: block;
    padding: 0.6em 0.75em;
    border-radius: 0.4em;
    text-decoration: none;
    color: #4c0519;
    font-size: 0.9em;
  }

  .site-header__dropdown-link:hover {
    background: #fff1f2;
    color: #be123c;
  }
}

@media (max-width: 767px) {
  .site-header__dropdown {
    list-style: none;
    padding-left: 1em;
    border-left: 0.15em solid #ffe4e6;
    margin: 0.4em 0 0.4em 0;
  }

  .site-header__dropdown-link {
    display: block;
    padding: 0.6em 0;
    text-decoration: none;
    color: #881337;
    font-size: 0.9em;
  }
}
