:root {
    --forest-dark: #1B4332;
    --forest-med: #2D6A4F;
    --forest-light: #40916C;
    --forest-pale: #D8F3DC;
    --earth-white: #F4F1DE;
    --terra-accent: #E07A5F;
    --text-dark: #081C15;
    --text-muted: #4A5D23;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.vy-section-head {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

/* Buttons */
.vy-btn-primary, .vy-btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, background-color 0.2s;
}

.vy-btn-primary {
    background-color: var(--terra-accent);
    color: #fff;
}

.vy-btn-primary:hover {
    background-color: #c9654d;
    transform: translateY(-2px);
}

.vy-btn-secondary {
    background-color: var(--forest-dark);
    color: #fff;
}

.vy-btn-secondary:hover {
    background-color: var(--forest-med);
    transform: translateY(-2px);
}

.vy-inline-link {
    color: var(--forest-light);
    text-decoration: underline;
    font-weight: 600;
}

.vy-inline-link:hover {
    color: var(--forest-dark);
}

/* Header */
.vy-topbar {
    background-color: var(--forest-dark);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.vy-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.vy-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.vy-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

/* Hero */
.eco-hero-region {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.eco-hero-content {
    flex: 1;
    max-width: 600px;
}

.eco-hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.vy-badge {
    background-color: var(--forest-pale);
    color: var(--forest-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.eco-hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.eco-hero-sub {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-muted);
}

.eco-hero-imagery {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.15);
}

/* Heritage (About) */
.vy-heritage {
    background-color: #fff;
    padding: 95px 5%;
    margin-bottom: 40px;
}

.vy-heritage-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vy-heritage-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.vy-stats-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--earth-white);
}

.vy-stat-box {
    display: flex;
    flex-direction: column;
}

.vy-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terra-accent);
    line-height: 1;
}

.vy-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 600;
}

.vy-heritage-image img {
    border-radius: 12px;
}

/* Capabilities (Services) */
.agri-ops-hub {
    padding: 110px 5%;
    background-color: var(--forest-dark);
    color: #fff;
}

.agri-ops-hub .vy-section-head {
    color: var(--forest-pale);
}

.agri-ops-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.agri-capability-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.agri-card {
    background-color: #fff;
    color: var(--text-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.agri-card-img {
    height: 220px;
}

.agri-card-body {
    padding: 30px;
}

.agri-card-body h3 {
    color: var(--forest-med);
    margin-bottom: 15px;
}

.agri-card-body p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.agri-card-list {
    list-style: none;
}

.agri-card-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.agri-card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--terra-accent);
}

/* Testimonials */
.vy-voices {
    padding: 100px 5%;
    background-color: var(--earth-white);
}

.vy-voices-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.vy-voice-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.vy-voice-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--forest-pale);
    line-height: 1;
    font-family: serif;
}

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

.vy-voice-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.vy-voice-author strong {
    display: block;
    color: var(--forest-dark);
}

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

/* Contact */
.vy-comms {
    padding: 120px 5%;
    background-color: #fff;
}

.vy-comms-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.vy-comms-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.vy-contact-details {
    margin: 30px 0;
    background: var(--earth-white);
    padding: 25px;
    border-radius: 8px;
}

.vy-contact-details p {
    margin-bottom: 15px;
    font-weight: 500;
}

.vy-contact-details p:last-child {
    margin-bottom: 0;
}

.vy-hours {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vy-form-group {
    margin-bottom: 20px;
}

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

.vy-form-group input, .vy-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fafafa;
}

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

.vy-submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
}

/* Footer */
.vy-base {
    background-color: var(--text-dark);
    color: #fff;
    padding: 80px 5% 30px;
}

.vy-base-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.vy-base-col h3, .vy-base-col h4 {
    color: var(--forest-pale);
    margin-bottom: 20px;
}

.vy-base-col p, .vy-base-col a {
    color: #aaa;
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: block;
}

.vy-base-col a:hover {
    color: #fff;
}

.vy-base-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
    flex-wrap: wrap;
    gap: 20px;
}

.vy-tiny-disclaimer {
    font-style: italic;
}

/* Responsive Leakage & Adaptation */
@media (max-width: 992px) {
    .eco-hero-region, .vy-heritage-grid, .vy-comms-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    .eco-hero-badges {
        justify-content: center;
    }
    .eco-hero-title {
        font-size: 3rem;
    }
    .vy-stats-row {
        justify-content: center;
    }
    .vy-contact-details {
        text-align: left;
    }
    .vy-base-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vy-nav-links {
        display: none; /* Simplified mobile for demo */
    }
    .vy-section-head {
        font-size: 2rem;
    }
    .eco-hero-region {
        padding: 50px 5%;
    }
    .agri-ops-hub {
        padding: 70px 5%;
    }
}
