@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Outfit:wght@300;400;500&display=swap');

:root {
    --color-cream: #F5F0E8;
    --color-sage: #8B9D77;
    --color-deep-green: #2C3E2D;
    --color-bark: #4A3F35;
    --color-moss: #5C6B4D;
    --color-warm-white: #FDFBF7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    background-color: var(--color-cream);
    color: var(--color-bark);
    line-height: 1.6;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--color-warm-white);
    box-shadow: 0 1px 0 rgba(74, 63, 53, 0.1);
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-deep-green);
    letter-spacing: 0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-bark);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(
        135deg,
        var(--color-cream) 0%,
        var(--color-warm-white) 50%,
        var(--color-cream) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at center,
        rgba(139, 157, 119, 0.08) 0%,
        transparent 70%
    );
    animation: drift 20s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--color-deep-green);
    margin-bottom: 1rem;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-moss);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-sage);
    color: var(--color-warm-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    background-color: var(--color-deep-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 62, 45, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 8rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-deep-green);
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-bark);
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background-color: var(--color-warm-white);
    text-align: center;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-deep-green);
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.15rem;
    color: var(--color-bark);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background-color: var(--color-deep-green);
    color: var(--color-cream);
}

footer p {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .about, .contact {
        padding: 5rem 1.5rem;
    }
}

