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

:root {
    --forest: #2d4a3e;
    --sage: #8fa389;
    --cream: #faf8f5;
    --gold: #c9a961;
    --brown: #5c4a3a;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--brown);
    line-height: 1.8;
}

/* 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: 'Crimson Pro', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--forest);
}

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

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

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

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

.hero h1 {
    font-family: 'Crimson Pro', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
    color: var(--forest);
}

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

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

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

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

.teacup {
    position: relative;
    width: 200px;
    height: 180px;
}

.cup {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-radius: 0 0 70px 70px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

.cup::before {
    content: '';
    position: absolute;
    right: -30px;
    top: 20px;
    width: 35px;
    height: 50px;
    border: 8px solid #e8e8e8;
    border-left: none;
    border-radius: 0 25px 25px 0;
}

.cup::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: linear-gradient(to bottom, var(--sage), #6b8a65);
    border-radius: 0 0 50px 50px;
}

.saucer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 20px;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border-radius: 50%;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.steam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 50px;
    background: linear-gradient(to top, rgba(255,255,255,0.3), transparent);
    filter: blur(5px);
    animation: steam 2s infinite;
}

@keyframes steam {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.8; transform: translateX(-50%) translateY(-10px); }
}

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

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

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

.tea-card {
    background-color: rgba(255,255,255,0.05);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

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

.black { background: linear-gradient(145deg, #3d2817, #2a1a0f); }
.green { background: linear-gradient(145deg, var(--sage), #6b8a65); }
.blend { background: linear-gradient(145deg, #8b6914, #6b5010); }
.herbal { background: linear-gradient(145deg, #9b7cb4, #7b5c94); }

.tea-card h3 {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.tea-notes {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

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

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

.story-content h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

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

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

.plantation-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--sage), var(--forest));
    border-radius: 10px;
}

/* Ritual Section */
.ritual-section {
    padding: 5rem;
    background-color: var(--sage);
    color: white;
}

.ritual-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ritual-content h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
}

.step-number {
    display: block;
    font-family: 'Crimson Pro', serif;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    font-weight: 300;
}

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

.cta-section h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--forest);
}

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

.email-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

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

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

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

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

.footer-logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.6);
    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;
    }

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

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

    .ritual-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

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

    .email-form input {
        border: 1px solid #ddd;
    }
}
