:root {
  --forest-dark: #1F3625;
  --forest-mid: #3B5A43;
  --forest-light: #6B8E73;
  --earth-brown: #8C6A48;
  --earth-light: #D4C3B3;
  --bg-main: #F4F7F4;
  --white: #FFFFFF;
  --text-dark: #2C352E;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Lora', serif;
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, .vyd-brand-text {
  font-family: 'Merriweather', serif;
  color: var(--forest-dark);
  margin-top: 0;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Top Navigation */
.vyd-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4%;
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(31, 54, 37, 0.05);
}

.vyd-logo-cluster {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vyd-brand-text {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
}

.vyd-main-nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.vyd-main-nav a {
  text-decoration: none;
  color: var(--forest-mid);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.vyd-main-nav a:hover {
  color: var(--earth-brown);
}

.vyd-action-btn {
  background-color: var(--earth-brown);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
}

/* Buttons */
.vyd-btn-primary, .vyd-btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 3px;
  text-decoration: none;
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.vyd-btn-primary {
  background-color: var(--forest-dark);
  color: var(--white);
}

.vyd-btn-primary:hover {
  background-color: var(--forest-mid);
}

.vyd-btn-secondary {
  background-color: transparent;
  color: var(--forest-dark);
  border: 1px solid var(--forest-dark);
}

.vyd-btn-secondary:hover {
  background-color: var(--forest-dark);
  color: var(--white);
}

/* Hero Section */
.vyd-hero-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5% 4rem;
  background: linear-gradient(135deg, #e9f0e9 0%, var(--bg-main) 100%);
}

.vyd-hero-text-pane {
  flex: 1 1 450px;
}

.vyd-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--earth-brown);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
}

.vyd-hero-headline {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.vyd-hero-sub {
  font-size: 1.2rem;
  color: var(--forest-mid);
  margin-bottom: 2.5rem;
}

.vyd-hero-actions {
  display: flex;
  gap: 1rem;
}

.vyd-hero-visual {
  flex: 1 1 400px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(31, 54, 37, 0.15);
}

/* Methodology Article */
.vyd-deep-methodology {
  display: flex;
  flex-wrap: wrap;
  padding: 7rem 5%;
  gap: 5rem;
  background-color: var(--white);
}

.vyd-method-content {
  flex: 1 1 500px;
}

.vyd-method-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vyd-method-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.vyd-inline-link {
  color: var(--earth-brown);
  text-decoration: underline;
  text-decoration-color: var(--earth-light);
  text-underline-offset: 4px;
}

.vyd-data-dashboard {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e0e5e0;
}

.vyd-stat-block {
  display: flex;
  flex-direction: column;
}

.vyd-metric-number {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  color: var(--forest-dark);
  font-weight: 700;
  line-height: 1;
}

.vyd-metric-suffix {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: var(--earth-brown);
}

.vyd-metric-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest-light);
  margin-top: 0.5rem;
}

.vyd-method-images {
  flex: 1 1 350px;
  position: relative;
  min-height: 500px;
}

.vyd-img-offset-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vyd-img-offset-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65%;
  border: 8px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Solutions Section */
.vyd-solutions-wrap {
  padding: 6rem 5%;
  background-color: var(--forest-dark);
  color: var(--bg-main);
}

.vyd-solutions-wrap h2 {
  color: var(--white);
  font-size: 2.5rem;
}

.vyd-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.vyd-section-header p {
  color: var(--forest-light);
  font-size: 1.1rem;
}

.vyd-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vyd-solution-card {
  background-color: var(--white);
  border-radius: 6px;
  overflow: hidden;
  color: var(--text-dark);
}

.vyd-solution-card img {
  height: 220px;
}

.vyd-solution-card h3 {
  margin: 1.5rem 1.5rem 0.5rem;
  font-size: 1.4rem;
}

.vyd-solution-card p {
  margin: 0 1.5rem 1.5rem;
  color: #555;
}

.vyd-card-text-only {
  padding: 2rem 1.5rem;
  height: 100%;
  background-color: var(--earth-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vyd-card-text-only h3 {
  margin-top: 0;
}

/* Feedback Section */
.vyd-grower-feedback {
  padding: 5rem 5% 8rem;
  background-color: var(--bg-main);
  text-align: center;
}

.vyd-grower-feedback h2 {
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

.vyd-feedback-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.vyd-quote-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 450px;
  margin: 0;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  border-left: 4px solid var(--earth-brown);
}

.vyd-quote-card p {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #555;
}

.vyd-grower-id {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vyd-grower-id img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.vyd-grower-id strong {
  display: block;
  color: var(--forest-dark);
  font-family: 'Merriweather', serif;
}

.vyd-grower-id span {
  font-size: 0.85rem;
  color: var(--earth-brown);
}

/* Contact Section */
.vyd-contact-zone {
  display: flex;
  flex-wrap: wrap;
  padding: 6rem 10%;
  gap: 4rem;
  background-color: var(--forest-mid);
  color: var(--white);
}

.vyd-contact-info {
  flex: 1 1 300px;
}

.vyd-contact-info h2 {
  color: var(--white);
  font-size: 2.5rem;
}

.vyd-contact-info p {
  font-size: 1.1rem;
  color: #e0e5e0;
}

.vyd-micro-detail {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem !important;
}

.vyd-form-layout {
  flex: 1 1 400px;
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  color: var(--text-dark);
}

.vyd-input-group {
  margin-bottom: 1.5rem;
}

.vyd-input-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest-dark);
}

.vyd-input-group input, .vyd-input-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Lora', serif;
}

.vyd-input-group input:focus, .vyd-input-group textarea:focus {
  outline: none;
  border-color: var(--forest-light);
  box-shadow: 0 0 0 2px rgba(107, 142, 115, 0.2);
}

/* Footer */
.vyd-global-footer {
  background-color: #111e15;
  color: #a0afa4;
  padding: 4rem 5% 2rem;
  font-size: 0.9rem;
}

.vyd-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.vyd-footer-col h4 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.vyd-footer-col a {
  display: block;
  color: #a0afa4;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.vyd-footer-col a:hover {
  color: var(--earth-brown);
}

.vyd-footer-bottom {
  border-top: 1px solid #2a3a2e;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.vyd-tiny-disclaimer {
  font-size: 0.75rem;
  color: #66766a;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .vyd-hero-headline {
    font-size: 2.5rem;
  }
  .vyd-deep-methodology {
    padding: 4rem 5%;
  }
  .vyd-method-images {
    min-height: 350px;
  }
  .vyd-contact-zone {
    padding: 4rem 5%;
  }
  .vyd-main-nav {
    display: none; /* Simplification for mobile, assuming a hamburger menu would be here in full build */
  }
}
