.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-color: #190402;
  color: #ffffff;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(25, 4, 2, 0.88) 0%,
    rgba(25, 4, 2, 0.7) 43%,
    rgba(25, 4, 2, 0.28) 72%,
    rgba(25, 4, 2, 0.15) 100%
  );
}

.hero-glow,
.hero-scroll-hint {
  display: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
}

.hero-logo-salvador {
  width: 188px;
  height: auto;
  margin-bottom: 38px;
  margin-left: 0;
  object-fit: contain;
  object-position: left center;
}

.hero-kicker {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  color: #ffffff;
  font-family: "PT Serif", Georgia, serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 71px;
  letter-spacing: -2px;
}

.hero-title span {
  color: #ffd47b;
}

.hero-text {
  max-width: 760px;
  margin-top: 28px;
  color: #f3f0ee;
  font-size: 22px;
  line-height: 30px;
}

.hero-quote {
  max-width: 760px;
  margin-top: 22px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  line-height: 29px;
}

.hero-stats {
  max-width: 780px;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stat {
  flex: 1 1 220px;
  padding: 24px 26px;
  background-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.hero-stat b {
  display: block;
  color: #ffd47b;
  font-size: 40px;
  font-weight: 600;
  line-height: 44px;
}

.hero-stat span {
  color: #f3f0ee;
  font-size: 17px;
  line-height: 24px;
}

@media (max-width: 1360px) {
  .hero-title {
    font-size: 66px;
    line-height: 67px;
  }
}

@media (max-width: 1180px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 116px;
  }
  .hero-logo-salvador {
    width: 150px;
    margin-bottom: 36px;
  }
  .hero-title {
    font-size: 50px;
    line-height: 51px;
  }
  .hero-kicker {
    font-size: 19px;
    line-height: 25px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100vh;
    padding: 152px 20px 72px;
  }
  .hero-title {
    font-size: 40px;
    line-height: 42px;
    letter-spacing: -0.4px;
  }
  .hero-kicker {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 2px;
  }
  .hero-text,
  .hero-quote {
    font-size: 18px;
    line-height: 25px;
  }
  .hero-stats {
    margin-top: 30px;
  }
  .hero-stat {
    flex-basis: 100%;
    padding: 20px;
  }
  .hero-stat b {
    font-size: 34px;
    line-height: 38px;
  }
}
