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

:root {
    --brown: #4a3728;
    --tan: #c9a87c;
    --cream: #f5f0e8;
    --dark: #2d1f14;
    --rust: #8b4513;
}

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

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--dark), transparent);
}

.logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 3px;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    background: linear-gradient(rgba(45, 31, 20, 0.85), rgba(45, 31, 20, 0.9)),
        linear-gradient(135deg, var(--brown), var(--dark));
    color: var(--cream);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a87c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.location {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--tan);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--tan);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #d4b38c;
}

/* Products Section */
.products-section {
    padding: 6rem 5%;
    background-color: var(--cream);
}

.products-section h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.product-card {
    background-color: white;
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    height: 250px;
}

.wallet { background: linear-gradient(145deg, var(--brown), var(--dark)); }
.belt { background: linear-gradient(145deg, var(--tan), #b8976b); }
.bag { background: linear-gradient(145deg, var(--rust), #7a3d11); }
.strap { background: linear-gradient(145deg, #5c4333, var(--brown)); }

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

.price {
    font-weight: 600;
    color: var(--rust);
}

/* Craft Section */
.craft-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.craft-image {
    background-color: var(--brown);
}

.craft-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brown), var(--dark));
}

.craft-content {
    padding: 4rem;
    background-color: var(--dark);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craft-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.craft-content p {
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 1.5rem;
}

.craft-list {
    list-style: none;
    margin-top: 1rem;
}

.craft-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.95rem;
}

.craft-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--tan);
}

/* Custom Section */
.custom-section {
    padding: 5rem;
    text-align: center;
    background-color: var(--tan);
    color: var(--dark);
}

.custom-section h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.custom-section p {
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.text-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--rust);
}

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

.cta-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #666;
    margin-bottom: 2rem;
}

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

.email-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: inherit;
}

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

.email-form button:hover {
    background-color: var(--brown);
}

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

.footer-logo {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.6);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

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

    .craft-image {
        height: 300px;
    }
}

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

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