/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1a2e1a;
    background: #faf8f2;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; color: #0f2b14; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-desc { color: #3d5a3d; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: #064e3b;
    color: #faf8f2;
    border-color: #064e3b;
}
.btn-primary:hover { background: #043d2e; border-color: #043d2e; box-shadow: 0 8px 24px rgba(6,78,59,0.3); }
.btn-outline-light {
    background: transparent;
    color: #faf8f2;
    border-color: rgba(250,248,242,0.6);
}
.btn-outline-light:hover { background: rgba(250,248,242,0.12); border-color: #faf8f2; }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250,248,242,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6,78,59,0.08);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(6,78,59,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; gap: 32px; }
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0f2b14;
}
.nav-logo { width: 32px; height: 32px; color: #064e3b; }
.nav-menu { margin-left: auto; display: flex; align-items: center; gap: 32px; }
.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d4a2d;
    transition: color 0.2s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #064e3b;
    transition: width 0.25s;
}
.nav-menu a:hover { color: #064e3b; }
.nav-menu a::after:hover { width: 100%; }
.nav-cta {
    background: #064e3b;
    color: #faf8f2 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.25s, transform 0.2s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #043d2e; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0f2b14;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0f2b14;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/8478259/pexels-photo-8478259.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    opacity: 0.3;
}
.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,43,20,0.92) 0%, rgba(6,78,59,0.85) 50%, rgba(15,43,20,0.88) 100%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4b87a;
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #faf8f2;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-headline em { color: #d4b87a; font-style: italic; }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(250,248,242,0.75);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    color: #faf8f2;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* Hero stat cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    background: rgba(250,248,242,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(250,248,242,0.15);
    border-radius: 16px;
    padding: 24px;
    color: #faf8f2;
    transition: transform 0.25s, background 0.25s;
}
.stat-card:hover { transform: translateY(-4px); background: rgba(250,248,242,0.15); }
.stat-card--1 .stat-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: #d4b87a; display: block; }
.stat-card--1 .stat-label { font-size: 0.85rem; color: rgba(250,248,242,0.8); margin-top: 4px; }
.stat-card--2 { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.stat-card--2 svg { width: 32px; height: 32px; color: #d4b87a; margin-bottom: 8px; }
.stat-card--2 .stat-label { font-size: 0.9rem; color: rgba(250,248,242,0.85); }
.stat-card--3 svg, .stat-card--4 svg { width: 28px; height: 28px; color: #d4b87a; margin-bottom: 8px; }
.stat-card--3 .stat-label, .stat-card--4 .stat-label { font-size: 0.85rem; color: rgba(250,248,242,0.8); text-align: center; }
.stat-card--3, .stat-card--4 { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }

/* ===== SERVICES ===== */
.services { background: #faf8f2; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid rgba(6,78,59,0.08);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(6,78,59,0.1); border-color: rgba(6,78,59,0.15); }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #064e3b, #0a7a54);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #faf8f2;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #0f2b14; }
.service-card p { font-size: 0.95rem; color: #3d5a3d; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { background: #f2efe6; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image { position: relative; }
.about-image img { border-radius: 20px; width: 100%; height: 480px; object-fit: cover; }
.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: #064e3b;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.12;
}
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: #3d5a3d; margin-bottom: 16px; }
.about-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #064e3b;
    border-left: 3px solid #d4b87a;
    padding-left: 16px;
    margin: 24px 0;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}
.about-stat { text-align: left; }
.about-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #064e3b;
    line-height: 1;
}
.about-stat-label { font-size: 0.85rem; color: #3d5a3d; margin-top: 4px; }

/* ===== WHY ===== */
.why { background: #0f2b14; color: #faf8f2; }
.why .section-eyebrow { color: #d4b87a; }
.why .section-title { color: #faf8f2; }
.why .section-desc { color: rgba(250,248,242,0.65); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.why-card {
    background: rgba(250,248,242,0.06);
    border: 1px solid rgba(250,248,242,0.1);
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.25s, background 0.25s;
}
.why-card:hover { transform: translateY(-4px); background: rgba(250,248,242,0.1); }
.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d4b87a;
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 12px;
}
.why-card h3 { font-size: 1.2rem; color: #faf8f2; margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; color: rgba(250,248,242,0.7); line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #064e3b 0%, #0a7a54 100%);
    padding: 80px 24px;
}
.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #faf8f2; margin-bottom: 8px; }
.cta-text p { font-size: 1.05rem; color: rgba(250,248,242,0.75); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: #faf8f2; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #064e3b, #0a7a54);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #faf8f2;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-item h4 { font-size: 1rem; color: #0f2b14; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: #3d5a3d; line-height: 1.6; }
.contact-item a { color: #064e3b; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.contact-item a:hover { color: #043d2e; }
.contact-map { border-radius: 12px; overflow: hidden; }

/* Contact form */
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(6,78,59,0.08);
    box-shadow: 0 8px 32px rgba(6,78,59,0.06);
}
.contact-form h3 { font-size: 1.4rem; color: #0f2b14; margin-bottom: 6px; }
.form-note { font-size: 0.9rem; color: #3d5a3d; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f2b14;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(6,78,59,0.15);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #1a2e1a;
    background: #faf8f2;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #064e3b;
    box-shadow: 0 0 0 3px rgba(6,78,59,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    margin-top: 16px;
    padding: 14px 18px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    color: #064e3b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer { background: #0a1f0f; color: rgba(250,248,242,0.7); padding: 64px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #faf8f2;
    margin-bottom: 14px;
}
.footer-logo svg { width: 32px; height: 32px; color: #d4b87a; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d4b87a;
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #faf8f2; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: rgba(250,248,242,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #d4b87a; }
.footer-bottom {
    border-top: 1px solid rgba(250,248,242,0.08);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(250,248,242,0.4);
}

/* ===== REVEAL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-cards { max-width: 400px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { max-width: 500px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,248,242,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(6,78,59,0.1);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-toggle { display: flex; }
    .hero-inner { padding-top: 100px; }
    .hero-cards { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
}

@media (max-width: 480px) {
    .hero-cards { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .about-stats { flex-direction: column; gap: 20px; }
    .contact-form-wrap { padding: 24px; }
}
