* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #12351f;
  background:
    linear-gradient(rgba(255, 251, 239, 0.88), rgba(255, 251, 239, 0.74)),
    radial-gradient(circle at 20% 15%, rgba(113, 154, 64, 0.35), transparent 28%),
    linear-gradient(135deg, #fbf5df 0%, #e6efd3 48%, #f9f4e4 100%);
}

.page {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 68vh;
  padding: 70px 24px 34px;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.45), rgba(255,255,255,.08)),
    radial-gradient(circle at bottom center, rgba(111, 151, 64, .35), transparent 45%);
}

.logo {
  display: block;
  max-width: min(820px, 90vw);
  width: 100%;
  margin: 0 auto 52px;
  filter: drop-shadow(0 12px 18px rgba(37, 73, 26, .14));
}

h1 {
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 1px;
  color: #0f3f23;
  margin-bottom: 14px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 8px auto 22px;
  color: #6fa137;
}

.divider span {
  width: 120px;
  max-width: 28vw;
  height: 3px;
  background: #6fa137;
  border-radius: 10px;
}

.intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.45;
  color: #1d1d1d;
}

.soon {
  margin-top: 18px;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  color: #0f3f23;
}

.features {
  max-width: 1100px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(18, 53, 31, .15);
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(31, 56, 24, .16);
  overflow: hidden;
}

.feature {
  padding: 26px 22px;
  border-right: 1px solid rgba(18, 53, 31, .22);
}

.feature:last-child {
  border-right: none;
}

.icon {
  font-size: 46px;
  margin-bottom: 12px;
}

.feature p {
  font-size: 18px;
  line-height: 1.3;
  color: #1d1d1d;
}

.contact {
  padding: 42px 24px 54px;
  color: white;
  background:
    radial-gradient(circle at 82% 74%, rgba(132, 177, 65, .25), transparent 20%),
    linear-gradient(135deg, #0b321d 0%, #124320 52%, #072414 100%);
}

.contact h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 8px;
}

.divider.light span {
  background: #94c34a;
}

.contact-intro {
  text-align: center;
  font-size: clamp(18px, 2.4vw, 25px);
  margin: 16px 0 32px;
}

.contact-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}

.contact-info {
  font-size: 20px;
  line-height: 1.55;
}

.contact-info p {
  margin-bottom: 18px;
}

.contact a {
  color: white;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.phrase {
  min-height: 210px;
  border-left: 1px solid rgba(255,255,255,.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  text-align: center;
}

.plant {
  font-size: 54px;
  margin-bottom: 12px;
}

.leaf {
  position: absolute;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(112, 161, 55, .28), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.leaf-left {
  top: 0;
  left: 0;
}

.leaf-right {
  right: -60px;
  bottom: 80px;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 48px;
  }

  .logo {
    margin-bottom: 36px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2) {
    border-right: none;
  }

  .feature:nth-child(1),
  .feature:nth-child(2) {
    border-bottom: 1px solid rgba(18, 53, 31, .22);
  }

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

  .phrase {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.4);
    padding-top: 28px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 36px 16px 28px;
  }

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

  .feature {
    border-right: none;
    border-bottom: 1px solid rgba(18, 53, 31, .22);
  }

  .feature:last-child {
    border-bottom: none;
  }

  .contact {
    padding: 38px 18px 46px;
  }

  .contact-info {
    font-size: 17px;
  }
}
