/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #2C3E35;
    background: #FAFAF7;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4A7C5F;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1A3A28;
    margin-bottom: 20px;
}
.lead {
    font-size: 1.1rem;
    color: #4A5D52;
    line-height: 1.8;
    max-width: 540px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: #2D5A3D;
    color: #FAFAF7;
    border-color: #2D5A3D;
}
.btn-primary:hover { background: #1F4230; border-color: #1F4230; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,90,61,0.25); }
.btn-outline {
    background: transparent;
    color: #FAFAF7;
    border-color: rgba(250,250,247,0.6);
}
.btn-outline:hover { background: rgba(250,250,247,0.1); border-color: #FAFAF7; transform: translateY(-2px); }
.btn-light {
    background: #FAFAF7;
    color: #2D5A3D;
    border-color: #FAFAF7;
}
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(250,250,247,0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #FAFAF7;
    transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: #1A3A28; }
.nav-logo-icon { color: inherit; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(250,250,247,0.85);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7FB07E;
    transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #FAFAF7; }
.nav.scrolled .nav-links a { color: #4A5D52; }
.nav.scrolled .nav-links a:hover { color: #2D5A3D; }
.nav.scrolled .nav-links a::after { background: #2D5A3D; }
.nav-links .btn-sm {
    background: rgba(250,250,247,0.15);
    border: 1px solid rgba(250,250,247,0.4);
    color: #FAFAF7;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}
.nav-links .btn-sm:hover { background: #FAFAF7; color: #2D5A3D; }
.nav.scrolled .nav-links .btn-sm { background: #2D5A3D; border-color: #2D5A3D; color: #FAFAF7; }
.nav.scrolled .nav-links .btn-sm:hover { background: #1F4230; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #FAFAF7;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav.scrolled .nav-toggle span { background: #2D5A3D; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,58,40,0.72) 0%,
        rgba(45,90,61,0.55) 50%,
        rgba(74,124,95,0.45) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 24px;
}
.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250,250,247,0.75);
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #FAFAF7;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-headline br { display: none; }
.hero-sub {
    font-size: 1.15rem;
    color: rgba(250,250,247,0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(250,250,247,0.6);
    animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about { padding: 120px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(45,90,61,0.15);
}
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border: 4px solid #FAFAF7;
}
.about-img-float img { width: 260px; height: 180px; object-fit: cover; }
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2D5A3D;
    color: #FAFAF7;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(45,90,61,0.3);
}
.about-text { padding-top: 20px; }
.about-text .section-title { margin-bottom: 24px; }
.about-text p { color: #4A5D52; margin-bottom: 16px; }
.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(45,90,61,0.12);
}
.stat { text-align: left; }
.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2D5A3D;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-suffix { font-size: 1.4rem; }
.stat-label { font-size: 0.85rem; color: #7A8D82; }

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #F4F7F2 0%, #FAFAF7 100%);
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-header .section-title { margin-bottom: 16px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    border: 1px solid rgba(45,90,61,0.06);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45,90,61,0.1);
    border-color: rgba(45,90,61,0.12);
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E8F5E5 0%, #D4EDDA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5A3D;
    margin-bottom: 24px;
}
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A3A28;
    margin-bottom: 12px;
}
.service-card p { font-size: 0.95rem; color: #5A6D62; line-height: 1.7; }

/* ===== AREAS ===== */
.areas { padding: 120px 0; }
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.area-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(45,90,61,0.06);
}
.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45,90,61,0.12);
}
.area-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.area-card:hover img { transform: scale(1.05); }
.area-card-body { padding: 28px; }
.area-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1A3A28;
    margin-bottom: 8px;
}
.area-card-body p { font-size: 0.9rem; color: #5A6D62; }

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #1A3A28 0%, #2D5A3D 100%);
    color: #FAFAF7;
}
.testimonials .section-eyebrow { color: #7FB07E; }
.testimonials .section-title { color: #FAFAF7; margin-bottom: 64px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(250,250,247,0.07);
    border: 1px solid rgba(250,250,247,0.1);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    background: rgba(250,250,247,0.1);
    transform: translateY(-4px);
}
.testimonial-quote {
    color: #7FB07E;
    margin-bottom: 20px;
    opacity: 0.7;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250,250,247,0.88);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-weight: 600; font-size: 0.95rem; color: #FAFAF7; }
.author-detail { font-size: 0.8rem; color: #7FB07E; }

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E8F5E5 0%, #D4EDDA 50%, #C8E6C9 100%);
}
.cta .container { position: relative; z-index: 2; text-align: center; max-width: 680px; }
.cta-eyebrow { margin-bottom: 16px; }
.cta-title { margin-bottom: 20px; }
.cta-text {
    font-size: 1.1rem;
    color: #4A5D52;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-title { margin-bottom: 20px; }
.contact-info .lead { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item svg {
    color: #2D5A3D;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #1A3A28;
    margin-bottom: 4px;
}
.contact-item span, .contact-item a {
    font-size: 0.95rem;
    color: #5A6D62;
    line-height: 1.6;
}
.contact-item a:hover { color: #2D5A3D; }

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 12px 48px rgba(45,90,61,0.08);
    border: 1px solid rgba(45,90,61,0.06);
}
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A3A28;
    margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4A5D52;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #E0E8E0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #2C3E35;
    background: #FAFAF7;
    transition: all 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #2D5A3D;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(45,90,61,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0B0A6; }
.form-note {
    font-size: 0.8rem;
    color: #8A9D92;
    margin-top: 16px;
    text-align: center;
}
.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}
.form-success svg { color: #2D5A3D; margin-bottom: 20px; }
.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1A3A28;
    margin-bottom: 12px;
}
.form-success p { color: #5A6D62; }

/* ===== FOOTER ===== */
.footer {
    background: #1A2E23;
    color: rgba(250,250,247,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #FAFAF7;
    margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-links strong, .footer-contact strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #FAFAF7;
    margin-bottom: 20px;
}
.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(250,250,247,0.6);
    margin-bottom: 12px;
    transition: color 0.3s;
}
.footer-links a:hover { color: #7FB07E; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a {
    display: block;
    font-size: 0.9rem;
    color: #7FB07E;
    margin-bottom: 8px;
    transition: color 0.3s;
}
.footer-contact a:hover { color: #A8D5A8; }
.footer-bottom {
    border-top: 1px solid rgba(250,250,247,0.08);
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(250,250,247,0.4); }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid, .contact-grid { gap: 48px; }
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(250,250,247,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: #2C3E35; font-size: 1.05rem; }
    .nav-links a::after { background: #2D5A3D; }
    .nav-links .btn-sm {
        background: #2D5A3D;
        border-color: #2D5A3D;
        color: #FAFAF7;
    }
    .nav-toggle { display: flex; }

    .hero-headline br { display: block; }
    .hero-actions { flex-direction: column; align-items: center; }

    .about-grid { grid-template-columns: 1fr; }
    .about-img-float { right: 20px; bottom: -20px; }
    .about-img-float img { width: 200px; height: 140px; }
    .about-badge { top: -10px; left: 10px; }
    .about-stats { flex-wrap: wrap; gap: 24px; }

    .services-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .about, .services, .areas, .testimonials, .cta, .contact { padding: 80px 0; }
    .service-card { padding: 28px 24px; }
    .contact-form-wrap { padding: 24px 20px; }
}
