.home-hero {
  position: relative;
  height: 100vh;
  padding-bottom: 64px;
}
.home-hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;

  height: 500px;
  width: 100%;
  opacity: 0.9;
  background: linear-gradient(0deg, #332300 0%, rgba(0, 0, 0, 0) 100%);
}
.home-hero__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero > div,
.home-hero > div > div,
.home-hero > div > div > div {
  height: 100%;
}
.home-hero-wrapper {
  z-index: 3;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.home-hero__location {
  position: absolute;
  max-width: 124px;
  bottom: 64px;
  right: 92px;
  z-index: 3;
}
.home-hero-wrapper {
  max-width: 782px;
  margin-left: auto;
  margin-right: auto;
}
.home-hero-wrapper p {
  max-width: 589px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}
.buttons-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ── TABLET (≤ 991px) ── */
@media only screen and (max-width: 991px) {
  .h1__size {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .home-hero__location {
    right: 20px;
    bottom: 24px;
    max-width: 90px;
  }
  .buttons-row {
    flex-wrap: wrap;
  }
}

/* ── MOBILE (≤ 575px) ── */
@media only screen and (max-width: 575px) {
  .h1__size {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .home-hero__location {
    display: none;
  }
  .buttons-row {
    flex-direction: column;
  }
}
