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

:root {
    --maple: #c17f2a;
    --dark-maple: #8b5a1e;
    --forest: #2d5a3e;
    --cream: #faf7f2;
    --brown: #4a3728;
    --golden: #e8a938;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--cream);
    color: var(--brown);
    line-height: 1.7;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: var(--cream);
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leaf {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--brown);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--maple);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--cream) 0%, #f5efe5 100%);
}

.hero-content {
    max-width: 450px;
}

.location {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--forest);
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
    color: var(--brown);
}

.hero p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--maple);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--dark-maple);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.syrup-bottle {
    position: relative;
    width: 120px;
}

.bottle-cap {
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, #333, #1a1a1a);
    margin: 0 auto;
    border-radius: 5px 5px 0 0;
}

.bottle-body {
    width: 120px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 10px 10px 30px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.15);
}

.syrup {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 160px;
    background: linear-gradient(to bottom, var(--golden), var(--maple), var(--dark-maple));
    border-radius: 0 0 25px 25px;
}

/* Grades Bar */
.grades-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 5%;
    background-color: var(--forest);
    color: white;
}

.grade {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.grade-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.golden { background-color: #f4d03f; }
.amber { background-color: var(--maple); }
.dark { background-color: var(--dark-maple); }
.very-dark { background-color: #5c3a1e; }

/* Products Section */
.products-section {
    padding: 6rem 5%;
}

.products-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.syrup { background: linear-gradient(145deg, var(--maple), var(--dark-maple)); }
.sugar { background: linear-gradient(145deg, #f4d03f, var(--golden)); }
.cream { background: linear-gradient(145deg, #e8d4a8, #d4c090); }
.candy { background: linear-gradient(145deg, var(--golden), var(--maple)); }

.product-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.price {
    font-weight: 600;
    color: var(--forest);
}

/* Farm Section */
.farm-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.farm-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--forest), #1d4a2e);
}

.farm-content {
    padding: 4rem;
    background-color: var(--maple);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.farm-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.farm-content p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.farm-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 5rem;
    text-align: center;
    background-color: var(--forest);
    color: white;
}

.cta-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-button.outline {
    background-color: transparent;
    border: 2px solid white;
}

.cta-button.outline:hover {
    background-color: white;
    color: var(--forest);
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    background-color: var(--cream);
}

.footer-logo {
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .farm-section {
        grid-template-columns: 1fr;
    }

    .farm-image {
        height: 300px;
    }

    .grades-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
