* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #FEF9F0;
    color: #3B2A23;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}
h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #FEF9F0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    width: 100%;
}
.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #B35E2E;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: #3B2A23;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: #B35E2E;
}
.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.btn {
    display: inline-block;
    background: #B35E2E;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-outline {
    background: transparent;
    border: 2px solid #B35E2E;
    color: #B35E2E;
}
.btn-outline:hover {
    background: #B35E2E;
    color: white;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 3rem 5%;
    gap: 2rem;
    background: linear-gradient(135deg, #FEF3E2 0%, #F3E3D5 100%);
    width: 100%;
}
.hero-content {
    flex: 1;
    min-width: 280px;
}
.hero .tagline {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #B35E2E;
    margin-bottom: 0.5rem;
}
.hero h1 {
    font-size: 2.5rem;
}
.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image svg {
    width: 100%;
    max-width: 260px;
    height: auto;
}
.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 5%;
    background: white;
    width: 100%;
}
.stat-card {
    background: #FEF3E2;
    padding: 1.5rem;
    border-radius: 24px;
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #B35E2E;
}
.intro-text {
    padding: 2rem 5%;
    text-align: center;
    font-size: 1rem;
    background: #FEF9F0;
    max-width: 800px;
    margin: 0 auto;
}
.gallery-section {
    padding: 3rem 5%;
    background: #FEF9F0;
    text-align: center;
}
.gallery-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
}
.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.gallery-item:hover {
    transform: translateY(-5px);
}
.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gallery-item p {
    padding: 0.8rem;
    font-weight: 500;
}
.page-header {
    text-align: center;
    padding: 2rem 5% 1rem;
}
.page-header h1 {
    font-size: 2rem;
    color: #B35E2E;
}
.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 5%;
    align-items: center;
}
.story-text {
    flex: 2;
}
.story-image {
    flex: 1;
    text-align: center;
    font-size: 5rem;
    color: #B35E2E;
}
.product-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}
.product-card:hover {
    transform: translateY(-10px);
}
.product-img {
    background: #EDDAC8;
    padding: 2rem;
}
.product-img i {
    font-size: 4rem;
    color: #B35E2E;
}
.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #B35E2E;
    margin: 0.5rem 0;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}
.impact-card {
    background: #FEF3E2;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
}
.impact-card i {
    font-size: 2.5rem;
    color: #B35E2E;
}
.testimonial-section {
    padding: 2rem 5%;
    text-align: center;
}
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    max-width: 500px;
    margin: 0 auto;
    font-style: italic;
}
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 5%;
}
.contact-details {
    flex: 1;
}
.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-form input, .contact-form textarea {
    padding: 12px;
    border-radius: 40px;
    border: 1px solid #cfb692;
    font-family: inherit;
    width: 100%;
}
footer {
    background: #1F1A16;
    color: #D4C3B0;
    padding: 2rem 5% 1rem;
    margin-top: 3rem;
    width: 100%;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}
.footer-col h4 {
    color: #FEF3E2;
    margin-bottom: 1rem;
}
.social-icons a {
    color: #D4C3B0;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #B35E2E;
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3B2A23;
    margin-top: 2rem;
}
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}
.error-content h1 {
    font-size: 5rem;
    color: #B35E2E;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: #FEF9F0;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 1rem 0;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .story-content {
        flex-direction: column;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}