/* Verdant Yield Partners - Custom Stylesheet */
:root {
  --vy-forest-dark: #1E3F20;
  --vy-forest-green: #2C5E30;
  --vy-sage-light: #E8F1E9;
  --vy-earth-white: #F4F0EB;
  --vy-soil-brown: #A67C52;
  --vy-text-main: #333333;
  --vy-text-muted: #555555;
  
  --vy-font-serif: 'Playfair Display', serif;
  --vy-font-sans: 'Lora', serif; /* Using Lora as readable body serif */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--vy-font-sans);
  color: var(--vy-text-main);
  background-color: var(--vy-earth-white);
  line-height: 1.65;
}

/* Global Media Rule */
.vy-responsive-media {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Typography */
.vy-section-title {
  font-family: var(--vy-font-serif);
  font-size: 2.8rem;
  color: var(--vy-forest-dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.vy-body-paragraph {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--vy-text-muted);
}

.vy-inline-reference {
  color: var(--vy-forest-green);
  text-decoration: underline;
  text-decoration-color: var(--vy-soil-brown);
  font-weight: 600;
}

.vy-light-text {
  color: var(--vy-earth-white);
}

.vy-center-text {
  text-align: center;
}

/* Action Triggers */
.vy-action-trigger {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-family: var(--vy-font-serif);
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.05rem;
}

.vy-primary-action {
  background-color: var(--vy-soil-brown);
  color: #fff;
}

.vy-primary-action:hover {
  background-color: var(--vy-forest-dark);
}

/* Navigation */
.vy-top-nav {
  background-color: var(--vy-forest-dark);
  color: var(--vy-earth-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vy-nav-boundary {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.vy-brand-icon {
  color: var(--vy-soil-brown);
}

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

.vy-nav-item {
  color: var(--vy-earth-white);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.vy-nav-item:hover {
  color: var(--vy-soil-brown);
}

.vy-ghost-link {
  opacity: 0.6;
}

.vy-nav-cta {
  background-color: var(--vy-forest-green);
  color: #fff;
  padding: 0.6rem 1.2rem;
}

.vy-nav-cta:hover {
  background-color: var(--vy-soil-brown);
}

/* Hero Split Layout */
.vy-hero-split-layout {
  display: flex;
  min-height: 85vh;
  background-color: var(--vy-sage-light);
}

.vy-hero-text-pane {
  flex: 1;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vy-hero-visual-pane {
  flex: 1;
}

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

.vy-hero-headline {
  font-family: var(--vy-font-serif);
  font-size: 3.8rem;
  color: var(--vy-forest-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.vy-hero-subtext {
  font-size: 1.25rem;
  color: var(--vy-text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.vy-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vy-hero-trust-badge {
  font-size: 0.9rem;
  color: var(--vy-forest-green);
  font-style: italic;
  border-left: 2px solid var(--vy-soil-brown);
  padding-left: 1rem;
}

/* Deep Story Section */
.vy-deep-story-section {
  padding: 7.5rem 0;
  background-color: var(--vy-earth-white);
}

.vy-story-boundary {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.vy-story-image-wrap img {
  border-radius: 8px;
  box-shadow: -15px 15px 0px var(--vy-sage-light);
}

/* Data Metrics */
.vy-data-metrics-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.vy-metric-node {
  display: flex;
  flex-direction: column;
}

.vy-metric-number {
  font-family: var(--vy-font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vy-soil-brown);
  line-height: 1;
}

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

/* Solutions Matrix */
.vy-solutions-matrix {
  background-color: #fff;
  padding: 6.2rem 2rem;
}

.vy-matrix-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.vy-section-lead {
  font-size: 1.2rem;
  color: var(--vy-text-muted);
}

.vy-solution-cards-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.vy-solution-card {
  background: var(--vy-earth-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.vy-solution-card:hover {
  transform: translateY(-5px);
}

.vy-card-media {
  height: 220px;
}

.vy-card-title {
  font-family: var(--vy-font-serif);
  font-size: 1.4rem;
  color: var(--vy-forest-dark);
  padding: 1.5rem 1.5rem 0.5rem;
}

.vy-card-desc {
  padding: 0 1.5rem 1.8rem;
  color: var(--vy-text-muted);
  font-size: 1rem;
}

/* Core Advantages */
.vy-core-advantages {
  background-color: var(--vy-forest-dark);
  padding: 5.8rem 2rem;
}

.vy-advantages-boundary {
  max-width: 900px;
  margin: 0 auto;
}

.vy-advantage-list {
  list-style: none;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vy-advantage-item {
  background: rgba(255,255,255,0.05);
  padding: 1.8rem;
  border-radius: 4px;
  color: var(--vy-sage-light);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vy-adv-icon {
  font-size: 1.5rem;
}

.vy-advantage-item strong {
  display: block;
  color: var(--vy-earth-white);
  font-family: var(--vy-font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

/* Testimonials */
.vy-testimonials-zone {
  padding: 6.5rem 2rem;
  background-color: var(--vy-sage-light);
}

.vy-feedback-grid {
  max-width: 1000px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vy-feedback-block {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  position: relative;
}

.vy-feedback-block::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--vy-sage-light);
  font-family: var(--vy-font-serif);
}

.vy-quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--vy-text-main);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.vy-quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--vy-earth-white);
  padding-top: 1.5rem;
}

.vy-author-pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.vy-author-details {
  display: flex;
  flex-direction: column;
}

.vy-author-name {
  font-weight: 700;
  color: var(--vy-forest-dark);
}

.vy-author-role {
  font-size: 0.85rem;
  color: var(--vy-text-muted);
}

/* Contact Form */
.vy-contact-soil {
  padding: 7rem 2rem;
  background-color: var(--vy-earth-white);
}

.vy-contact-boundary {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.vy-micro-detail {
  margin-top: 2rem;
  padding: 1rem;
  background: var(--vy-sage-light);
  border-left: 3px solid var(--vy-forest-green);
  font-size: 0.95rem;
}

.vy-form-layout {
  background: #fff;
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

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

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

.vy-text-input, .vy-text-area {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--vy-earth-white);
}

.vy-text-input:focus, .vy-text-area:focus {
  outline: none;
  border-color: var(--vy-forest-green);
  background-color: #fff;
}

.vy-submit-btn {
  width: 100%;
  background-color: var(--vy-forest-green);
  color: #fff;
  margin-top: 1rem;
}

.vy-submit-btn:hover {
  background-color: var(--vy-forest-dark);
}

/* Footer */
.vy-foot-base {
  background-color: #112412;
  color: var(--vy-sage-light);
  padding: 4rem 2rem 2rem;
}

.vy-foot-boundary {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.vy-foot-brand {
  color: var(--vy-earth-white);
  margin-bottom: 1rem;
}

.vy-foot-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 300px;
}

.vy-foot-heading {
  font-family: var(--vy-font-serif);
  color: var(--vy-earth-white);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

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

.vy-foot-list li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.vy-foot-link {
  color: var(--vy-sage-light);
  text-decoration: none;
  transition: color 0.2s;
}

.vy-foot-link:hover {
  color: var(--vy-soil-brown);
}

.vy-foot-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.vy-copyright-text {
  font-size: 0.9rem;
  opacity: 0.7;
}

.vy-disclaimer-noise {
  font-size: 0.75rem;
  opacity: 0.5;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .vy-hero-split-layout {
    flex-direction: column;
  }
  .vy-hero-text-pane {
    padding: 4rem 2rem;
  }
  .vy-story-boundary, .vy-contact-boundary {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vy-advantage-list, .vy-feedback-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vy-navigation-links {
    display: none; /* Simplification for brief output */
  }
  .vy-hero-headline {
    font-size: 2.8rem;
  }
  .vy-foot-boundary {
    grid-template-columns: 1fr;
  }
  .vy-data-metrics-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}
