.mini-card {
  width: min(360px, 100%);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow2);
}

.mini-title {
  font-weight: 900;
  font-size: 16px;
  color: #1c2b1c;
}

.mini-sub {
  margin-top: 6px;
  color: #4f6a4f;
  font-size: 14px;
}

.mini-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 900;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand2) 100%);
  color: #0d2b0d;
  border: 1px solid rgba(0, 0, 0, .12);
}

.mini-btn.ghost {
  background: #eef6ea;
  color: #2f4a2f;
  border: 1px solid var(--line);
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: #eef6ea;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: 34px;
}

.section-head p {
  color: #4f6a4f;
}

.section-cta {
  width: fit-content;
  margin: 32px auto;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
  padding: 1vh 0;
}

.card {
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.card h3 {
  font-size: 20px;
}

.card p {
  margin-top: 10px;
  color: #4f6a4f;
}

.icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.card-link {
  display: block;
  transition: transform .15s ease;
}

.card-link:hover {
  transform: translateY(-2px);
}

.gallery-4 {
  grid-template-columns: repeat(4, 1fr);
}

.tile {
  height: 180px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #e9f5e6;
  box-shadow: var(--shadow2);
}

.tile-1 {
  background-image: url("../images/Mulching3.png");
}

.tile-2 {
  background-image: url("../images/design2.1.png");
}

.tile-3 {
  background-image: url("../images/mulching2.png");
}

.tile-4 {
  background-image: url("../images/PW1.png");
}

.tile-1,
.tile-2,
.tile-3,
.tile-4 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}