/* Final-page structure: one clear finish after the information sections.
   Keep contact, business details, and footer visually distinct. */
.service-wrap {
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(28px, 4vw, 42px);
}

.contact-copy { min-width: 0; }
.contact-card .eyebrow { margin-bottom: 17px; }
.contact-card h3 { margin: 0 0 12px; }
.contact-card p { max-width: 590px; }

.contact-card .contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 0;
  border-top: 0;
}

.contact-card .contact-actions .button { white-space: nowrap; }

.business {
  position: relative;
  isolation: isolate;
  max-width: 920px;
  min-height: 0;
  margin: 0 auto;
  padding: 26px 28px 20px;
  overflow: hidden;
  border: 1px solid #cfe4ca;
  border-radius: 26px;
  background: linear-gradient(140deg, rgba(246, 252, 242, .96), rgba(236, 248, 231, .84));
  box-shadow: 0 16px 34px rgba(38, 73, 52, .10), inset 0 1px 0 rgba(255, 255, 255, .92);
}

.business::before,
.business::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.business::before {
  top: -108px;
  right: -55px;
  width: 210px;
  height: 210px;
  border: 18px solid rgba(113, 177, 99, .14);
  box-shadow: 0 0 0 12px rgba(113, 177, 99, .08), 0 0 0 25px rgba(113, 177, 99, .045);
}

.business::after {
  bottom: -95px;
  left: -45px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(113, 177, 99, .18);
  box-shadow: 0 0 0 16px rgba(113, 177, 99, .08), 0 0 0 32px rgba(113, 177, 99, .045);
}

.business > * { position: relative; z-index: 1; }

.business-heading { padding: 0 0 16px; }
.business-heading::after {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 0 18%, #dcebd8 18% 100%);
}

.business-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  padding-top: 10px;
}

.business-row,
.business-row:nth-child(even) {
  min-width: 0;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 42px;
  padding: 11px 8px;
  border-left: 0;
  border-bottom: 1px solid #e1eee0;
  border-radius: 10px;
  background: transparent;
}

.business-row:nth-child(5) { grid-column: 1 / -1; }
.business-row:nth-child(even) { background: rgba(255, 255, 255, .32); }
.business-row:last-child { border-bottom: 0; }
.business-row dt { gap: 7px; color: #39734b; }
.business-row dt::before { width: 6px; height: 6px; box-shadow: none; }
.business-row dd { color: #244f31; font-weight: 750; }
.business-row:hover { background: rgba(219, 240, 212, .55); transform: translateY(-1px); }
.business-row:last-child dd a { padding: 0; border: 0; border-radius: 0; background: transparent; }
.business-row:last-child dd a::after { content: "↗"; }

.business-actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px dashed #d7e9d1;
}

.business-action {
  min-height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .85);
}

.hero-phone {
  width: fit-content;
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(47, 109, 75, .16);
  border-radius: 14px;
  color: #245d38;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 9px 18px rgba(38, 89, 49, .07), inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hero-phone:hover {
  border-color: rgba(47, 109, 75, .34);
  box-shadow: 0 13px 24px rgba(38, 89, 49, .12);
  transform: translateY(-2px);
}

.hero-phone-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 109, 75, .12);
  border-radius: 11px 11px 11px 5px;
  background: #edf8e8;
  font-size: 17px;
  line-height: 1;
}

.hero-phone > span:nth-child(2) { display: grid; gap: 2px; }
.hero-phone small { color: #5a8665; font-size: 9px; font-weight: 800; line-height: 1.2; }
.hero-phone strong { color: inherit; font-size: 13px; font-weight: 850; letter-spacing: -.025em; line-height: 1.25; }
.hero-phone-arrow { font-size: 16px; transition: transform .2s ease; }
.hero-phone:hover .hero-phone-arrow { transform: translateX(3px); }

footer { margin-top: 0; }

@media (max-width: 760px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }

  .contact-card .contact-actions { justify-content: flex-start; }
  .business { max-width: none; padding: 23px 18px 18px; border-radius: 22px; }
  .business-list { grid-template-columns: 1fr; gap: 0; }
  .business-row,
  .business-row:nth-child(even) {
    grid-column: auto;
    grid-template-columns: minmax(92px, 30%) minmax(0, 1fr);
    gap: 10px;
    padding: 11px 2px;
  }

  .hero-phone { width: 100%; }
}

@media (max-width: 430px) {
  .contact-card { padding: 23px 18px; }
  .contact-card .contact-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-card .contact-actions .button { width: 100%; padding-inline: 10px; }
  .business-row,
  .business-row:nth-child(even) { grid-template-columns: minmax(85px, 30%) minmax(0, 1fr); font-size: 12px; }
  .business-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .business-action { min-height: 37px; padding-inline: 5px; font-size: 10px; }
  .hero-phone { gap: 7px; padding-right: 9px; }
  .hero-phone strong { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .business-row { transition: none !important; }
}

/* Mobile visual order: show the farm image before the hero copy. */
@media (max-width: 760px) {
  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .hero-art {
    order: 1;
    width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .hero-copy {
    order: 2;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

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