/* Palette: Sea Green, Saddle Brown, Beige, Off-White */
:root {
    --green: #2E8B57;
    --green-dark: #1e5e3a;
    --brown: #8B4513;
    --beige: #F5F5DC;
    --white: #FFFFFF;
    --text: #333333;
    
    --font-serif: 'Merriweather', serif;
    --font-sans: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--beige);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

/* Header */
.nature-header { padding: 20px 0; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--green); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.5rem; color: var(--green); font-weight: 700; letter-spacing: 1px; }
.leaf-icon { color: var(--green); margin: 0 5px; }

.organic-nav a { margin-left: 25px; font-weight: 600; color: #555; font-size: 0.95rem; text-transform: uppercase; }
.organic-nav a:hover, .organic-nav a.active { color: var(--green); }

.btn-green { background: var(--green); color: var(--white); padding: 10px 25px; border-radius: 20px; font-weight: 600; margin-left: 20px; display: inline-block; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.mobile-toggle { display: none; background: transparent; border: 1px solid var(--green); color: var(--green); padding: 5px 10px; cursor: pointer; border-radius: 4px; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; transition: 0.3s; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
.mobile-menu.active { right: 0; }
.close-btn { background: none; border: none; font-size: 1.5rem; margin-bottom: 20px; cursor: pointer; color: var(--brown); }
.mobile-menu a { display: block; font-family: var(--font-serif); font-size: 1.2rem; color: var(--green); margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

@media (max-width: 900px) {
    .organic-nav, .btn-green { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-nature { height: 80vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; padding: 0 20px; }

.origin-tag { background: var(--green); color: var(--white); padding: 5px 15px; font-size: 0.8rem; font-weight: 700; border-radius: 4px; display: inline-block; margin-bottom: 15px; letter-spacing: 2px; }
.hero-content h1 { font-family: var(--font-serif); font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; font-weight: 400; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }

.btn-group { display: flex; justify-content: center; gap: 20px; }
.btn-brown { background: var(--brown); color: var(--white); padding: 12px 30px; border-radius: 4px; font-weight: 600; border: none; cursor: pointer; transition: 0.3s; }
.btn-brown:hover { background: #6b340e; }
.btn-transparent { background: rgba(255,255,255,0.2); color: var(--white); border: 2px solid var(--white); padding: 10px 30px; border-radius: 4px; font-weight: 600; backdrop-filter: blur(5px); }
.btn-transparent:hover { background: var(--white); color: var(--green); }

/* Showcase */
.section-title h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--green); margin-bottom: 10px; }
.leaf-divider { color: var(--brown); font-size: 1.2rem; margin-bottom: 40px; font-weight: 700; }
.text-center { text-align: center; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.prod-card { background: var(--white); padding: 15px; border-radius: 8px; text-align: center; transition: 0.3s; border: 1px solid #e0e0e0; }
.prod-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(46, 139, 87, 0.15); border-color: var(--green); }
.prod-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; margin-bottom: 15px; }
.prod-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--brown); margin-bottom: 5px; }
.prod-card p { font-size: 0.9rem; color: #666; }

/* Trust Banner */
.trust-banner { background: var(--green); color: var(--white); padding: 50px 0; margin-top: 50px; background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1h2v2H1V1zm4 0h2v2H5V1zm4 0h2v2H9V1z' fill='%23369c63' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E"); }
.trust-flex { display: flex; justify-content: space-around; text-align: center; }
.t-item strong { display: block; font-family: var(--font-serif); font-size: 3rem; margin-bottom: 5px; }
.t-item span { font-size: 1rem; letter-spacing: 1px; opacity: 0.9; }

/* Product List (Page) */
.product-list { display: flex; flex-direction: column; gap: 60px; }
.product-row { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center; background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.product-row.reverse { direction: rtl; }
.product-row.reverse .p-info { direction: ltr; }
.p-info h3 { font-family: var(--font-serif); color: var(--green); font-size: 1.8rem; margin-bottom: 15px; }
.p-info p { margin-bottom: 20px; color: #555; }
.specs { list-style: none; margin-bottom: 25px; }
.specs li { margin-bottom: 8px; padding-left: 20px; position: relative; color: var(--brown); font-weight: 600; }
.specs li::before { content: '•'; position: absolute; left: 0; color: var(--green); font-size: 1.5rem; line-height: 1; top: -3px; }
.btn-link { color: var(--green); font-weight: 700; border-bottom: 2px solid var(--green); padding-bottom: 2px; }

/* Process */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
.process-text h1 { font-family: var(--font-serif); font-size: 3rem; color: var(--green); line-height: 1.1; margin-bottom: 20px; }
.green-bar { width: 80px; height: 5px; background: var(--green); margin-bottom: 30px; }
.green-bar.left { margin-right: auto; }
.cert-list { list-style: none; margin-top: 20px; font-weight: 600; color: var(--brown); }
.timeline { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; text-align: center; }
.step { background: var(--white); padding: 20px; border-radius: 8px; flex: 1; border: 1px solid #ddd; position: relative; }
.num { background: var(--green); color: var(--white); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 15px; }
.step h4 { color: var(--brown); margin-bottom: 5px; font-family: var(--font-serif); }

/* Contact */
.contact-box { max-width: 900px; margin: 0 auto; background: var(--white); display: grid; grid-template-columns: 1fr 1.5fr; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.c-left { background: var(--green); color: var(--white); padding: 50px; }
.c-left h2 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 20px; }
.contact-details { margin-top: 30px; line-height: 1.8; }
.contact-details strong { display: block; margin-top: 15px; color: #d4eadd; }

.natural-form { padding: 50px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--text); margin-bottom: 5px; font-size: 0.9rem; }
.field input, .field select, .field textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; background: #fafafa; font-family: var(--font-sans); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 8px; }
.legal-text h1 { font-family: var(--font-serif); color: var(--green); }

/* Footer */
.harvest-footer { background: #1a4f32; color: #d0e0d8; padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 5px; }
.f-links a { margin-left: 20px; color: #d0e0d8; }
.f-links a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; border-top: 1px solid #2a6f4a; padding-top: 20px; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.5rem; }
    .grid-4, .product-row, .process-grid, .contact-box, .clean-form .form-row { grid-template-columns: 1fr; }
    .timeline, .trust-flex, .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .btn-group { flex-direction: column; }
}