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

:root {
    --ice-blue: #e8f4f8;
    --frost: #a8c5d9;
    --navy: #2c3e50;
    --white: #ffffff;
    --soft-gray: #f5f7f9;
    --sage: #94a89a;
}

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

.logo {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--navy);
}

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

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

.location {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--frost);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

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

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

.bottle {
    width: 80px;
    border-radius: 10px 10px 5px 5px;
    background: linear-gradient(135deg, var(--white), var(--soft-gray));
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bottle-1 { height: 200px; }
.bottle-2 { height: 160px; }
.bottle-3 { height: 120px; }

/* Benefits Bar */
.benefits-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 5%;
    background-color: var(--white);
    border-bottom: 1px solid var(--ice-blue);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--navy);
}

.benefit-icon {
    color: var(--sage);
    font-weight: bold;
}

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

.products-section h2 {
    font-size: 2rem;
    font-weight: 500;
    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 {
    text-align: center;
}

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

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

.cleanser { background: linear-gradient(145deg, #fef9f5, #f5ebe0); }
.serum { background: linear-gradient(145deg, #fff5e6, #ffe4c4); }
.moisturizer { background: linear-gradient(145deg, var(--ice-blue), #d4e5ed); }
.oil { background: linear-gradient(145deg, #e8ded4, #d4c4b0); }

.product-card h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

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

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

.ingredients-content h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.ingredients-content p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    font-weight: 300;
}

.ingredient-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ingredient {
    padding: 1rem;
    background-color: var(--white);
    border-radius: 10px;
}

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

.ingredient-benefit {
    font-size: 0.8rem;
    color: var(--frost);
}

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

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--ice-blue), var(--frost));
    border-radius: 20px;
}

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

.cta-section h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

.email-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--white);
}

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

.email-form button {
    padding: 1rem 2rem;
    background-color: var(--frost);
    color: var(--navy);
    border: none;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.email-form button:hover {
    background-color: #8bb5c9;
}

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

.footer-logo {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    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: 2rem;
    }

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

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

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

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

    .ingredient-list {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
        border-radius: 10px;
    }
}
