:root { --deep-pine: #1b3b22; --leaf-green: #3a5f43; --earth-brown: #8b5a2b; --sand: #f4f1ea; --text-dark: #2c2c2c; --font-head: 'Playfair Display', serif; --font-body: 'Lora', serif; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: var(--font-body); color: var(--text-dark); background-color: var(--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-head); color: var(--deep-pine); margin-bottom: 1rem; } a { color: var(--leaf-green); text-decoration: none; transition: color 0.3s; } a:hover { color: var(--earth-brown); } .vh-head-wrap { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .vh-brand-core { display: flex; align-items: center; gap: 0.8rem; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--deep-pine); } .agri-nav-menu { display: flex; gap: 2rem; align-items: center; } .eco-action-btn { background: var(--leaf-green); color: #fff; padding: 0.6rem 1.2rem; border-radius: 4px; font-weight: 600; } .eco-action-btn:hover { background: var(--earth-brown); color: #fff; } .eco-action-btn-large { display: inline-block; background: var(--earth-brown); color: #fff; padding: 1rem 2rem; border-radius: 4px; font-size: 1.1rem; border: none; cursor: pointer; transition: background 0.3s; } .eco-action-btn-large:hover { background: var(--deep-pine); color: #fff; } .yield-hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; } .hero-text-pane { padding: 8% 10%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; background: var(--deep-pine); color: var(--sand); } .hero-text-pane h1 { color: var(--sand); font-size: 3.5rem; line-height: 1.1; } .vh-sub-text { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.9; } .hero-img-pane img { height: 100%; } .bio-origins-deep { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 6rem 5%; align-items: center; } .origins-content p { margin-bottom: 1.5rem; font-size: 1.1rem; } .inline-agri-link { text-decoration: underline; font-weight: 600; } .soil-stats-grid { display: flex; gap: 2rem; margin-top: 3rem; border-top: 1px solid var(--leaf-green); padding-top: 2rem; } .stat-node { display: flex; flex-direction: column; } .counter-val { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: var(--earth-brown); } .stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--leaf-green); font-weight: 600; } .eco-solutions-asym { padding: 5rem 5%; background: #fff; } .section-heading-wrap { max-width: 600px; margin-bottom: 4rem; } .section-heading-wrap h2 { font-size: 2.8rem; } .solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; } .bio-card { background: var(--sand); padding: 2rem; border-radius: 8px; transition: transform 0.3s; } .bio-card:hover { transform: translateY(-10px); } .bio-card img { height: 200px; border-radius: 4px; margin-bottom: 1.5rem; } .grower-feedback-wrap { padding: 6rem 5%; background: var(--deep-pine); color: var(--sand); } .grower-feedback-wrap h2 { color: var(--sand); text-align: center; margin-bottom: 4rem; font-size: 2.5rem; } .feedback-flex { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; } .review-node { background: rgba(255,255,255,0.05); padding: 2.5rem; max-width: 400px; border-left: 4px solid var(--earth-brown); } .review-node p { font-style: italic; margin-bottom: 2rem; font-size: 1.1rem; } .reviewer-meta { display: flex; align-items: center; gap: 1rem; } .reviewer-meta img { width: 60px; height: 60px; border-radius: 50%; } .harvest-connect-form { padding: 8rem 5%; display: flex; justify-content: center; } .form-wrapper { background: #fff; padding: 4rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); width: 100%; max-width: 600px; } .input-group { margin-bottom: 1.5rem; display: flex; flex-direction: column; } .input-group label { font-weight: 600; margin-bottom: 0.5rem; color: var(--deep-pine); } .input-group input, .input-group textarea { padding: 0.8rem; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-body); } .vh-foot-base { background: #111; color: #aaa; padding: 4rem 5% 2rem; font-size: 0.9rem; } .foot-inner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; } .foot-col h4 { color: #fff; font-family: var(--font-body); margin-bottom: 1.5rem; } .foot-col a { display: block; color: #aaa; margin-bottom: 0.5rem; } .foot-col p { margin-bottom: 0.5rem; } .foot-copy { text-align: center; border-top: 1px solid #333; padding-top: 2rem; } @media (max-width: 768px) { .yield-hero-split, .bio-origins-deep { grid-template-columns: 1fr; } .hero-text-pane { padding: 15% 5%; } .agri-nav-menu { display: none; } }