:root {
    --bg-color: #f5f5dc; /* Cream */
    --text-color: #2d2d2d; /* Charcoal */
    --accent-color: #556b2f; /* Deep Olive */
    --muted-color: #8c7b6c; /* Muted Taupe */
    --card-bg: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'EB Garamond', serif;
    font-weight: 700;
}

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

/* Header */
header {
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-size: 3rem;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Hero */
.hero {
    padding: 6rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted-color);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}

.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--muted-color);
    font-style: italic;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 4rem;
}

.footer-nav {
    margin-bottom: 2rem;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--muted-color);
}

/* Grainy Texture */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
}
