.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 108px) 96px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-wordmark {
  width: min(100%, 560px);
  margin-top: 18px;
}

.hero-wordmark img {
  width: 100%;
  filter:
    drop-shadow(0 2px 0 rgba(36, 36, 33, 0.18))
    drop-shadow(0 16px 26px rgba(248, 181, 0, 0.12));
}

.hero-lede {
  max-width: 590px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.14;
}

.hero-text {
  max-width: 600px;
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.movement-line {
  margin-top: 28px;
}

.movement-line p {
  color: rgba(36, 36, 33, 0.42);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.movement-line strong {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 7px;
  color: var(--color-amber);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
}

.movement-line span {
  color: rgba(36, 36, 33, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(36, 36, 33, 0.3);
}

.movement-line b {
  color: rgba(36, 36, 33, 0.4);
}

.hero-vista {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 48px;
  border: 2px solid var(--color-ink);
  border-radius: 12px;
  background: var(--color-tan);
  box-shadow: var(--shadow-chunky);
}

.hero-vista img {
  width: 100%;
  height: clamp(260px, 30vw, 384px);
  object-fit: cover;
}

.hero-vista::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(to top, rgba(36, 36, 33, 0.58), transparent);
}

.hero-vista figcaption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  color: var(--color-cream);
  font-weight: 800;
}

.shape-card {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(36, 36, 33, 0.38);
  border-radius: 18px;
  background: var(--color-tan);
  pointer-events: none;
}

.shape-card-large {
  top: 118px;
  right: -70px;
  width: 232px;
  height: 232px;
  transform: rotate(12deg);
}

.shape-card-small {
  bottom: 128px;
  left: -80px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: var(--color-sage);
}

@media (max-width: 720px) {
  .hero {
    padding-block: 44px 68px;
  }

  .hero-wordmark {
    width: min(100%, 410px);
  }

  .hero-lede {
    font-size: 28px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions .chunky-button {
    width: 100%;
  }

  .shape-card-large {
    top: 94px;
    right: -118px;
  }
}
