/* -------------------- */
/* Reset & Root         */
/* -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --golden: hsl(40, 75%, 58%);
    --rich-brown: hsl(25, 45%, 18%);
    --bg-brown: hsl(28, 40%, 12%);
    --cream: hsl(42, 45%, 92%);
    --dark-chocolate: hsl(30, 35%, 8%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--cream);
    background-color: var(--bg-brown);
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(228, 175, 68, 0.1) 1px, transparent 0),
        linear-gradient(135deg, var(--bg-brown) 0%, var(--rich-brown) 50%, var(--bg-brown) 100%);
    background-size: 20px 20px, 100% 100%;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* -------------------- */
/* Header & Navigation  */
/* -------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(82, 51, 30, 0.9); /* Slightly different from original for more contrast */
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--golden);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--cream);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--golden);
}

.social-links svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

#mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

#mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* -------------------- */
/* Hero Section         */
/* -------------------- */
#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 1rem 60px;
}

.hero-logo {
    width: 256px;
    height: 256px;
    margin: 0 auto 2rem;
    border: 4px solid var(--golden);
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(228, 175, 68, 0.3);
    animation: fadeIn 1s ease-out;
}

h1 {
    font-family: 'Playfair Display', serif;
    color: var(--golden);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.5rem;
    color: rgba(244, 238, 225, 0.9);
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--golden);
    color: var(--rich-brown);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(228, 175, 68, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 175, 68, 0.4);
}

/* -------------------- */
/* Section Styles       */
/* -------------------- */
section {
    padding: 96px 1rem;
}

.section-bg {
    background: rgba(244, 238, 225, 0.05);
}

h2 {
    font-family: 'Playfair Display', serif;
    color: var(--golden);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: var(--golden);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

h3 {
    font-family: 'Playfair Display', serif;
    color: var(--golden);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* -------------------- */
/* Story Section        */
/* -------------------- */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    color: rgba(244, 238, 225, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.story-images img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.story-images img:hover {
    transform: translateY(-5px);
}

.story-images img:nth-child(2),
.story-images img:nth-child(4) {
    margin-top: 2rem;
}

/* -------------------- */
/* Specialties          */
/* -------------------- */
.specialties-intro {
    color: rgba(244, 238, 225, 0.9);
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.specialty-card {
    text-align: center;
    background: rgba(82, 51, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 175, 68, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s;
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--golden) 0%, rgba(228, 175, 68, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.specialty-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.specialty-card p {
    color: rgba(244, 238, 225, 0.8);
    line-height: 1.6;
}

/* -------------------- */
/* Statistics           */
/* -------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--golden) 0%, rgba(228, 175, 68, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    color: var(--golden);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-label {
    color: rgba(244, 238, 225, 0.9);
    font-size: 1.25rem;
}

/* -------------------- */
/* Products             */
/* -------------------- */
.products-intro {
    color: rgba(244, 238, 225, 0.9);
    font-size: 1.25rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: rgba(82, 51, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 175, 68, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 256px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-subtitle {
    color: rgba(244, 238, 225, 0.9);
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.product-description {
    color: rgba(244, 238, 225, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.order-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--golden);
    color: var(--rich-brown);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.order-button:hover {
    background: rgba(228, 175, 68, 0.9);
    transform: translateY(-2px);
}

/* -------------------- */
/* Contact Section      */
/* -------------------- */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(82, 51, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 175, 68, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--golden) 0%, rgba(228, 175, 68, 0.8) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.contact-info h4 {
    color: var(--golden);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-info p,
.contact-info a {
    color: var(--cream);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--golden);
}

/* Form */
.contact-form {
    background: rgba(82, 51, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(228, 175, 68, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--golden);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--rich-brown);
    border: 1px solid rgba(228, 175, 68, 0.3);
    border-radius: 0.5rem;
    color: var(--cream);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--golden);
}

.submit-button {
    width: 100%;
    background: var(--golden);
    color: var(--rich-brown);
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: rgba(228, 175, 68, 0.9);
    transform: translateY(-2px);
}

/* -------------------- */
/* Footer               */
/* -------------------- */
footer {
    background: var(--dark-chocolate);
    padding: 3rem 1rem 1.5rem;
    border-top: 1px solid rgba(228, 175, 68, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(244, 238, 225, 0.8);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--golden);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(244, 238, 225, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--golden);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(228, 175, 68, 0.1);
    color: rgba(244, 238, 225, 0.6);
}

/* -------------------- */
/* Responsive & Mobile  */
/* -------------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }

    .social-links {
        display: none; /* Hide social links in nav on mobile to save space */
    }

    #mobile-nav-toggle {
        display: flex; /* Show hamburger button */
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        padding: 0;
    }
    
    /* Hamburger to 'X' animation */
    #mobile-nav-toggle.is-active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #mobile-nav-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    #mobile-nav-toggle.is-active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 84px; /* Height of the header */
        left: 0;
        right: 0;
        background: var(--rich-brown);
        padding: 1rem 0;
        
        /* Hide menu off-screen */
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s;
        
        border-bottom: 2px solid var(--golden);
    }

    .nav-menu.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.25rem;
    }
    
    .story-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid,
    .products-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .story-images img:nth-child(2),
    .story-images img:nth-child(4) {
        margin-top: 0; /* Reset margin on mobile */
    }
}

/* -------------------- */
/* Animations           */
/* -------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}