:root {
    --sage-light: #c2d0a8;
    --sage: #a3b18a;
    --sage-mid: #8a9a6f;
    --sage-dark: #6b7d4f;
    --sage-deep: #4a5639;
    --cream: #f4f3ee;
    --warm-white: #fafaf7;
    --text-dark: #2e3326;
    --text-muted: #6b7060;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background: var(--warm-white);
    border-bottom: 1px solid var(--sage-light);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--sage-deep);
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--sage-dark);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--sage-dark);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--sage), var(--sage-mid));
    color: var(--warm-white);
    padding: 6rem 2rem;
    text-align: center;
}
.hero-content { max-width: 700px; margin: 0 auto; }
.hero h1 { font-size: 3.2rem; margin-bottom: 1rem; }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; }

/* Buttons */
.btn {
    display: inline-block;
    background: var(--sage-deep);
    color: var(--warm-white);
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}
.btn:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

/* Features */
.features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 8px;
    transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { color: var(--sage-deep); margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); }

/* CTA */
.cta {
    background: var(--cream);
    text-align: center;
    padding: 5rem 2rem;
}
.cta h2 { font-size: 2.2rem; color: var(--sage-deep); margin-bottom: 1rem; }
.cta p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--sage), var(--sage-mid));
    color: var(--warm-white);
    text-align: center;
    padding: 4rem 2rem;
}
.page-header h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.page-header p { font-size: 1.2rem; opacity: 0.95; }

/* Gallery Filters */
.gallery-filters {
    max-width: 1100px;
    margin: 3rem auto 1rem;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.filter-btn {
    background: none;
    border: 1px solid var(--sage);
    color: var(--sage-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--sage);
    color: var(--warm-white);
}

/* Gallery Grid */
.gallery-grid {
    max-width: 1100px;
    margin: 2rem auto 5rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--warm-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(74, 86, 57, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(74, 86, 57, 0.18);
}
.product-image { height: 240px; width: 100%; }
.product-info { padding: 1.2rem; }
.product-info h3 { color: var(--text-dark); margin-bottom: 0.3rem; }
.product-category {
    color: var(--sage-mid);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-price {
    color: var(--sage-deep);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Contact details */
.contact-details {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--sage-deep);
    background: var(--cream);
    padding: 0.8rem 1.4rem;
    border-radius: 30px;
    transition: background 0.2s, transform 0.2s;
}
.contact-item:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
}
.contact-icon { font-size: 1.2rem; }
.contact-text { font-size: 1rem; }

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 5rem;
    padding: 0 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--sage-deep);
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--sage-light);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
}

/* About */
.about-content {
    max-width: 800px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
}
.about-content h2 { color: var(--sage-deep); margin: 2rem 0 1rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }

/* Footer */
.footer {
    background: var(--sage-deep);
    color: var(--cream);
    text-align: center;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--sage-light);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 2.3rem; }
    .hero p { font-size: 1.1rem; }
}
