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

:root {
    --blush: #e8d5d0;
    --rose: #c9a9a6;
    --cream: #faf8f6;
    --charcoal: #3d3d3d;
    --gold: #c9a961;
    --sage: #a8b5a0;
}

body {
    font-family: 'Karla', 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: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    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;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

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

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

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

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

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

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

.candle-display {
    position: relative;
}

.candle {
    position: relative;
    width: 180px;
    height: 220px;
}

.glass {
    position: absolute;
    bottom: 0;
    width: 180px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.wax {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 140px;
    background: linear-gradient(to bottom, var(--blush), var(--rose));
    border-radius: 5px;
}

.wick {
    position: absolute;
    bottom: 165px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background-color: #333;
}

.flame {
    position: absolute;
    bottom: 185px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 35px;
    background: linear-gradient(to top, var(--gold), #ffeaa7, #fff);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1s infinite alternate;
}

.flame-glow {
    position: absolute;
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3), transparent);
    border-radius: 50%;
    animation: glow 2s infinite alternate;
}

@keyframes flicker {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.05); }
}

@keyframes glow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

/* Candles Section */
.candles-section {
    padding: 6rem 5%;
    background-color: var(--blush);
}

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

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

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

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

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

.forsyth { background: linear-gradient(145deg, #c9d4c5, #a8b5a0); }
.midnight { background: linear-gradient(145deg, #4a5568, #2d3748); }
.riverfront { background: linear-gradient(145deg, #b8c5d6, #8fa3b8); }
.garden { background: linear-gradient(145deg, #d4e5d8, #b5cdb9); }

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

.scent-notes {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
    font-style: italic;
}

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

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

.story-image {
    background-color: var(--rose);
}

.story-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--rose), var(--blush));
}

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

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

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

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

.features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.features li::before {
    content: '~';
    position: absolute;
    left: 0;
    color: var(--gold);
}

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

.quote-section blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.quote-section cite {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

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

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

.cta-content p {
    margin-bottom: 2rem;
    color: rgba(250, 248, 246, 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(--gold);
    color: var(--charcoal);
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

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

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

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

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

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

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

    .quote-section blockquote {
        font-size: 1.4rem;
    }
}
