/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    color: #1a2e22;
    background: #faf9f6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D5A3D;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #1a2e22;
    margin-bottom: 20px;
}
.section-header--centered { text-align: center; }
.section-desc {
    font-size: 1.05rem;
    color: #4a5e52;
    max-width: 560px;
    margin: 0 auto;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-primary {
    background: #2D5A3D;
    color: #fff;
    border-color: #2D5A3D;
}
.btn-primary:hover { background: #234730; border-color: #234730; }
.btn-outline {
    background: transparent;
    color: #1a2e22;
    border-color: #c8d4cc;
}
.btn-outline:hover { border-color: #2D5A3D; color: #2D5A3D; }
.btn-white {
    background: #fff;
    color: #2D5A3D;
    border-color: #fff;
}
.btn-white:hover { background: #f0f4f1; }
.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,249,246,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45,90,61,0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(26,46,34,0.06); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a2e22;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4a5e52;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover { color: #2D5A3D; }
.nav-cta {
    background: #2D5A3D;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s !important;
}
.nav-cta:hover { background: #234730; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #1a2e22;
    transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
    padding: 140px 0 80px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}
.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D5A3D;
    margin-bottom: 16px;
}
.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    color: #1a2e22;
    margin-bottom: 24px;
}
.hero-desc {
    font-size: 1.05rem;
    color: #4a5e52;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
    position: relative;
    height: 480px;
}
.hero-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(26,46,34,0.08);
}
.hero-card--main {
    width: 100%;
    height: 380px;
}
.hero-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card--stat {
    position: absolute;
    background: #fff;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(45,90,61,0.08);
}
.hero-card--top {
    top: -20px;
    right: -20px;
    box-shadow: 0 8px 32px rgba(26,46,34,0.1);
}
.hero-card--bottom {
    bottom: -20px;
    left: -20px;
    box-shadow: 0 8px 32px rgba(26,46,34,0.1);
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #2D5A3D;
}
.stat-label {
    font-size: 0.8rem;
    color: #6b7f73;
}
.hero-line {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.hero-line hr {
    border: none;
    border-top: 1px solid rgba(45,90,61,0.1);
}
.hero-stats {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2e22;
}
.hero-stat-label {
    font-size: 0.75rem;
    color: #6b7f73;
    letter-spacing: 0.02em;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(45,90,61,0.12);
    flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services {
    padding: 100px 0;
}
.section-header { margin-bottom: 60px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 36px 28px;
    border: 1px solid rgba(45,90,61,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fff;
}
.service-card:hover {
    border-color: rgba(45,90,61,0.2);
    box-shadow: 0 8px 32px rgba(26,46,34,0.06);
    transform: translateY(-2px);
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(45,90,61,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5A3D;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1a2e22;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: #6b7f73;
    line-height: 1.65;
}

/* ─── ABOUT ─── */
.about {
    padding: 100px 0;
    border-top: 1px solid rgba(45,90,61,0.06);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 600px;
}
.about-img {
    border-radius: 16px;
    overflow: hidden;
    position: absolute;
}
.about-img--main {
    width: 320px;
    height: 420px;
    top: 0;
    left: 0;
    box-shadow: 0 4px 40px rgba(26,46,34,0.08);
}
.about-img--accent {
    width: 260px;
    height: 260px;
    bottom: 0;
    right: 0;
    box-shadow: 0 4px 40px rgba(26,46,34,0.08);
    border: 4px solid #faf9f6;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content { padding: 20px 0; }
.about-text {
    font-size: 1rem;
    color: #4a5e52;
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #1a2e22;
    font-weight: 400;
}

/* ─── WHY US ─── */
.why-us {
    padding: 100px 0;
    border-top: 1px solid rgba(45,90,61,0.06);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.why-card {
    padding: 40px 32px;
    border: 1px solid rgba(45,90,61,0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fff;
}
.why-card:hover {
    border-color: rgba(45,90,61,0.18);
    box-shadow: 0 8px 32px rgba(26,46,34,0.05);
}
.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: rgba(45,90,61,0.12);
    line-height: 1;
    margin-bottom: 16px;
}
.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a2e22;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.9rem;
    color: #6b7f73;
    line-height: 1.65;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    padding: 100px 0;
    background: #f0f4f1;
    border-top: 1px solid rgba(45,90,61,0.06);
    border-bottom: 1px solid rgba(45,90,61,0.06);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.testimonial-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid rgba(45,90,61,0.06);
}
.testimonial-quote {
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: #4a5e52;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    font-size: 0.8rem;
    color: #2D5A3D;
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: #2D5A3D;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}
.cta-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
}
.cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-desc {
    font-size: 1rem;
    color: #4a5e52;
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail svg { flex-shrink: 0; margin-top: 2px; }
.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2D5A3D;
    margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
    font-size: 0.95rem;
    color: #4a5e52;
    line-height: 1.6;
}
.contact-detail a:hover { color: #2D5A3D; }
.contact-map { border-radius: 16px; overflow: hidden; }
.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(45,90,61,0.08);
}
.form-title {
    font-size: 1.3rem;
    margin-bottom: 28px;
    color: #1a2e22;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7f73;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    padding: 12px 16px;
    border: 1.5px solid rgba(45,90,61,0.15);
    border-radius: 8px;
    background: #faf9f6;
    color: #1a2e22;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2D5A3D;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(45,90,61,0.06);
    border: 1px solid rgba(45,90,61,0.12);
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: #2D5A3D;
    font-weight: 500;
}
.form-success.show { display: flex; }

/* ─── FOOTER ─── */
.footer {
    padding: 60px 0 0;
    background: #1a2e22;
    color: rgba(255,255,255,0.6);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 280px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links strong {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}
.footer-links a {
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,249,246,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(45,90,61,0.08);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    .nav-links.open { transform: translateY(0); }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual { height: 360px; order: -1; }
    .hero-card--stat { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-stat-divider { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 400px; order: -1; }
    .about-img--main { width: 240px; height: 320px; }
    .about-img--accent { width: 200px; height: 200px; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .contact-form-wrap { padding: 24px; }
}
