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

:root {
    --turquoise: #40b5ad;
    --coral: #e07a5f;
    --sand: #f4ede4;
    --terracotta: #c17f59;
    --dark: #2d2d2d;
    --silver: #c0c0c0;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--sand);
    color: var(--dark);
    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(--sand);
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--dark);
}

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

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

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

/* 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: 3px;
    color: var(--coral);
    text-transform: uppercase;
}

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

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

.cta-link {
    display: inline-block;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    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;
}

.jewelry-display {
    position: relative;
    width: 250px;
    height: 250px;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 15px solid var(--silver);
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stone {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, var(--turquoise), #2d8a85);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(64, 181, 173, 0.4);
}

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

.collection-section h2 {
    font-family: 'Cinzel', 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 {
    text-align: center;
}

.product-image {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.rings { background: linear-gradient(145deg, var(--turquoise), #2d8a85); }
.necklace { background: linear-gradient(145deg, var(--coral), #c06a4f); }
.earrings { background: linear-gradient(145deg, var(--terracotta), #a16949); }
.cuff { background: linear-gradient(145deg, var(--silver), #a8a8a8); }

.product-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

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

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

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

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

.story-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.materials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.material {
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    text-align: center;
}

.material-name {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.material-desc {
    font-size: 0.8rem;
    color: #888;
}

.story-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--coral), var(--terracotta));
    border-radius: 10px;
}

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

.cta-section h2 {
    font-family: 'Cinzel', 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(--dark);
    color: white;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #1a1a1a;
}

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

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    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-content {
        max-width: 100%;
    }

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

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

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

    .materials {
        grid-template-columns: 1fr;
    }
}

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

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