/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
    color: #2d3436;
    background: #f8f9f6;
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1a3a2a;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== COLORS ===== */
:root {
    --primary: #1a3a2a;
    --primary-light: #2d6a4f;
    --primary-dark: #0f2a1e;
    --accent: #c8a84e;
    --accent-light: #e0c878;
    --accent-dark: #a88832;
    --text: #2d3436;
    --text-light: #555;
    --bg: #eef3ec;
    --bg-white: #ffffff;
    --bg-warm: #f5f3ee;
    --border: #dde5da;
    --radius: 8px;
    --shadow: 0 2px 12px rgba(0,0,0,0.05);
    --shadow-hover: 0 6px 28px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 24px; max-width: 1200px; margin: 0 auto;
}
.header__logo {
    display: flex; align-items: center; gap: 10px;
}
.header__logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #fff;
}
.header__logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.4rem; color: var(--primary);
    line-height: 1.1;
}
.header__logo-text span { color: var(--accent); }
.header__logo-text small {
    display: block; font-size: 0.5rem; font-weight: 500;
    color: var(--text-light); letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
    padding: 8px 16px; border-radius: 6px;
    font-weight: 500; font-size: 0.85rem;
    color: #444; transition: var(--transition);
}
.nav a:hover,
.nav a.active { background: var(--bg); color: #1a3a2a; }
.nav a.active { font-weight: 600; }

.header__phone {
    display: flex; align-items: center; gap: 6px;
    font-weight: 600; color: var(--primary);
    padding: 8px 16px; border-radius: 6px;
    border: 1px solid var(--border);
    font-size: 0.85rem; white-space: nowrap;
    transition: var(--transition);
}
.header__phone:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.nav__toggle {
    display: none; flex-direction: column; gap: 4px;
    cursor: pointer; background: none; border: none; padding: 8px;
}
.nav__toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--primary); border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    min-height: 70vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, #0f2a1e 0%, #1a3a2a 40%, #2d6a4f 100%);
    color: #fff; padding: 110px 0 50px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(200,168,78,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(200,168,78,0.06) 0%, transparent 50%);
}
.hero__pattern {
    position: absolute; inset: 0; opacity: 0.015;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.3) 40px, rgba(255,255,255,0.3) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.3) 40px, rgba(255,255,255,0.3) 41px);
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 18px; border-radius: 4px;
    font-size: 0.75rem; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 20px;
    font-weight: 500; color: rgba(255,255,255,0.7);
}
.hero h1 {
    font-size: 2.6rem; font-weight: 700; margin-bottom: 16px;
    max-width: 750px; color: #fff;
    font-family: 'Cormorant Garamond', serif;
}
.hero h1 span { color: var(--accent); }
.hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.8);
    margin-bottom: 28px; max-width: 600px; line-height: 1.7;
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 6px;
    font-weight: 600; font-size: 0.85rem;
    border: none; cursor: pointer; transition: var(--transition);
    font-family: 'Manrope', sans-serif;
}
.btn--primary { background: var(--accent); color: #1a3a2a; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--outline {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: var(--accent); color: var(--accent); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1da851; }
.btn--ghost {
    background: transparent; color: var(--primary);
    border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.hero__stats {
    display: flex; flex-wrap: wrap; gap: 28px; margin-top: 32px;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat h3 { font-size: 1.6rem; font-weight: 700; color: var(--accent); font-family: 'Cormorant Garamond', serif; }
.hero__stat p { font-size: 0.72rem; opacity: 0.5; margin: 0; letter-spacing: 1px; text-transform: uppercase; font-family: 'Manrope', sans-serif; }

/* ===== SECTION ===== */
.section { padding: 50px 0; }
.section--alt { background: var(--bg-white); }
.section--warm { background: var(--bg-warm); }
.section--dark { background: var(--primary); color: #fff; }
.section--dark .section__title { color: #fff; }

.section__label {
    display: inline-block;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 8px;
    font-family: 'Manrope', sans-serif;
}
.section__title {
    font-size: 2rem; font-weight: 700;
    margin-bottom: 10px; color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}
.section__subtitle {
    color: var(--text-light); max-width: 640px;
    margin-bottom: 30px; font-size: 1rem; line-height: 1.6;
}

/* ===== ABOUT ===== */
.about__grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 30px; align-items: start;
}
.about__text p { margin-bottom: 14px; color: var(--text); font-size: 1rem; }
.about__text strong { color: var(--primary); }
.about__features { margin: 20px 0; }
.about__features li {
    padding: 8px 0 8px 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c8a84e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") left center no-repeat;
    font-weight: 500; color: var(--text);
}
.about__images { display: flex; flex-direction: column; gap: 16px; }
.about__images img {
    border-radius: 8px; box-shadow: var(--shadow);
    width: 100%; transition: var(--transition);
}
.about__images img:hover { box-shadow: var(--shadow-hover); }
.about__caption {
    font-size: 0.82rem; color: #666;
    text-align: center; padding: 10px 16px;
    background: var(--bg); border-radius: 6px; line-height: 1.5;
}

/* ===== VALUES ===== */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 24px; text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-hover); }
.value-card__icon {
    width: 52px; height: 52px; margin: 0 auto 14px;
    background: var(--bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary-light);
}
.value-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); font-family: 'Cormorant Garamond', serif; }
.value-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* ===== PRODUCT CARDS ===== */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card {
    background: var(--bg-white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-hover); }
.product-card__header {
    padding: 28px 24px 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}
.product-card__header h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; font-family: 'Cormorant Garamond', serif; }
.product-card__header p { opacity: 0.6; font-size: 0.8rem; }
.product-card__body { padding: 20px 24px; flex: 1; }
.product-card__body p { font-size: 0.92rem; color: #444; margin-bottom: 14px; line-height: 1.6; }
.product-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.product-card__tags span {
    background: var(--bg);
    color: #1a3a2a; padding: 4px 12px;
    border-radius: 4px; font-size: 0.7rem; font-weight: 600;
}
.product-card__stock {
    padding: 10px 14px; background: var(--bg);
    border-radius: 6px; font-size: 0.82rem; font-weight: 600;
    color: var(--primary); margin-bottom: 14px;
}
.product-card__footer {
    padding: 16px 24px; border-top: 1px solid var(--border);
}
.product-card__footer a {
    color: var(--primary); font-weight: 600; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.product-card__footer a:hover { color: var(--accent); }

/* ===== YIELDS ===== */
.yields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.yield-item {
    background: var(--bg); padding: 16px; border-radius: var(--radius);
    border: 1px solid var(--border);
}
.yield-item h4 { color: #1a3a2a; margin-bottom: 12px; font-size: 1rem; }
.yield-bar {
    height: 24px; border-radius: 4px;
    background: #dde5da; display: flex; overflow: hidden;
}
.yield-bar .avg {
    background: var(--primary);
    color: #fff; font-size: 0.6rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.yield-bar .max {
    background: var(--accent); color: #1a3a2a;
    font-size: 0.6rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.yield-stats { display: flex; justify-content: space-between; margin-top: 6px; font-size: 0.8rem; color: #555; }

/* ===== STOCK ===== */
.stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.stock-item {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 14px 12px; text-align: center;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: var(--transition);
}
.stock-item:hover { box-shadow: var(--shadow-hover); }
.stock-item h4 {
    font-size: 0.85rem; color: #555;
    margin-bottom: 8px; font-weight: 500;
}
.stock-item .count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--primary);
}
.stock-item .count small {
    font-size: 0.85rem; color: var(--text-light); font-weight: 400;
}

/* ===== DETAILED VARIETY PAGE ===== */
.page-hero {
    background: linear-gradient(135deg, #0f2a1e, #1a3a2a);
    color: #fff; padding: 100px 0 30px;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 10px; color: #fff; font-family: 'Cormorant Garamond', serif; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 560px; }
.page-hero .breadcrumb {
    display: flex; gap: 6px; margin-bottom: 20px;
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: var(--accent); }

.variety-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow);
    border: 1px solid var(--border); margin-bottom: 16px;
}
.variety-card h2 {
    color: var(--primary); font-size: 1.3rem;
    margin-bottom: 16px; padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    font-family: 'Cormorant Garamond', serif;
}
.variety-card h2 span { color: var(--accent); }
.variety-card p { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 12px; }
.variety-card ul { padding-left: 20px; margin-bottom: 12px; }
.variety-card ul li {
    list-style: disc; font-size: 0.92rem;
    color: #444; line-height: 1.7;
    margin-bottom: 3px;
}

.region-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px; margin-top: 14px;
}
.region-item {
    background: var(--bg); padding: 14px; border-radius: 6px;
    border-left: 2px solid var(--accent);
}
.region-item strong { color: var(--primary); display: block; margin-bottom: 3px; font-size: 0.95rem; }
.region-item p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.5; }

/* ===== SCIENCE ===== */
.science-list { max-height: 420px; overflow-y: auto; padding-right: 8px; }
.science-list::-webkit-scrollbar { width: 4px; }
.science-list::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.science-list::-webkit-scrollbar-track { background: #e8e8e8; border-radius: 2px; }
.science-item {
    padding: 12px 20px; border-bottom: 1px solid var(--border);
    font-size: 0.88rem; color: var(--text); line-height: 1.6;
    transition: background 0.2s;
}
.science-item:hover { background: var(--bg); }
.science-item:last-child { border-bottom: none; }
.science-item strong { color: var(--primary); }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.contact-info h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 16px; font-family: 'Cormorant Garamond', serif; }
.contact-info p { margin-bottom: 12px; color: var(--text); font-size: 0.95rem; }
.contact-info a { color: var(--primary-light); font-weight: 600; }
.contact-info a:hover { color: var(--accent); }
.contact-info .contact-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
}
.contact-info .contact-row:last-child { border-bottom: none; }
.contact-info .contact-icon {
    width: 36px; height: 36px; min-width: 36px;
    background: var(--bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light); font-size: 0.95rem;
}
.contact-map iframe {
    width: 100%; height: 100%; min-height: 380px;
    border-radius: var(--radius); border: none;
    box-shadow: var(--shadow);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: linear-gradient(135deg, #0f2a1e, #1a3a2a);
    color: #fff; text-align: center; padding: 40px 0;
    position: relative; overflow: hidden;
}
.newsletter-section .container { position: relative; z-index: 1; }
.newsletter-section h2 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; font-family: 'Cormorant Garamond', serif; }
.newsletter-section p { opacity: 0.6; margin-bottom: 24px; font-size: 0.95rem; }
.newsletter-form {
    display: flex; gap: 10px; max-width: 460px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1; padding: 14px 20px; border-radius: 6px;
    border: none; font-size: 0.9rem; font-family: inherit;
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { outline: 2px solid var(--accent); }
.newsletter-form button {
    padding: 14px 28px; border-radius: 6px;
    background: var(--accent); color: #1a3a2a;
    font-weight: 600; border: none; cursor: pointer;
    transition: var(--transition); white-space: nowrap;
    font-family: 'Manrope', sans-serif;
}
.newsletter-form button:hover { background: var(--accent-light); }

/* ===== FOOTER ===== */
.footer {
    background: #0f2a1e; color: rgba(255,255,255,0.5);
    padding: 30px 0 16px;
}
.footer__grid {
    display: grid; grid-template-columns: 2fr 2fr 1fr 2fr;
    gap: 24px; margin-bottom: 20px;
}
.footer h4 {
    color: #fff; margin-bottom: 16px;
    font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.footer p, .footer li { font-size: 0.85rem; line-height: 2; }
.footer a { color: rgba(255,255,255,0.5); transition: 0.3s; }
.footer a:hover { color: var(--accent); }
.footer__logo {
    font-size: 1.4rem; font-weight: 700; color: #fff;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
}
.footer__logo span { color: var(--accent); }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.footer__social a:hover { background: var(--accent); color: #1a3a2a; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px; text-align: center;
    font-size: 0.75rem;
}

/* ===== MODAL ===== */
.modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.6);
    align-items: center; justify-content: center;
    padding: 20px; backdrop-filter: blur(4px);
}
.modal.open { display: flex; }
.modal__body {
    background: #fff; border-radius: 12px; padding: 36px;
    max-width: 620px; width: 100%; max-height: 85vh; overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__body h3 { color: var(--primary); margin-bottom: 16px; font-size: 1.2rem; }
.modal__body p { font-size: 0.92rem; color: #444; margin-bottom: 12px; line-height: 1.7; }
.modal__close {
    float: right; background: none; border: none;
    font-size: 1.8rem; cursor: pointer; color: #bbb;
    transition: 0.3s; line-height: 1;
}
.modal__close:hover { color: #333; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about__grid { grid-template-columns: 1fr; }
    .products { grid-template-columns: 1fr 1fr; gap: 12px; }
    .values { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .yields { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; padding: 14px;
        box-shadow: 0 16px 32px rgba(0,0,0,0.08);
        border-radius: 0 0 8px 8px;
    }
    .nav.open { display: flex; }
    .nav__toggle { display: flex; }
    .header__phone { display: none; }
    .hero h1 { font-size: 1.8rem; }
    .hero { min-height: 60vh; padding: 100px 0 40px; }
    .section { padding: 30px 0; }
    .section__title { font-size: 1.5rem; }
    .products { grid-template-columns: 1fr; }
    .values { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .hero__stats { gap: 20px; }
    .hero__stats .hero__stat h3 { font-size: 1.4rem; }
    .page-hero h1 { font-size: 1.8rem; }
}
