:root {
    --primary: #4A5D4E; /* Sage Green */
    --secondary: #D9C5B2; /* Cedar Wood */
    --accent: #F9F7F2; /* Cream */
    --text-dark: #2C2C2C;
    --text-light: #5F5F5F;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid var(--primary);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-small {
    padding: 0.6rem 1.2rem !important;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: white !important;
}

/* Services */
.services {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.service-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Philosophy */
.philosophy {
    padding: 8rem 0;
    background-color: var(--accent);
}

.philosophy-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.philosophy-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background-color: var(--secondary);
    opacity: 0.3;
    position: relative;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
}

.cta-card {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-form input, .contact-form select {
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    font-family: inherit;
}

.contact-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form button {
    grid-column: span 2;
    background: var(--white);
    color: var(--primary);
    border: none;
}

.contact-form button:hover {
    background: var(--secondary);
    color: var(--white);
}

.contact-info {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    border-top: 1px solid var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .philosophy-content {
        flex-direction: column;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form button {
        grid-column: span 1;
    }

    .hero {
        text-align: center;
    }
}