:root {
    --c-soil: #3e2723;
    --c-clay: #8d6e63;
    --c-terracotta: #d84315;
    --c-leaf-dark: #2e7d32;
    --c-leaf-light: #81c784;
    --c-sand: #fdf8f5;
    --c-wheat: #f5deb3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;
}

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

body {
    font-family: var(--font-body);
    color: var(--c-soil);
    background-color: var(--c-sand);
    line-height: 1.6;
    font-size: 17px;
}

h1, h2, h3, h4, .brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--c-soil);
}

/* CRITICAL REQUIREMENT */
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    color: var(--c-terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--c-leaf-dark);
}

/* Header */
.vca-masthead {
    position: sticky;
    top: 0;
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid var(--c-wheat);
    padding: 1rem 5%;
}

.vca-masthead-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vca-brand-mark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.brand-icon {
    color: var(--c-leaf-dark);
    font-size: 1.8rem;
}

.vca-primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.vca-primary-nav a {
    color: var(--c-soil);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
}

.vca-primary-nav a:hover {
    color: var(--c-terracotta);
}

.ghost-link {
    opacity: 0.6;
}

/* Hero */
.agri-hero-canvas {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-image-underlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image-underlay img {
    height: 100%;
}

.agri-hero-canvas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(62, 39, 35, 0.9) 0%, rgba(62, 39, 35, 0.4) 100%);
    z-index: 2;
}

.hero-text-overlay {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: var(--c-sand);
}

.hero-micro-badge {
    display: inline-block;
    background: var(--c-terracotta);
    color: var(--c-sand);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--c-sand);
    margin-bottom: 1rem;
}

.hero-subhead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

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

.vca-btn-primary {
    display: inline-block;
    background: var(--c-leaf-dark);
    color: var(--c-sand);
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.vca-btn-primary:hover {
    background: var(--c-terracotta);
    color: var(--c-sand);
    transform: translateY(-2px);
}

.hero-noise-text {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
}

/* Sections Common */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 3rem;
}

/* About / Narrative */
.vca-narrative-section {
    padding: var(--spacing-xl) 5%;
    background: var(--c-sand);
}

.narrative-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.narrative-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.metric-counters-wrap {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-wheat);
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-terracotta);
    line-height: 1;
}

.metric-percent, .metric-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--c-terracotta);
    vertical-align: top;
}

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

.narrative-visual {
    position: relative;
}

.narrative-visual img {
    border-radius: 4px;
    box-shadow: -15px 15px 0 var(--c-wheat);
}

.visual-caption {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--c-soil);
    color: var(--c-sand);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-style: italic;
}

/* Services */
.agri-solutions-tier {
    padding: var(--spacing-lg) 5%;
    background: var(--c-wheat);
}

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

.solutions-cards-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.sol-card {
    background: var(--c-sand);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.sol-card img {
    height: 250px;
}

.sol-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sol-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sol-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.sol-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.sol-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.sol-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--c-terracotta);
}

.minimal-card {
    background: transparent;
    border: 2px dashed var(--c-clay);
    justify-content: center;
}

.inline-text-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-style: italic;
}

/* Testimonials */
.feedback-echo-chamber {
    padding: var(--spacing-xl) 5%;
    background: var(--c-soil);
    color: var(--c-sand);
}

.feedback-echo-chamber .section-title {
    color: var(--c-sand);
}

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

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

.testament-block {
    background: rgba(253, 248, 245, 0.05);
    padding: 2.5rem;
    border-left: 4px solid var(--c-terracotta);
}

.shifted-down {
    transform: translateY(2rem);
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.quote-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-meta strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--c-wheat);
}

.author-meta span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Contact */
.inquiry-portal {
    padding: var(--spacing-lg) 5%;
    background: var(--c-sand);
}

.portal-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.08);
}

.portal-imagery {
    flex: 1;
    display: none;
}

.portal-imagery img {
    height: 100%;
}

.portal-form-area {
    flex: 1;
    padding: 4rem;
}

.form-context {
    margin-bottom: 2rem;
    color: var(--c-clay);
}

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

.vca-form-structure label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.vca-form-structure input,
.vca-form-structure textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--c-wheat);
    background: var(--c-sand);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--c-soil);
    transition: border-color 0.3s ease;
}

.vca-form-structure input:focus,
.vca-form-structure textarea:focus {
    outline: none;
    border-color: var(--c-leaf-dark);
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.vca-global-footer {
    background: #2a1b18;
    color: var(--c-sand);
    padding: var(--spacing-lg) 5% 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.light-mode .brand-icon,
.light-mode .brand-text {
    color: var(--c-wheat);
}

.footer-tagline {
    margin-top: 1rem;
    opacity: 0.7;
    font-style: italic;
}

.vca-global-footer h4 {
    color: var(--c-wheat);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.vca-global-footer address {
    font-style: normal;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tel-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--c-terracotta);
}

.footer-email-list {
    list-style: none;
    margin-bottom: 2rem;
}

.footer-email-list li {
    margin-bottom: 0.5rem;
}

.footer-email-list a {
    color: var(--c-sand);
    opacity: 0.8;
}

.footer-email-list a:hover {
    color: var(--c-wheat);
    opacity: 1;
}

.legal-links a {
    display: block;
    color: var(--c-clay);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(245, 222, 179, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

.tiny-disclaimer {
    font-size: 0.75rem;
}

/* Responsive Leakage & Adjustments */
@media (min-width: 900px) {
    .portal-imagery {
        display: block;
    }
}

@media (max-width: 1024px) {
    .narrative-grid {
        grid-template-columns: 1fr;
    }
    .narrative-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    .shifted-down {
        transform: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .vca-primary-nav {
        display: none; /* Simplified for mobile in this demo */
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .metric-counters-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }
    .portal-form-area {
        padding: 2rem;
    }
}
