.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paprika-300);
  font-weight: 400;
}

.hero .hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px;
  position: relative;
  z-index: 2;
}

.hero .hero__logo img {
  height: 177px;
  width: auto;
  display: block;
}

.hero .hero__links {
  display: flex;
  gap: 14px;
}

.hero .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
  font-size: 16px;
}

.hero .pill--white {
  background: #fff;
}

.hero .hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 55px;
  width: 58%;
  max-width: 62%;
  margin-left: 24px;
  margin-right: auto;
  color: #fff;
}

@media (min-width: 1500px) {
  .hero .hero__content {
    max-width: 55%;
  }
}

.hero .hero__title {
  margin: 0 0 32px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  font-family: Georgia, serif;
}

.hero .hero__lead {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}

.hero .btn.hero__cta {
  background: var(--paradajka-300);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .hero .hero__title {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .hero .hero__logo img {
    height: 120px;
  }
  .hero .hero__links {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero .pill {
    padding: 8px 12px;
  }
  .hero .hero__content {
    width: 100%;
    max-width: 100%;
    margin-left: 16px;
    padding-bottom: 40px;
  }
  .hero .hero__title {
    font-size: 36px;
  }
  .hero .hero__lead {
    font-size: 20px;
  }
  .hero .btn.hero__cta {
    padding: 12px 18px;
  }
}

@media (min-width: 1156px) {
  .hero__hamburger,
  .hero-menu,
  .hero__logo-mobile {
    display: none !important;
  }
}

@media (max-width: 1155px) {
  .hero {
    position: relative;
    height: 755px;
    max-height: 96vh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url("/assets/public/img/hero.jpg") top center / cover no-repeat;
    color: var(--paprika-300);
    font-weight: 400;
  }
  .hero__top {
    display: none !important;
  }

  .hero__hamburger {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 6;
  }
  .hero__hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }
  .hero--menu-open .hero__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hero--menu-open .hero__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .hero--menu-open .hero__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: none;
    background: var(--neutral-300);
    padding: 16px 16px 32px;
    min-height: calc(100vh - 35px);
    z-index: 5;
    border-bottom: 3px solid var(--neutral-600);
  }
  .hero--menu-open .hero-menu {
    display: block;
  }

  .hero-menu__group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 12px;
  }
  .hero-menu__home,
  .hero-menu__link {
    font: 500 32px/1.1 "Rubik", system-ui, sans-serif;
    color: var(--ink);
    text-decoration: none;
    display: block;
  }
  .hero-menu__home {
    margin-top: 70px;
    margin-bottom: 52px;
  }
  .hero-menu__home:hover,
  .hero-menu__link:hover,
  .hero-menu__home:focus-visible,
  .hero-menu__link:focus-visible {
    color: var(--baklazan-600);
  }

  .hero-menu__cta {
    position: absolute;
    bottom: 32px;
    width: calc(100% - 32px);
    height: 57px;
    line-height: 57px;
    text-align: center;
    border-radius: 999px;
    background: var(--paradajka-300);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
  }
  .hero-menu__cta:hover,
  .hero-menu__cta:focus-visible {
    background: var(--paradajka-600);
  }

  .hero__logo-mobile {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    padding: 0 18px 18px;
    z-index: 4;
    pointer-events: none;
  }
  .hero__logo-mobile img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px !important;
  }
}

@media (max-width: 1155px) {
  .hero--home .hero__content {
    padding-left: 18px;
    padding-right: 18px;
    margin: 185px 0 0 0;
  }
  .hero--home .hero__title {
    font: 400 32px/1.2 Georgia, serif;
    margin: 0 0 32px;
    max-width: 200px;
  }
  .hero--home .hero__lead {
    font: 400 18px/1.45 "Rubik", system-ui, sans-serif;
    margin: 0 0 37px;
  }
  .hero--home .hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 51px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    background: var(--paradajka-300);
    color: #fff;
  }
  .hero--home .hero__cta:hover,
  .hero--home .hero__cta:focus-visible {
    background: var(--paradajka-600);
  }
}
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.13), rgba(0, 0, 0, 0.13)),
    url("/assets/public/img/hero.jpg") top center / cover no-repeat;
}

@media (max-width: 1155px) {
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.21), rgba(0, 0, 0, 0.21)),
      url("/assets/public/img/hero.jpg") top center / cover no-repeat;
  }
}
.hero--menu-open .hero__hamburger span {
  background: #000000 !important;
}
