:root {
    --primary: #4a6741; /* Earthy green */
    --secondary: #e8ede3; /* Light sage */
    --accent: #d89f65; /* Warm terra cotta */
    --bg-main: #fcfbfa; /* Off white */
    --text-main: #2c302e;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1, h2, h3, .logo { font-family: var(--font-heading); }
.logo { font-size: 2rem; font-weight: 600; color: var(--primary); }

/* Buttons */
.btn-primary {
    background-color: var(--primary); color: white;
    padding: 0.8rem 2rem; border-radius: 30px; text-decoration: none;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
    transition: background-color 0.3s; display: inline-block;
}
.btn-primary:hover { background-color: #384e31; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%;
}
.nav-links { display: flex; gap: 3rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }

/* Hero */
.hero {
    display: flex; align-items: center; justify-content: space-between;
    padding: 4rem 5% 6rem; gap: 4rem;
}
.hero-text { flex: 1; }
.hero-text h1 { font-size: 5.5rem; line-height: 1; margin-bottom: 1.5rem; color: var(--primary); }
.hero-text h1 span { font-style: italic; font-weight: 400; color: var(--accent); }
.hero-text p { font-size: 1.2rem; margin-bottom: 2.5rem; max-width: 450px; }

.hero-image { flex: 1; position: relative; }
.hero-image img { width: 100%; height: 600px; object-fit: cover; border-radius: 20px 200px 20px 20px; }
.circle-badge {
    position: absolute; bottom: -30px; left: -30px;
    width: 120px; height: 120px; background: var(--secondary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    animation: rotate 15s linear infinite;
}
.circle-badge text { fill: var(--primary); font-family: var(--font-body); letter-spacing: 2px; }
@keyframes rotate { 100% { transform: rotate(360deg); } }

/* Features */
.features {
    display: flex; gap: 2rem; padding: 4rem 5%; background-color: var(--primary); color: white;
}
.feature-box { flex: 1; text-align: center; padding: 2rem; }
.feature-box .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-box h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 400; }
.feature-box p { font-size: 0.95rem; opacity: 0.9; }

/* Services */
.services { padding: 8rem 5%; text-align: center; }
.section-title h2 { font-size: 3rem; color: var(--primary); margin-bottom: 0.5rem; }
.section-title p { color: #666; margin-bottom: 4rem; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 15px 30px rgba(0,0,0,0.05); text-align: left; transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-content { padding: 2.5rem; }
.card-content h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 1rem; }
.card-content p { color: #666; margin-bottom: 1.5rem; font-size: 0.95rem; }
.price { display: block; font-weight: 700; color: var(--accent); font-size: 1.1rem; }

/* Quote */
.quote-section { padding: 8rem 5%; text-align: center; background-color: var(--secondary); }
blockquote { font-family: var(--font-heading); font-size: 3rem; color: var(--primary); font-style: italic; margin-bottom: 1rem; max-width: 800px; margin-inline: auto; }
cite { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

/* Footer */
.footer { padding: 6rem 5% 2rem; text-align: center; }
.footer-top { margin-bottom: 6rem; }
.footer-top h2 { font-size: 3.5rem; color: var(--primary); margin-bottom: 1rem; }
.footer-top p { margin-bottom: 2rem; font-size: 1.1rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #ddd; padding-top: 2rem; }
.socials a { color: var(--text-main); text-decoration: none; margin: 0 1rem; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; padding-top: 2rem; }
    .hero-text p { margin-inline: auto; }
    .hero-image { width: 100%; }
    .features, .service-cards, .footer-bottom { flex-direction: column; }
    .service-cards { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}