/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #1a2e1a;
    background: #faf9f6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Color Tokens ────────────────────────────────── */
:root {
    --green-900: #0d2818;
    --green-800: #1B5E20;
    --green-700: #2E7D32;
    --green-600: #388E3C;
    --green-500: #4CAF50;
    --green-100: #C8E6C9;
    --green-50:  #E8F5E9;
    --cream:     #faf9f6;
    --cream-dark:#f0efe9;
    --text:      #1a2e1a;
    --text-muted:#4a5e4a;
    --white:     #ffffff;
    --radius:    12px;
    --radius-lg: 20px;
    --shadow:    0 4px 24px rgba(13,40,24,.08);
    --shadow-lg: 0 12px 48px rgba(13,40,24,.12);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--green-900); }
.accent { color: var(--green-700); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .875rem 1.75rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: .9375rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}
.btn-primary:hover { background: var(--green-700); border-color: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: var(--white); color: var(--green-800); border-color: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Labels ──────────────────────────────── */
.section-label {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
    color: var(--green-700); margin-bottom: .75rem;
}
.section-label::before {
    content: '';
    display: block; width: 24px; height: 2px;
    background: var(--green-600);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* ── Header ──────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250,249,246,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27,94,32,.08);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(13,40,24,.08); }
.nav-inner {
    display: flex; align-items: center;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: .625rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 1.125rem;
    color: var(--green-900);
}
.logo-icon { color: var(--green-800); flex-shrink: 0; }
.nav-list {
    display: flex; align-items: center; gap: .25rem;
    margin-left: auto;
}
.nav-list a {
    padding: .5rem .875rem;
    font-size: .9375rem; font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: var(--transition);
}
.nav-list a:hover { color: var(--green-800); background: var(--green-50); }
.nav-cta {
    display: inline-flex; align-items: center; gap: .375rem;
    background: var(--green-800) !important;
    color: var(--white) !important;
    border-radius: 50px !important;
    margin-left: .5rem;
}
.nav-cta:hover { background: var(--green-700) !important; }

/* Mobile Nav */
.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    position: relative;
    margin-left: auto;
}
.hamburger {
    display: block;
    width: 22px; height: 2px;
    background: var(--green-900);
    position: absolute; left: 9px; top: 12px;
    transition: var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute; left: 0;
    width: 100%; height: 2px;
    background: var(--green-900);
    transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-list {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid rgba(27,94,32,.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        z-index: 99;
    }
    .nav-list.open { transform: translateY(0); opacity: 1; }
    .nav-list a { padding: .875rem 1rem; width: 100%; }
    .nav-cta { margin-left: 0 !important; justify-content: center; margin-top: .5rem; }
}

/* ── Hero ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 8rem 0 6rem;
    overflow: hidden;
    background: var(--green-900);
}
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d2818 0%, #1B5E20 35%, #2E7D32 65%, #1a4a2e 100%);
    z-index: 1;
}
.hero-pattern {
    position: absolute; inset: 0; z-index: 2;
    opacity: .06;
    background-image:
        radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
    background-size: 48px 48px;
}
.hero-content {
    position: relative; z-index: 3;
    text-align: center;
    padding-top: 2rem;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50px;
    padding: .5rem 1.25rem;
    font-size: .875rem; font-weight: 500;
    color: var(--green-100);
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--green-400, #66BB6A);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .6; transform: scale(1.3); }
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,.8);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex; gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-trust {
    display: flex; justify-content: center; gap: 2.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.75);
    font-size: .9375rem; font-weight: 500;
}
.trust-item svg { color: var(--green-300, #81C784); }
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; z-index: 4;
    color: var(--cream);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ── Services ────────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: var(--cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(27,94,32,.08);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200, #A5D6A7);
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--green-50);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--green-700);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--green-800); color: var(--white); }
.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem; font-weight: 700;
    margin-bottom: .625rem; color: var(--green-900);
}
.service-card p {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ── About ───────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-stack {
    position: absolute;
    bottom: -2rem; right: -1rem;
    display: flex; flex-direction: column; gap: 1rem;
}
.about-img-stack img {
    width: 200px; border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 4px solid var(--white);
}
.about-stat {
    background: var(--green-800);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
}
.about-stat .stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem; font-weight: 700;
}
.about-stat .stat-label {
    font-size: .8125rem;
    opacity: .85;
    line-height: 1.4;
}
.about-content .section-sub { margin-bottom: 1.5rem; }
.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}
.about-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.about-list li {
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: .9375rem; color: var(--text);
}
.about-list li svg { color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-stack { position: relative; bottom: auto; right: auto; margin-top: 1rem; }
}

/* ── Why Us ──────────────────────────────────────── */
.why {
    padding: 6rem 0;
    background: var(--green-900);
    color: var(--white);
}
.why .section-label { color: var(--green-300, #81C784); }
.why .section-label::before { background: var(--green-500); }
.why .section-title { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,.7); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    transform: translateY(-4px);
}
.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 800;
    color: rgba(255,255,255,.1);
    line-height: 1;
    margin-bottom: .75rem;
}
.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem; font-weight: 700;
    color: var(--white);
    margin-bottom: .625rem;
}
.why-card p {
    font-size: .9375rem;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
}

@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ── Gallery ─────────────────────────────────────── */
.gallery {
    padding: 6rem 0;
    background: var(--cream);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── Contact ─────────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-intro {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.detail-item dt {
    display: flex; align-items: center; gap: .625rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: .9375rem;
    color: var(--green-900);
    min-width: 90px;
}
.detail-item dd {
    font-size: .9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.detail-item a {
    color: var(--green-700);
    transition: var(--transition);
}
.detail-item a:hover { color: var(--green-900); text-decoration: underline; }

/* Form */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(27,94,32,.08);
}
.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--green-900);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .875rem; font-weight: 600;
    color: var(--text);
    margin-bottom: .375rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid rgba(27,94,32,.15);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: .9375rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(46,125,50,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0b0a0; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; align-items: center; gap: .625rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--green-800);
    font-weight: 500;
    font-size: .9375rem;
    margin-top: 1rem;
}
.form-success svg { color: var(--green-600); flex-shrink: 0; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

/* ── Footer ──────────────────────────────────────── */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand p {
    font-size: .9375rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 320px;
}
.footer-logo { color: var(--white); }
.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: .875rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a {
    font-size: .9375rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--green-300, #81C784); }
.footer-contact p {
    font-size: .9375rem;
    line-height: 1.7;
}
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--green-300, #81C784); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem 0;
}
.footer-bottom p {
    font-size: .8125rem;
    opacity: .6;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Scroll Animations ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
