:root {
    --primary: #2c5f2d;
    --accent: #8b5a2b;
    --light: #f8f5f0;
    --dark: #1a2521;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

header {
    position: sticky;
    top: 0;
    background: rgba(248, 245, 240, 0.95);
    backdrop-filter: blur(8px);
    z-index: 100;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('/images/hero.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 180px 20px 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}
.tagline {
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #1e4a1f;
    transform: translateY(-3px);
}

.section {
    padding: 100px 5%;
}

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

.bg-alt {
    background: #f0e9d9;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

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

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.quotes blockquote {
    font-style: italic;
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 5px solid var(--accent);
    font-size: 1.25rem;
}

.cta-section {
    text-align: center;
    background: var(--primary);
    color: white;
}

footer {
    text-align: center;
    padding: 3rem;
    background: #1a2521;
    color: #aaa;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .nav-links { display: none; } /* Add mobile menu later if needed */
}
