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

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: #3a3a3a;
    overflow-x: hidden;
    background: #faf8f5;
}

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

/* Header & Navigation */
header {
    background: rgba(255, 252, 248, 0.98);
    box-shadow: 0 2px 15px rgba(92, 74, 55, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(92, 74, 55, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    color: #5c4a37;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-menu a {
    text-decoration: none;
    color: #5c4a37;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8b6f47;
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #8b6f47;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

    .hamburger span {
    width: 25px;
    height: 2px;
    background: #5c4a37;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #faf8f5 0%, #f0ede6 50%, #e8e4dc 100%);
    padding: 140px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(139, 111, 71, 0.03) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 98px, rgba(139, 111, 71, 0.03) 100px);
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 111, 71, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #3d3428;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #5c4a37;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: #5c4a37;
    color: #faf8f5;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 1px solid #5c4a37;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #8b6f47;
    transition: left 0.3s;
    z-index: -1;
}

.cta-button:hover {
    color: #faf8f5;
    border-color: #8b6f47;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(92, 74, 55, 0.3);
}

.cta-button:hover::before {
    left: 0;
}

/* Hero Break Image */
.hero-break {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    overflow: hidden;
}

.hero-break img {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center;
    height: 50vh;
    max-height: 420px;
}

.image-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(232, 228, 220, 0.7);
    font-weight: 300;
    margin-bottom: 1rem;
    padding: 0 20px;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Products Section */
.products {
    padding: 100px 20px;
    background: #fff;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92, 74, 55, 0.2), transparent);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #3d3428;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #8b6f47;
}

.products-intro-image {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0;
    overflow: hidden;
}

.products-intro-image img {
    width: 100%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center;
    height: 60vh;
    max-height: 500px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #faf8f5;
    padding: 3rem 2.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(92, 74, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #8b6f47;
    transform: scaleX(0);
    transition: transform 0.4s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(92, 74, 55, 0.15);
    border-color: rgba(139, 111, 71, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #5c4a37;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-card p {
    color: #6b5d4a;
    line-height: 1.9;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 100px 20px;
    background: #f5f1eb;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92, 74, 55, 0.2), transparent);
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: #3d3428;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: #8b6f47;
}

.about-text p {
    margin-bottom: 1.8rem;
    color: #5c4a37;
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 300;
}

.features {
    list-style: none;
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.features li {
    padding: 1.2rem 1rem;
    background: rgba(255, 252, 248, 0.8);
    border-radius: 0;
    color: #5c4a37;
    font-weight: 400;
    border-left: 3px solid #8b6f47;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.features li:hover {
    background: rgba(255, 252, 248, 1);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(92, 74, 55, 0.1);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: #fff;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(92, 74, 55, 0.2), transparent);
}

.contact-intro-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0;
    overflow: hidden;
}

.contact-intro-image img {
    width: 100%;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center;
    height: 60vh;
    max-height: 500px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #3d3428;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h3::after,
.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #8b6f47;
}

.form-guidance {
    margin-bottom: 1.5rem;
    color: #6b5d4a;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.contact-info p {
    margin-bottom: 1.2rem;
    color: #5c4a37;
    line-height: 1.9;
    font-weight: 300;
}

.contact-info strong {
    color: #3d3428;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-form {
    background: #faf8f5;
    padding: 2.5rem;
    border-radius: 0;
    border: 1px solid rgba(92, 74, 55, 0.15);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(92, 74, 55, 0.2);
    border-radius: 0;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fff;
    color: #3d3428;
    font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8b7a6a;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #5c4a37;
    color: #faf8f5;
    border: 1px solid #5c4a37;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #8b6f47;
    transition: left 0.3s;
    z-index: -1;
}

.submit-button:hover {
    color: #faf8f5;
    border-color: #8b6f47;
    box-shadow: 0 5px 20px rgba(92, 74, 55, 0.3);
}

.submit-button:hover::before {
    left: 0;
}

/* Footer */
footer {
    background: #3d3428;
    color: #e8e4dc;
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(139, 111, 71, 0.2);
}

footer p {
    font-weight: 300;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-break {
        padding: 0;
    }

    .hero-break img {
        max-width: 100%;
        height: 35vh;
        max-height: 280px;
    }

    .products-intro-image {
        max-width: 100%;
        padding: 0;
    }

    .products-intro-image img {
        height: 40vh;
        max-height: 300px;
    }

    .contact-intro-image {
        max-width: 100%;
        padding: 0;
    }

    .contact-intro-image img {
        height: 40vh;
        max-height: 300px;
    }
}
