.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 36, 28, 0.25) 0%, rgba(16, 36, 28, 0.72) 70%, rgba(16, 36, 28, 0.92) 100%),
    url("/images/hero.svg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 88px;
}

.hero-content h1 {
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  letter-spacing: 0.18em;
  margin: 0 0 12px;
}

.hero-lead {
  max-width: 36rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f3eee2;
}

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

.hero-ghost {
  color: var(--paper);
  border-color: rgba(255, 253, 248, 0.55);
}

.home-intro {
  padding: 72px 0 24px;
  max-width: 760px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
}

.home-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin: 24px 0 28px;
}

.pickup-band {
  margin-top: 72px;
  background: var(--forest);
  color: var(--paper);
  padding: 56px 0;
}

.pickup-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.pickup-band .section-title {
  color: var(--paper);
}

@media (max-width: 720px) {
  .pickup-inner,
  .home-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
