.site-header .burger{
  display: none !important;
}

@media (max-width: 1024px){
  .site-header__nav{ display: none !important; }
  .site-header__actions{ display: none !important; }

  .site-header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .site-header .burger{
    display: inline-flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e7e7e7;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    margin: 0;
    flex-direction: column;
    gap: 6px;
    flex: 0 0 auto;
  }

  .site-header .burger span{
    display: block;
    width: 20px;
    height: 2px;
    background: #111;
    border-radius: 2px;
  }

  .site-header .burger span + span{ margin-top: 0 !important; }
}

.mnav[hidden]{ display: none !important; }

.mnav{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.mnav__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.mnav__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 92vw);
  background: #fff;
  box-shadow: -18px 0 50px rgba(0,0,0,.18);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid #e7e7e7;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}

.mnav__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mnav__title{
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;
}

.mnav__close{
  width: 44px;
  height: 44px;
  border: 1px solid #e7e7e7;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.mnav__links{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.mnav__links a{
  text-decoration: none;
  color: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.mnav__links a:hover{
  background: rgba(229, 57, 53, 0.08);
  color: #e53935;
}

.mnav__cta{
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e53935;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.mnav__cta:hover{
  transform: translateY(-2px);
  filter: brightness(.98);
  box-shadow: 0 14px 26px rgba(229, 57, 53, .28);
}

body.is-menu-open{
  overflow: hidden;
}
