.hero {
  display: grid;
  position: relative;
  min-height: 680px;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 73, 49, 0.46), rgba(0, 73, 49, 0.26)),
    url("../images/park-virtual-flower-garden.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: -36vw;
  bottom: -48vw;
  width: 75vw;
  height: 75vw;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
}

.hero-content {
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  padding-top: 86px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--lime);
}

h1 {
  max-width: 720px;
  margin: 26px 0 22px;
  font-size: clamp(42px, 6.1vw, 76px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.hero p {
  max-width: 480px;
  margin: 0;
  font-size: 16px;
}

@media (min-width: 761px) {
  .hero h1 {
    max-width: none;
    white-space: nowrap;
  }

  .hero p {
    max-width: none;
    white-space: nowrap;
  }
}

.scroll {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 50%;
  font-size: 11px;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
}

.scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  margin: 9px auto 0;
  background: #fff;
}

section {
  padding: 105px 0;
}

.intro {
  background: var(--cream);
  text-align: center;
}

.section-kicker {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

h2 {
  margin: 10px 0 22px;
  font-size: clamp(29px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.intro p {
  max-width: 700px;
  margin: 0 auto;
}

.activity {
  background: #fff;
}

.season {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.activity-photo,
.seasonal-photo {
  min-height: 400px;
  background-position: center;
  background-size: cover;
}

.activity-photo {
  background: url("../images/activity-street-tree.jpg") center / cover;
}

.seasonal-photo {
  background-image: url("../images/seasonal-guide-four-seasons.jpg");
}

.button {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 28px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  transition: 0.2s;
}

.button:hover {
  color: #fff;
  background: var(--green);
}

.button--filled {
  color: var(--white);
  background: var(--green);
}

.button--filled:hover {
  border-color: var(--deep);
  color: var(--white);
  background: var(--deep);
}

.contact {
  padding: 80px 0;
  color: #fff;
  background: var(--green);
  text-align: center;
}

.contact .section-kicker {
  color: var(--lime);
}

.contact h2 {
  margin-bottom: 10px;
}

.contact .button {
  border-color: #fff;
  color: #fff;
}

.contact .button:hover {
  color: var(--green);
  background: #fff;
}

@media (max-width: 760px) {
  .hero {
    min-height: 600px;
  }

  section {
    padding: 72px 0;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 30px;
  }

  .activity-photo,
  .seasonal-photo {
    min-height: 260px;
  }
}
