.hero {
  height: 60vh;
  position: relative;
  overflow: visible;
}

.hero__trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  bottom: 40px;
  left: 24px;
  z-index: 2;
}

.hero__label {
  font-family: var(--f-nohemi);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--f-neue);
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.0;
  color: var(--c-black);
  margin-bottom: 28px;
}

.hero__desc {
  font-family: var(--f-aeonik);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-grey);
  line-height: 1.65;
  width: 100%;
  margin-bottom: 48px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-aeonik);
  font-size: 15px;
  font-weight: 400;
  padding: 22px 40px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all var(--t);
}
.hero__btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

@media (max-width: 900px) {
  .hero { padding: 24px 24px 120px; }
}
