.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.site-header .site-logo {
  display: flex;
  width: 142px;
  min-height: 74px;
  padding: 22px 27px 20px 24px;
  align-items: center;
  border-radius: 0 0 22px 0;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .06);
  pointer-events: auto;
}

.site-header .site-logo-image {
  display: block;
  width: 91px;
  height: auto;
  margin: 0;
}

.site-header .nav {
  display: flex;
  position: static;
  width: auto;
  height: auto;
  padding: 12px 0 12px 40px;
  align-items: center;
  flex-direction: row;
  gap: 38px;
  transform: none;
  background: transparent;
  box-shadow: none;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  pointer-events: auto;
}

.site-header .nav a {
  color: #303030;
  text-decoration: none;
  transition: color .2s, text-decoration-color .2s, background .2s;
}

.site-header .nav a:not(.contact-btn):hover,
.site-header .nav a.current:not(.contact-btn) {
  color: #f47d7c;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header .nav .contact-btn {
  align-self: flex-start;
  margin: -12px 0 0 18px;
  padding: 25px 48px 24px;
  border-radius: 0 0 0 22px;
  color: #fff;
  background: #4a4a4a;
}

.site-header .nav .contact-btn:hover,
.site-header .nav .contact-btn.current {
  color: #fff;
  background: #f47d7c;
}

.site-header .menu-toggle {
  display: none;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 980px) {
  .site-header .nav {
    gap: 24px;
    font-size: 13px;
  }

  .site-header .nav .contact-btn {
    padding-inline: 34px;
  }
}

@media (max-width: 820px) {
  .site-header .site-logo {
    width: 112px;
    min-height: 64px;
    padding: 19px 22px 18px 18px;
    border-radius: 0 0 18px 0;
  }

  .site-header .site-logo-image {
    width: 72px;
  }

  .site-header .nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: 240px;
    height: 100vh;
    padding: 90px 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    background: #fff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .1);
    font-size: 15px;
    transition: transform .3s;
  }

  .site-header .nav.open {
    transform: none;
  }

  .site-header .nav .contact-btn {
    margin: 14px 0 0;
    padding: 14px 36px;
    border-radius: 30px;
  }

  .site-header .menu-toggle {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 120;
    display: flex;
    width: 46px;
    height: 46px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    pointer-events: auto;
    cursor: pointer;
  }

  .site-header .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #303030;
    transition: transform .3s, opacity .3s;
  }

  .site-header .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .site-header .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .site-header .nav,
  .admin-bar .site-header .menu-toggle {
    margin-top: 46px;
  }
}
