.page-template-page-home {
  background: linear-gradient(
    180deg,
    #f4f3e8 0%,
    #e2f0dc 100%
  );
}

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: stretch;
  gap: 70px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 70px 70px 65px;
  min-width: 1024px;
}

.home-title {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 400;
  color: #0f5a35;
  margin: 0 0 42px;
}

.home-title p {
  margin: 0;
}

.home-copy {
  max-width: 440px;
  color: #0f5a35;
  font-size: 16px;
  line-height: 1.55;
}

.home-copy p {
  margin: 0 0 24px;
}

.home-button {
  display: inline-block;
  margin-top: 22px;
  padding: 13px 26px;
  border-radius: 999px;
  background: #3f7b58;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.22em;
  font-size: 14px;
}

.home-hero-image {
  width: 100%;
  max-width: 560px;

  height: 100%;

  object-fit: cover;
  display: block;
}

/* Desktop/tablet: allow horizontal scroll before mobile */
.page-template-page-home {
  overflow-x: auto;
}

/* Mobile layout */
@media (max-width: 768px) {
  .page-template-page-home {
    overflow-x: hidden;
  }

  .home-hero {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 45px 22px;
  }

  .home-title {
    font-size: 42px;
  }

  .home-copy {
    max-width: none;
    font-size: 15px;
  }

  .home-hero-image {
    max-width: 100%;
    height: auto;
  }
}