.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-height) + 3rem) 5vw 5rem;
}

.hero__media,
.hero__media img,
.hero__shade,
.hero__scan {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.04);
}

.hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 16, 15, 0.98), rgba(6, 16, 15, 0.72) 44%, rgba(6, 16, 15, 0.18)),
    linear-gradient(0deg, rgba(6, 16, 15, 0.98), rgba(6, 16, 15, 0.14) 55%, rgba(6, 16, 15, 0.42));
}

.hero__scan {
  z-index: -2;
  opacity: 0.24;
  background: linear-gradient(105deg, transparent 0%, transparent 44%, rgba(91, 195, 125, 0.58) 50%, transparent 56%, transparent 100%);
  transform: translateX(-85%);
}

.hero__content {
  width: min(790px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--color-gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero__lead {
  max-width: 700px;
  color: #dbe6df;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 760px;
  padding: 0;
  margin: 2.2rem 0 0;
  list-style: none;
}

.hero__stats li {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero__stats strong,
.hero__stats span {
  display: block;
}

.hero__stats strong {
  color: var(--color-moss);
  font-size: 1.45rem;
}

.hero__stats span {
  margin-top: 0.28rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}
