.hero {
  min-height: 100svh;
  padding: 90px var(--px) 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--night) 45%, #1c0808 100%);
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .15;
  filter: saturate(.15) contrast(1.1);
  animation: zoom 14s ease-in-out infinite alternate;
}

@keyframes zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  opacity: 0;
  animation: up .8s ease forwards .2s;
}

.hero-h1 {
  font-family: 'Lexend Zetta', sans-serif;
  font-size: clamp(28px, 8vw, 72px);
  font-weight: 100;
  line-height: 1.06;
  letter-spacing: -.01em;
  opacity: 0;
  animation: up .8s ease forwards .4s;
}

.hero-h1 em {
  font-style: normal;
  font-weight: 300;
  color: var(--beige);
}

.hero-rule {
  width: 44px;
  height: 1px;
  background: var(--red);
  margin: 24px 0;
  opacity: 0;
  animation: up .8s ease forwards .6s;
}

.hero-sub {
  font-size: clamp(10px, 2.4vw, 13px);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--beige);
  line-height: 1.9;
  opacity: 0;
  animation: up .8s ease forwards .8s;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  opacity: 0;
  animation: up .8s ease forwards 1s;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-red:hover {
  background: var(--red-lt);
}

.btn-out {
  background: transparent;
  color: var(--beige);
  border: 1px solid rgba(232,224,212,.28);
  padding: 14px 24px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-out:hover {
  border-color: var(--beige);
  color: var(--white);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 40px;
  opacity: 0;
  animation: up .8s ease forwards 1.2s;
}

.st {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.st-n {
  font-family: 'Lexend Zetta', sans-serif;
  font-size: 18px;
  font-weight: 200;
}

.st-l {
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: .45;
}

.st-sep {
  width: 1px;
  height: 24px;
  background: var(--bord-lt);
  align-self: center;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}