:root{
  --hs-black: #080808;
  --hs-gold: #e6b85c;
  --hs-gold-light: #f2ca76;
  --hs-text: #ffffff;
  --hs-text-soft: #d7d1c7;
  --hs-border: rgba(230,184,92,0.14);
}

.hs-home{
  background: var(--hs-black);
  color: var(--hs-text);
}

.hs-wrap{
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */

.hs-hero{
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hs-black);
}

.hs-hero__image{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% 32%;
  z-index: 0;
  pointer-events: none;
}

.hs-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.72) 34%,
    rgba(0,0,0,0.34) 58%,
    rgba(0,0,0,0.05) 76%,
    rgba(0,0,0,0.00) 100%
  );
  z-index: 1;
}

.hs-hero__inner{
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0;
}

.hs-eyebrow{
  margin: 0 0 18px;
  color: var(--hs-gold);
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.hs-title{
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--hs-text);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hs-subtitle{
  max-width: 620px;
  margin: 0 0 34px;
  color: #d9d2c7;
  font-size: 20px;
  line-height: 1.55;
}

.hs-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--hs-gold);
  color: #111111;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.hs-button:hover{
  background: var(--hs-gold-light);
  color: #111111;
  transform: translateY(-1px);
}

/* BENEFITS */

.hs-benefits{
  padding: 88px 0;
  background: var(--hs-black);
}

.hs-benefits__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hs-card{
  padding: 30px;
  border: 1px solid var(--hs-border);
  border-radius: 20px;
  background: #101010;
}

.hs-card h3{
  margin: 0 0 14px;
  color: var(--hs-text);
  font-size: 24px;
}

.hs-card p{
  margin: 0;
  color: var(--hs-text-soft);
  line-height: 1.65;
}

/* CTA */

.hs-cta{
  padding: 30px 0 110px;
  background: var(--hs-black);
}

.hs-cta__inner{
  text-align: center;
}

.hs-cta h2{
  margin: 0 0 12px;
  color: var(--hs-text);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.hs-cta p{
  margin: 0 0 28px;
  color: var(--hs-text-soft);
  font-size: 18px;
}

/* RESPONSIVE */

@media (max-width: 1024px){
  .hs-hero{
    min-height: 560px;
  }

  .hs-hero__image{
    object-position: 78% center;
  }

  .hs-benefits__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .hs-hero{
    min-height: 520px;
  }

  .hs-hero__image{
    object-position: 78% center;
  }

  .hs-hero__overlay{
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.84) 0%,
      rgba(0,0,0,0.62) 45%,
      rgba(0,0,0,0.20) 100%
    );
  }

  .hs-hero__inner{
    padding: 80px 0;
  }

  .hs-subtitle{
    font-size: 18px;
  }

  .hs-button{
    width: 100%;
    max-width: 320px;
  }

  .hs-benefits{
    padding: 64px 0;
  }

  .hs-cta{
    padding: 10px 0 80px;
  }
}