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

:root {
    --adobe: #c17f59;
    --turquoise: #5fb4a2;
    --sand: #e8dcc8;
    --cream: #faf7f2;
    --brown: #5c4a3a;
    --rust: #a05a2c;
}

body {
    font-family: 'Karla', sans-serif;
    background-color: var(--cream);
    color: var(--brown);
    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: 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--brown);
}

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

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

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

/* 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(--adobe);
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Cormorant', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
}

.hero p {
    color: #777;
    margin-bottom: 2rem;
}

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

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

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

.pottery {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
}

.pot {
    border-radius: 50% 50% 45% 45%;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

.pot-1 {
    width: 80px;
    height: 100px;
    background: linear-gradient(145deg, var(--adobe), var(--rust));
}

.pot-2 {
    width: 100px;
    height: 140px;
    background: linear-gradient(145deg, var(--sand), #d8ccb8);
}

.pot-3 {
    width: 70px;
    height: 90px;
    background: linear-gradient(145deg, var(--turquoise), #4fa492);
}

/* Collection Section */
.collection-section {
    padding: 6rem 5%;
    background-color: var(--sand);
}

.collection-section h2 {
    font-family: 'Cormorant', 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: 1100px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--cream);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

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

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.pottery { background: linear-gradient(145deg, var(--adobe), var(--rust)); }
.textile { background: linear-gradient(145deg, #8b6d5c, #6b5a4c); }
.wood { background: linear-gradient(145deg, #b8976b, #a08558); }
.iron { background: linear-gradient(145deg, #4a4a4a, #333); }

.product-card h3 {
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.price {
    font-weight: 500;
    color: var(--adobe);
}

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

.artisans-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--adobe), var(--rust));
}

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

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

.artisans-content p {
    color: #777;
    margin-bottom: 1rem;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--brown);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.materials-section h2 {
    font-family: 'Cormorant', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

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

.material {
    text-align: center;
}

.material-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.material-image.clay { background: linear-gradient(145deg, var(--adobe), var(--rust)); }
.material-image.wool { background: linear-gradient(145deg, #c9b896, #b9a886); }
.material-image.wood { background: linear-gradient(145deg, #8b6d5c, #6b5a4c); }
.material-image.iron { background: linear-gradient(145deg, #5a5a5a, #3a3a3a); }

.material span {
    font-size: 0.9rem;
}

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

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

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

.email-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

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

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

.email-form button:hover {
    background-color: #4c3a2a;
}

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

.footer-logo {
    font-family: 'Cormorant', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

    .artisans-image {
        height: 300px;
    }

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

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

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