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

:root {
    --sage: #8a9a7b;
    --cream: #faf8f5;
    --charcoal: #2d2d2d;
    --light-gray: #e8e6e3;
    --brown: #8b7355;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: var(--cream);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--sage);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    padding-top: 80px;
}

.hero-content {
    max-width: 450px;
}

.location {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--sage);
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
}

.hero p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-link {
    display: inline-block;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--charcoal);
    padding-bottom: 0.25rem;
    transition: all 0.3s;
}

.cta-link:hover {
    border-color: var(--sage);
    color: var(--sage);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 350px;
    height: 450px;
    background-color: var(--light-gray);
    position: relative;
}

.garment {
    position: absolute;
    inset: 40px;
    background: linear-gradient(145deg, var(--sage), #6b7a5c);
    border-radius: 2px;
}

/* Values Bar */
.values-bar {
    display: flex;
    justify-content: space-around;
    padding: 3rem 5%;
    background-color: var(--sage);
    color: white;
}

.value {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.value-icon {
    font-size: 1.2rem;
}

/* Collection Section */
.collection-section {
    padding: 6rem 5%;
}

.collection-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 4rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 320px;
    background-color: var(--light-gray);
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

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

.tee { background: linear-gradient(145deg, #e8e6e3, #d4d2cf); }
.hoodie { background: linear-gradient(145deg, #c9c5bf, #b5b1ab); }
.pants { background: linear-gradient(145deg, #d4d2cf, #c9c5bf); }
.jacket { background: linear-gradient(145deg, var(--sage), #7a8a6b); }

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.product-info p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 500;
}

/* Story Section */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 5%;
    background-color: var(--light-gray);
    align-items: center;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: #666;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    padding: 1.5rem;
    background-color: var(--cream);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 6rem 5%;
    text-align: center;
    background-color: var(--charcoal);
    color: white;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.email-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    font-family: inherit;
}

.email-form button {
    padding: 1rem 1.5rem;
    background-color: var(--sage);
    color: white;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #7a8a6b;
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    background-color: var(--cream);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.85rem;
    color: #888;
}

.address {
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .values-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
    }
}
