/* Verdant Yields - Eco-Agriculture Styles */
:root {
    --vy-forest-dark: #1B4332;
    --vy-forest-mid: #2D6A4F;
    --vy-earth-light: #D8F3DC;
    --vy-earth-accent: #95D5B2;
    --vy-bark: #33281E;
    --vy-white: #FAFAFA;
    --vy-text-main: #2C3E35;
    --vy-radius: 8px;
    --vy-transition: all 0.3s ease-in-out;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--vy-text-main);
    background-color: var(--vy-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Image Rules */
img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--vy-forest-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1.25rem; }

/* Header & Nav */
.vy-top-nav {
    position: sticky;
    top: 0;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--vy-earth-light);
}

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

.vy-brand-mark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--vy-forest-dark);
}

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

.vy-menu-links a {
    text-decoration: none;
    color: var(--vy-text-main);
    font-weight: 600;
    transition: var(--vy-transition);
}

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

/* Buttons */
.vy-btn-primary, .vy-cta-btn {
    background-color: var(--vy-forest-mid);
    color: var(--vy-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--vy-radius);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: var(--vy-transition);
}

.vy-btn-primary:hover, .vy-cta-btn:hover {
    background-color: var(--vy-forest-dark);
    transform: translateY(-2px);
}

.vy-btn-text {
    text-decoration: none;
    color: var(--vy-forest-mid);
    font-weight: 600;
}

.vy-btn-text:hover {
    text-decoration: underline;
}

.vy-inline-link {
    color: var(--vy-forest-mid);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--vy-earth-accent);
    text-underline-offset: 4px;
}

/* Hero Section */
.eco-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    background-color: var(--vy-earth-light);
}

.eco-hero-content {
    padding: 6vw 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vy-trusted-badge {
    display: inline-block;
    background-color: var(--vy-earth-accent);
    color: var(--vy-forest-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    width: max-content;
}

.eco-hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
}

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

/* About / Roots Section */
.valley-roots-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.roots-text-wrap {
    flex: 1;
}

.vy-service-regions {
    margin-top: 2rem;
    list-style: none;
    background: var(--vy-earth-light);
    padding: 1.5rem;
    border-radius: var(--vy-radius);
    border-left: 4px solid var(--vy-forest-mid);
}

.roots-image-wrap {
    flex: 1;
}

.roots-image-wrap img {
    border-radius: var(--vy-radius);
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.1);
}

/* Methodology / Tabs */
.agri-methods-wrap {
    background-color: var(--vy-forest-dark);
    color: var(--vy-white);
    padding: 6rem 2rem;
}

.agri-methods-wrap h2, .agri-methods-wrap h3 {
    color: var(--vy-earth-light);
}

.methods-header {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.vy-tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.vy-tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vy-tab-btn {
    background: transparent;
    border: 2px solid var(--vy-earth-accent);
    color: var(--vy-earth-light);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: var(--vy-transition);
}

.vy-tab-btn.active, .vy-tab-btn:hover {
    background: var(--vy-earth-accent);
    color: var(--vy-forest-dark);
}

.vy-tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.vy-tab-pane.active {
    display: block;
}

.pane-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: var(--vy-radius);
}

.pane-inner ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.pane-inner img {
    border-radius: var(--vy-radius);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Perks / Benefits */
.yield-perks-aside {
    padding: 5rem 2rem;
    background: var(--vy-white);
}

.perks-container {
    max-width: 1200px;
    margin: 0 auto;
}

.perks-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.perk-card {
    padding: 2rem;
    background: var(--vy-earth-light);
    border-radius: var(--vy-radius);
    border-top: 4px solid var(--vy-forest-mid);
}

/* Testimonials */
.grower-praise {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.grower-praise h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.praise-flex {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.praise-item {
    flex: 1;
    min-width: 300px;
    background: var(--vy-white);
    padding: 2rem;
    border-radius: var(--vy-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
}

.praise-item::before {
    content: '"';
    font-size: 4rem;
    color: var(--vy-earth-accent);
    position: absolute;
    top: 1rem;
    left: 1rem;
    opacity: 0.3;
    line-height: 1;
}

.praise-item p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.praise-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.praise-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.praise-author span {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

/* Contact Form */
.soil-consult-section {
    background-color: var(--vy-earth-light);
    padding: 6rem 2rem;
}

.consult-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: var(--vy-white);
    padding: 3rem;
    border-radius: var(--vy-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

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

.vy-form input, .vy-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.vy-form input:focus, .vy-form textarea:focus {
    outline: none;
    border-color: var(--vy-forest-mid);
    box-shadow: 0 0 0 3px var(--vy-earth-accent);
}

/* Footer */
.vy-site-footer {
    background-color: var(--vy-bark);
    color: var(--vy-white);
    padding: 4rem 2rem 2rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--vy-earth-accent);
}

.vy-micro-disclaimer {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--vy-white);
    margin-bottom: 1rem;
}

.footer-links p, .footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--vy-earth-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 900px) {
    .eco-hero-split {
        grid-template-columns: 1fr;
    }
    .eco-hero-visual {
        order: -1;
    }
    .valley-roots-section {
        flex-direction: column;
    }
    .pane-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .vy-menu-links {
        display: none; /* Simplification for mobile */
    }
    .consult-form-wrap {
        padding: 2rem 1.5rem;
    }
}
