@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
    --green:       #2e7d32;
    --green-dark:  #1b5e20;
    --green-light: #43a047;
    --green-pale:  #e8f5e9;
    --white:       #ffffff;
    --offwhite:    #f7f9f7;
    --dark:        #1a1a1a;
    --gray:        #555555;
    --lightgray:   #e0e0e0;
    --border:      #c8dcc8;
    --font-head:   'Barlow Condensed', sans-serif;
    --font-body:   'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--offwhite); }
::-webkit-scrollbar-thumb { background: var(--green); }

/* ── TOPBAR ── */
.topbar {
    background: var(--green-dark);
    padding: .45rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: rgba(255,255,255,.7);
    flex-wrap: wrap;
    gap: .5rem;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar-items { display: flex; gap: 2rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: .5rem; }

/* ── NAVBAR ── */
nav {
    background: var(--green);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: .85rem 0;
}
.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text span:first-child {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
}
.nav-logo-text span:last-child {
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}
.nav-links { display: flex; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    padding: 1.2rem 1rem;
    transition: background .2s;
    white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    background: rgba(0,0,0,.15);
    color: var(--white);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-top: 3px solid var(--green);
    min-width: 240px;
    z-index: 200;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.dropdown-menu a {
    display: block;
    padding: .85rem 1.25rem;
    color: var(--gray);
    text-decoration: none;
    font-size: .875rem;
    border-bottom: 1px solid var(--lightgray);
    transition: all .2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--green); background: var(--green-pale); padding-left: 1.5rem; }
.dropdown-arrow { font-size: .6rem; transition: transform .2s; }
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-cta {
    background: var(--white) !important;
    color: var(--green) !important;
    padding: .55rem 1.2rem !important;
    font-weight: 700 !important;
    font-size: .8rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: .5rem;
    transition: background .2s !important;
}
.nav-cta:hover { background: var(--green-pale) !important; }

/* Mobile */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; letter-spacing: 2px; color: var(--white); text-decoration: none; padding: .4rem; }
.mobile-menu a:hover { opacity: .75; }
.mobile-menu .nav-cta { font-family: var(--font-body); font-size: 1rem !important; margin-top: 1rem; }

/* ── PAGE HEADER ── */
.page-header {
    background: var(--green);
    padding: 3rem 5%;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0,0,0,.04) 40px, rgba(0,0,0,.04) 41px);
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
    margin-bottom: .5rem;
}
.page-header h1 span { color: rgba(255,255,255,.65); }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: .6rem; }
.breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── SECTIONS ── */
section { padding: 5rem 5%; }
.bg-light { background: var(--offwhite); }
.section-tag {
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--green); }
h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--dark);
}
h2 span { color: var(--green); }
.text-muted { color: var(--gray); line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary {
    background: var(--green);
    color: var(--white);
    padding: .85rem 2rem;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
    border: 2px solid var(--green);
    color: var(--green);
    padding: .85rem 2rem;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    background: transparent;
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-dark {
    background: var(--white);
    color: var(--green);
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    white-space: nowrap;
}
.btn-dark:hover { background: var(--green-pale); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 5% 5rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    filter: brightness(.28);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27,94,32,.93) 35%, rgba(27,94,32,.5) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: .35rem .9rem;
    margin-bottom: 1.5rem;
}
.hero-badge span { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white); font-weight: 600; }
.hero-badge-pulse { width: 6px; height: 6px; background: #a5d6a7; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--white);
}
.hero h1 span { color: #a5d6a7; }
.hero p { font-size: 1rem; color: rgba(255,255,255,.75); max-width: 500px; line-height: 1.7; margin-bottom: 2rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .btn-primary { background: var(--white); color: var(--green); }
.hero .btn-primary:hover { background: var(--green-pale); }
.hero .btn-outline { border-color: rgba(255,255,255,.5); color: var(--white); }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

/* ── TICKER ── */
.ticker { background: var(--green-dark); padding: .6rem 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: ticker 30s linear infinite; }
.ticker-item {
    font-family: var(--font-head);
    font-size: .9rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,.75);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}
.ticker-item::after { content: '◆'; font-size: .5rem; color: rgba(255,255,255,.3); }
@keyframes ticker { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }

/* ── STATS ── */
.stats-bar {
    background: var(--green);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
}
.stat-item { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,.15); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .35rem; }

/* ── PRODUCT CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all .3s;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(46,125,50,.15); border-color: var(--green); }
.product-card-img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .4s; }
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-body { padding: 1.5rem; }
.product-card-body h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; margin-bottom: .5rem; color: var(--dark); }
.product-card-body p { font-size: .875rem; color: var(--gray); line-height: 1.6; }
.product-card-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--green); font-size: .8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 1rem; transition: gap .2s; }
.product-card:hover .product-card-link { gap: .75rem; }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; transition: all .3s; }
.why-card:hover { border-color: var(--green); box-shadow: 0 8px 24px rgba(46,125,50,.1); }
.why-icon { width: 48px; height: 48px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.3rem; }
.why-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; letter-spacing: 1px; margin-bottom: .5rem; color: var(--dark); }
.why-card p { font-size: .875rem; color: var(--gray); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--green); padding: 4rem 5%; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--white); letter-spacing: 1px; margin-bottom: .35rem; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: .95rem; }

/* ── ABOUT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-badge-box { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--green); padding: 1.5rem; text-align: center; min-width: 130px; }
.about-badge-box strong { font-family: var(--font-head); font-size: 2.2rem; display: block; color: var(--white); line-height: 1; font-weight: 800; }
.about-badge-box span { font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.75); font-weight: 600; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0 2rem; }
.about-list li { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--gray); }
.about-list li::before { content: ''; width: 18px; height: 2px; background: var(--green); flex-shrink: 0; }

/* ── PRODUCT DETAIL ── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.product-detail-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border: 1px solid var(--border); }
.product-variants { margin: 2rem 0; }
.product-variants h4 { font-family: var(--font-head); font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 1rem; font-weight: 700; }
.variant-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.variant-list li { display: flex; align-items: center; gap: .75rem; padding: .65rem .9rem; background: var(--offwhite); border: 1px solid var(--border); font-size: .875rem; color: var(--gray); transition: all .2s; }
.variant-list li:hover { border-color: var(--green); color: var(--dark); }
.variant-list li::before { content: '▸'; color: var(--green); font-size: .75rem; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 4px; margin-top: 2rem; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .3s; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.6); }
.gallery-item-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; font-size: 2rem; color: var(--white); background: rgba(46,125,50,.45); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── FORMS ── */
.form-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-wrap { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); font-weight: 600; }
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--white);
    border: 1px solid var(--lightgray);
    color: var(--dark);
    padding: .85rem 1rem;
    font-family: var(--font-body);
    font-size: .9rem;
    outline: none;
    transition: border .2s, box-shadow .2s;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,.1); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { background: var(--green); color: var(--white); padding: 1rem; font-weight: 700; font-size: .875rem; letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer; transition: background .2s; width: 100%; font-family: var(--font-body); }
.form-submit:hover { background: var(--green-dark); }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 42px; height: 42px; background: var(--green-pale); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-info-text strong { display: block; font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: .2rem; font-weight: 700; }
.contact-info-text p { color: var(--gray); font-size: .875rem; line-height: 1.6; }
.map-wrap { margin-top: 2rem; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 280px; border: none; }

/* ── ALERTS ── */
.alert { padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: .9rem; border-left: 3px solid; }
.alert-success { background: var(--green-pale); border-color: var(--green); color: var(--green-dark); }
.alert-error { background: #fef2f2; border-color: #ef4444; color: #dc2626; }

/* ── FOOTER ── */
footer { background: var(--green-dark); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .875rem; line-height: 1.7; margin-top: 1rem; max-width: 260px; }
.footer-col h4 { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.75; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,.25); font-size: .8rem; }
.social-links { display: flex; gap: .75rem; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); text-decoration: none; font-size: .8rem; transition: all .2s; }
.social-link:hover { border-color: var(--white); color: var(--white); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-split, .product-detail-grid, .form-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-img-wrap { max-width: 450px; }
    .about-badge-box { bottom: -.75rem; right: -.75rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .cta-banner { flex-direction: column; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    section { padding: 3.5rem 5%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .stat-item:last-child { border-bottom: none; }
}
