html,
body {
  margin: 0;
}

.home-hero {
  box-sizing: border-box;
  width: 100%;
  min-height: 100svh;
  padding: 28px clamp(24px, 4.5vw, 84px) 36px;
  background: #eef7f0;
  overflow: hidden;
}

.home-hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100%, 1605px);
  margin: 0 auto 26px;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #0f1712;
  text-decoration: none;
}

.hero-logo-image {
  display: block;
  width: clamp(180px, 14vw, 260px);
  height: auto;
  object-fit: contain;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.6vw, 42px);
  color: #08130d;
  font-size: clamp(16px, 1.15vw, 23px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.hero-nav a {
  position: relative;
  padding: 12px 0;
  text-decoration: none;
}

.hero-nav a:first-child::after,
.hero-nav a:hover::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: #0f1712;
}

.language-switch {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(15, 23, 18, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.language-switch button {
  min-width: 35px;
  height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #0f1712;
  cursor: pointer;
  font: 900 12px/1 Arial, Helvetica, sans-serif;
}

.language-switch button.is-active {
  background: #18a843;
  color: #ffffff;
}

.home-hero .home-hero-media {
  width: min(100%, 1605px);
  height: calc(100svh - 182px);
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #111611;
  box-shadow: 0 22px 58px rgba(15, 23, 18, 0.14);
  margin-inline: auto;
}

.home-hero .home-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

@media (max-width: 1200px) {
  .home-hero {
    padding: 24px 28px 32px;
  }

  .home-hero-header {
    align-items: flex-start;
  }

  .hero-nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .home-hero .home-hero-media {
    height: calc(100svh - 188px);
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: 100svh;
    padding: 16px;
  }

  .home-hero-header {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
  }

  .hero-nav {
    justify-content: flex-start;
    font-size: 15px;
  }

  .language-switch {
    flex-wrap: wrap;
    width: fit-content;
  }

  .language-switch button {
    min-width: 32px;
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  .home-hero .home-hero-media {
    height: 64svh;
    min-height: 420px;
  }

  .home-hero .home-hero-media img {
    object-position: 50% 14%;
  }
}
