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

:root {
  --green: #004b25;
  --green-dark: #002f18;
  --green-light: #6fbf2a;
  --soft: #f3f7f0;
  --text: #102414;
  --border: #d7dfd4;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 560px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #f8fbf7 100%);
  overflow: hidden;
}

.hero-image {
  position: relative;
  min-height: 420px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.hero-content {
  position: relative;
  padding: 80px 7vw 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clover {
  position: absolute;
  top: 45px;
  right: 55px;
  font-size: 84px;
  color: var(--green);
  line-height: 1;
}

h1 {
  color: var(--green);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.tagline {
  display: inline-block;
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 8px;
  margin-bottom: 34px;
}

.hero h2 {
  color: var(--green-dark);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 18px;
}

.hero p:not(.tagline) {
  max-width: 720px;
  font-size: 1.2rem;
  margin-bottom: 28px;
}

.button {
  width: fit-content;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 999px;
  text-transform: uppercase;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 35px 24px 20px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--green-dark);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 25px;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 155px;
  height: 2px;
  background: var(--green);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 22px;
  min-height: 210px;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  font-size: 28px;
  margin-bottom: 18px;
}

.card h3 {
  color: var(--green-dark);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.why {
  max-width: 1200px;
  margin: 20px auto;
  padding: 30px 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 8px;
  text-align: center;
}

.why h2 {
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1.25rem;
  font-weight: 700;
}

.why-grid span {
  color: var(--green-light);
  font-size: 50px;
}

.statement {
  max-width: 900px;
  margin: 25px auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
}

.statement span {
  color: var(--green);
  font-size: 44px;
}

.contact {
  max-width: 1200px;
  margin: 20px auto;
  padding: 28px 30px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}

.contact h2 {
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  font-size: 1.15rem;
  font-weight: 700;
}

footer {
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: #fff;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

footer p {
  grid-column: 1 / -1;
  margin-top: 10px;
}

footer a {
  color: #fff;
}

@media (max-width: 950px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 360px;
  }

  .hero-content {
    padding: 45px 24px;
  }

  .clover {
    top: 20px;
    right: 25px;
    font-size: 58px;
  }

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

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

  .section-title::before,
  .section-title::after {
    width: 60px;
  }
}

@media (max-width: 560px) {
  .services {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 260px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .statement {
    flex-direction: column;
  }
}
