:root {
  --vy-forest: #2C5F2D;
  --vy-earth: #795C34;
  --vy-sage: #D9E4DD;
  --vy-pine: #1E392A;
  --vy-sand: #F4F1EA;
  --vy-white: #FFFFFF;
  --vy-text-dark: #222222;
  --vy-text-light: #555555;
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --transition-speed: 0.3s;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--vy-pine);
  margin-bottom: 1rem;
}

/* Header & Nav */
.vy-header-bar {
  position: sticky;
  top: 0;
  background-color: var(--vy-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 1rem 5%;
}

.vy-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vy-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vy-forest);
}

.vy-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vy-nav-links a {
  text-decoration: none;
  color: var(--vy-text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-speed);
}

.vy-nav-links a:hover {
  color: var(--vy-forest);
}

.vy-btn-primary {
  background-color: var(--vy-forest);
  color: var(--vy-white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-speed);
  display: inline-block;
}

.vy-btn-primary:hover {
  background-color: var(--vy-pine);
}

/* Hero Section */
.eco-hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background-color: var(--vy-sage);
}

.eco-hero-text {
  padding: 6rem 5% 4rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.vy-cert-badge {
  background-color: var(--vy-earth);
  color: var(--vy-white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.vy-subhead {
  font-size: 1.1rem;
  color: var(--vy-text-light);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.eco-hero-visual img {
  height: 100%;
}

.vy-noise-text {
  font-size: 0.75rem;
  color: #777;
  margin-top: 2rem;
  font-style: italic;
}

/* About Section */
.valley-about-sect {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 5%;
  gap: 4rem;
  align-items: center;
}

.valley-about-content {
  flex: 1;
  min-width: 300px;
}

.vy-section-title {
  font-size: 2.5rem;
}

.vy-body-text {
  font-size: 1.05rem;
  color: var(--vy-text-light);
  margin-bottom: 1.5rem;
}

.vy-inline-link {
  color: var(--vy-forest);
  text-decoration: underline;
  text-decoration-color: var(--vy-earth);
  text-underline-offset: 3px;
}

.vy-data-cluster {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  border-top: 1px solid #ddd;
  padding-top: 2rem;
}

.vy-data-point span:first-child, .vy-data-point span:nth-child(2) {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--vy-forest);
  font-weight: 600;
  line-height: 1;
}

.vy-data-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--vy-text-light);
  margin-top: 0.5rem;
}

.valley-about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Services Grid */
.eco-soil-services {
  background-color: var(--vy-white);
  padding: 6rem 5%;
}

.vy-services-header {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.vy-service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.agri-card-item {
  background-color: var(--vy-sand);
  padding: 2.5rem 2rem;
  border-radius: 6px;
  border-bottom: 4px solid var(--vy-forest);
  transition: transform var(--transition-speed);
}

.agri-card-item:hover {
  transform: translateY(-5px);
}

.agri-card-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.agri-card-item p {
  font-size: 0.95rem;
  color: var(--vy-text-light);
}

/* Benefits Aside */
.green-benefits-aside {
  background-color: var(--vy-forest);
  color: var(--vy-white);
  padding: 5rem 5%;
}

.vy-benefits-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.green-benefits-aside .vy-section-title {
  color: var(--vy-white);
  text-align: center;
  margin-bottom: 3rem;
}

.vy-benefit-list {
  list-style: none;
}

.vy-benefit-list li {
  background-color: rgba(255,255,255,0.1);
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid var(--vy-earth);
}

.vy-benefit-list strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.3rem;
}

/* Testimonials */
.vy-feedback-sect {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.vy-center-text {
  text-align: center;
  margin-bottom: 4rem;
}

.vy-testimonial-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.vy-review-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: var(--vy-white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  text-align: center;
}

.vy-headshot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  border: 3px solid var(--vy-sage);
}

.vy-quote {
  font-style: italic;
  color: var(--vy-text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.vy-reviewer {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.vy-reviewer-role {
  font-size: 0.8rem;
  color: var(--vy-earth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Form */
.cultivate-contact {
  background-color: var(--vy-sage);
  padding: 6rem 5%;
}

.vy-contact-inner {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--vy-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vy-form-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.vy-form-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vy-form-row .vy-input-group {
  flex: 1;
  min-width: 200px;
}

.vy-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--vy-pine);
}

.vy-input-group input, .vy-input-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.vy-input-group input:focus, .vy-input-group textarea:focus {
  outline: none;
  border-color: var(--vy-forest);
}

.vy-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Footer */
.vy-foot-base {
  background-color: var(--vy-pine);
  color: var(--vy-white);
  padding: 4rem 5% 2rem 5%;
}

.vy-foot-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.vy-foot-brand .vy-brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.vy-foot-desc {
  color: #aaa;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.vy-foot-contact h4, .vy-foot-legal h4 {
  color: var(--vy-white);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.vy-foot-contact p, .vy-foot-legal a {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.vy-foot-legal ul {
  list-style: none;
}

.vy-foot-legal a:hover {
  color: var(--vy-white);
}

.vy-foot-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  color: #777;
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .eco-hero-panel {
    grid-template-columns: 1fr;
  }
  .eco-hero-text {
    padding: 4rem 5%;
    align-items: center;
    text-align: center;
  }
  .vy-headline {
    font-size: 2.8rem;
  }
  .vy-subhead {
    max-width: 100%;
  }
  .vy-nav-links {
    display: none; /* In a real app, implement hamburger */
  }
}

@media (max-width: 600px) {
  .vy-section-title {
    font-size: 2rem;
  }
  .valley-about-sect {
    flex-direction: column;
  }
  .vy-data-cluster {
    flex-direction: column;
    gap: 1.5rem;
  }
  .vy-contact-inner {
    padding: 2rem 1.5rem;
  }
}
