:root {
  --forest-dark: #1A3A24;
  --forest-primary: #2C5E3B;
  --forest-light: #4A7C59;
  --earth-brown: #8B5A2B;
  --cream-bg: #F5F5F0;
  --cream-alt: #EAEAE2;
  --text-dark: #222222;
  --text-muted: #555555;
  --white: #FFFFFF;
  --font-main: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Images */
.vy-responsive-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.vy-rounded-img {
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.vy-bordered-img {
  border: 4px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

/* Typography links */
.inline-link {
  color: var(--forest-primary);
  text-decoration: underline;
  text-decoration-color: var(--forest-light);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.inline-link:hover {
  color: var(--forest-dark);
}

/* Buttons */
.sprout-action-btn {
  display: inline-block;
  background-color: var(--forest-primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.sprout-action-btn:hover {
  background-color: var(--forest-dark);
  transform: translateY(-2px);
}

/* Header */
.vy-site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--cream-alt);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}
.vy-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vy-brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vy-brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--forest-dark);
  letter-spacing: -0.5px;
}
.vy-primary-nav {
  display: flex;
  gap: 25px;
}
.vy-nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.vy-nav-link:hover {
  color: var(--forest-primary);
}

/* Main Layout Drift */
.vy-main-content > * {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero */
.agri-hero-section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.hero-text-block {
  flex: 1;
}
.hero-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--forest-dark);
  margin-bottom: 20px;
}
.hero-sub-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 90%;
}
.hero-visual-block {
  flex: 1;
}

/* Our Story (Deep Content) */
.deep-roots-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background-color: var(--white);
  padding: 90px 60px !important;
  border-radius: 12px;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.story-heading {
  font-size: 2.2rem;
  color: var(--forest-dark);
  margin-bottom: 25px;
}
.story-paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}
.stat-highlight-box {
  margin-top: 35px;
  padding: 20px;
  background-color: var(--cream-bg);
  border-left: 4px solid var(--earth-brown);
  display: inline-block;
}
.stat-ticker-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--forest-primary);
  line-height: 1;
}
.stat-ticker-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Solutions Asymmetric Grid */
.harvest-solutions-area {
  padding-top: 60px !important;
}
.solutions-header {
  margin-bottom: 50px;
}
.solutions-title {
  font-size: 2.5rem;
  color: var(--forest-dark);
}
.solutions-intro {
  color: var(--earth-brown);
  font-size: 1.1rem;
  font-weight: 600;
}
.solutions-layout-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.solutions-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.crop-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--forest-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.crop-card-title {
  font-size: 1.3rem;
  color: var(--forest-dark);
  margin-bottom: 15px;
}
.crop-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.crop-card-img {
  border-radius: 4px;
  margin-top: auto;
  height: 140px;
}

.process-sidebar {
  flex: 1;
  background-color: var(--forest-dark);
  color: var(--white);
  padding: 35px;
  border-radius: 8px;
}
.process-title {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--cream-bg);
}
.process-list {
  list-style: none;
  margin-bottom: 30px;
}
.process-step {
  margin-bottom: 15px;
  font-size: 0.95rem;
  padding-left: 15px;
  border-left: 2px solid var(--forest-light);
}
.hours-note {
  font-size: 0.85rem;
  color: var(--cream-alt);
  opacity: 0.8;
}

/* Testimonials */
.grower-feedback-area {
  background-color: var(--cream-alt);
  padding: 80px 40px !important;
  border-radius: 12px;
  margin: 60px auto;
}
.feedback-main-heading {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--forest-dark);
}
.feedback-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grower-voice-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  position: relative;
}
.voice-quote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.voice-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-headshot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest-dark);
}

/* Contact */
.field-contact-zone {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.contact-form-container {
  flex: 1;
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.contact-heading {
  font-size: 2rem;
  color: var(--forest-dark);
  margin-bottom: 10px;
}
.contact-sub {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.form-input-group {
  margin-bottom: 20px;
}
.form-lbl {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--forest-dark);
}
.form-fld {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
.form-fld:focus {
  outline: none;
  border-color: var(--forest-primary);
}
.form-txt {
  resize: vertical;
}
.submit-btn {
  width: 100%;
  font-size: 1.05rem;
}
.contact-image-container {
  flex: 1;
}
.contact-image-container img {
  border-radius: 8px;
}

/* Footer */
.vy-site-footer {
  background-color: var(--forest-dark);
  color: var(--cream-bg);
  padding: 60px 20px 20px;
}
.footer-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  color: var(--white);
  display: block;
  margin-bottom: 15px;
}
.footer-address, .footer-phone {
  color: var(--cream-alt);
  font-size: 0.95rem;
  margin-bottom: 5px;
  opacity: 0.8;
}
.footer-col-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-link {
  display: block;
  color: var(--cream-alt);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--cream-alt);
  opacity: 0.7;
}
.tiny-disclaimer {
  max-width: 500px;
  text-align: right;
}

/* Responsive Leakage & Jitter */
@media (max-width: 1050px) {
  .agri-hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 60px !important;
  }
  .hero-sub-text {
    margin: 0 auto 30px;
  }
  .deep-roots-story {
    grid-template-columns: 1fr;
    padding: 50px 30px !important;
  }
}

@media (max-width: 815px) {
  .solutions-layout-wrapper {
    flex-direction: column;
  }
  .feedback-card-wrapper {
    grid-template-columns: 1fr;
  }
  .field-contact-zone {
    flex-direction: column-reverse;
  }
  .vy-primary-nav {
    display: none; /* simple mobile hide for realism */
  }
  .footer-inner-wrap {
    grid-template-columns: 1fr;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .tiny-disclaimer {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .hero-main-title {
    font-size: 2.5rem;
  }
}
