/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --emerald:    #065f46;
    --emerald-deep: #044d38;
    --emerald-light: #047857;
    --cream:      #f5f0e8;
    --cream-dark: #e8e0d0;
    --navy:       #1a2332;
    --slate:      #374151;
    --slate-light:#6b7280;
    --white:      #ffffff;
    --radius:     8px;
    --radius-lg:  12px;
    --shadow:     0 1px 3px rgba(0,0,0,.08), 0 4px 20px rgba(0,0,0,.06);
    --shadow-lg:  0 4px 30px rgba(0,0,0,.10);
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--slate);
    background: var(--cream);
    line-height: 1.65;
    -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; color: var(--navy); line-height: 1.25; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .938rem;
    padding: 13px 28px; border-radius: var(--radius); border: 2px solid transparent;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
.btn-primary:hover { background: var(--emerald-deep); border-color: var(--emerald-deep); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn-outline:hover { background: var(--emerald); color: var(--white); }
.btn-cream { background: var(--cream); color: var(--emerald); border-color: var(--cream); }
.btn-cream:hover { background: var(--cream-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: 9px 18px; font-size: .813rem; }
.btn-lg { padding: 16px 36px; font-size: 1.063rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section helpers ──────────────────────────────── */
.section-tag {
    display: inline-block; font-size: .75rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; color: var(--emerald-light);
    margin-bottom: 10px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.section-desc { color: var(--slate-light); max-width: 600px; font-size: 1.063rem; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Header ───────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245,240,232,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6,95,70,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }

.logo { display: flex; align-items: center; gap: 10px; color: var(--emerald); }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; line-height: 1.2; }
.logo-sub { font-family: 'Inter', sans-serif; font-weight: 500; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-light); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; gap: 28px; }
.nav-list a { font-size: .938rem; font-weight: 500; color: var(--slate); transition: var(--transition); }
.nav-list a:hover { color: var(--emerald); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger::before, .hamburger::after { content: ''; }
.hamburger::before { margin-bottom: 6px; }
.hamburger::after { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg) translate(6px, -6px); }

/* ── Hero ─────────────────────────────────────────── */
.hero { padding: 80px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.hero-tag {
    display: inline-block; font-size: .75rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase; color: var(--emerald-light);
    background: rgba(6,95,70,.08); padding: 6px 14px; border-radius: 20px;
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.125rem);
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.15;
}
.hero-desc { font-size: 1.125rem; color: var(--slate-light); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-cred { display: flex; gap: 24px; flex-wrap: wrap; }
.cred-item { display: flex; align-items: center; gap: 6px; font-size: .875rem; color: var(--slate); font-weight: 500; }
.cred-item svg { color: var(--emerald); flex-shrink: 0; }

.hero-img-wrap {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--white); color: var(--emerald);
    font-size: .813rem; font-weight: 600; padding: 8px 16px;
    border-radius: 20px; display: flex; align-items: center; gap: 6px;
    box-shadow: var(--shadow);
}

/* ── Services ─────────────────────────────────────── */
.services { padding: 96px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
    background: var(--cream); border-radius: var(--radius-lg);
    padding: 36px 28px; transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(6,95,70,.12); }
.service-icon {
    width: 56px; height: 56px; border-radius: var(--radius);
    background: var(--emerald); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 { font-size: 1.188rem; margin-bottom: 10px; }
.service-card p { color: var(--slate-light); font-size: .938rem; line-height: 1.65; }

/* ── About ────────────────────────────────────────── */
.about { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; 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-float {
    position: absolute; bottom: -32px; right: -24px;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--cream);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-content .section-tag { margin-bottom: 10px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content > p { color: var(--slate-light); margin-bottom: 16px; font-size: 1.063rem; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; margin: 28px 0 32px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: .938rem; font-weight: 500; color: var(--navy); }
.about-feature svg { color: var(--emerald); flex-shrink: 0; }
.about-content .btn { margin-top: 8px; }

/* ── Areas ────────────────────────────────────────── */
.areas { padding: 96px 0; background: var(--emerald); }
.areas .section-tag { color: rgba(245,240,232,.6); }
.areas .section-title { color: var(--white); }
.areas .section-desc { color: rgba(245,240,232,.7); }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.area-chip {
    background: rgba(245,240,232,.12); color: var(--cream);
    padding: 10px 22px; border-radius: 24px; font-size: .938rem; font-weight: 500;
    border: 1px solid rgba(245,240,232,.15); transition: var(--transition);
}
.area-chip:hover { background: rgba(245,240,232,.22); }

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner { padding: 80px 0; background: var(--cream-dark); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2.125rem); margin-bottom: 12px; }
.cta-desc { font-size: 1.063rem; color: var(--slate-light); max-width: 480px; }

/* ── Contact ──────────────────────────────────────── */
.contact { padding: 96px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-desc { color: var(--slate-light); font-size: 1.063rem; margin-bottom: 32px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; }
.contact-icon {
    width: 48px; height: 48px; border-radius: var(--radius);
    background: var(--cream); color: var(--emerald);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: .813rem; text-transform: uppercase; letter-spacing: .06em; color: var(--slate-light); margin-bottom: 4px; }
.contact-detail a, .contact-detail span { font-size: 1rem; color: var(--navy); font-weight: 500; }
.contact-detail a:hover { color: var(--emerald); }

/* ── Form ─────────────────────────────────────────── */
.contact-form-wrap {
    background: var(--cream); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .813rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--slate); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: .938rem;
    color: var(--navy); background: var(--white); transition: var(--transition);
    appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(6,95,70,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: .813rem; color: var(--slate-light); margin-top: 14px; }

.form-success { text-align: center; padding: 48px 24px; }
.form-success svg { color: var(--emerald); margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--slate-light); }

/* ── Footer ───────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(245,240,232,.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand p { font-size: .938rem; line-height: 1.7; max-width: 300px; }
.footer h4 { font-family: 'Inter', sans-serif; font-size: .813rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--cream); margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: .938rem; transition: var(--transition); }
.footer ul a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(245,240,232,.1); padding: 24px 0; }
.footer-bottom p { text-align: center; font-size: .813rem; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-list, .nav .btn-cream { display: none; }
    .nav.open .nav-list, .nav.open .btn-cream {
        display: flex;
    }
    .nav.open .nav-list {
        flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--cream); padding: 24px;
        border-bottom: 2px solid var(--emerald);
        box-shadow: var(--shadow-lg); gap: 16px;
    }
    .nav.open .btn-cream { justify-content: center; margin-top: 8px; }

    .hero { padding: 48px 0 64px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; }
    .hero-img-wrap { max-width: 480px; margin: 0 auto; }

    .services { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }

    .about { padding: 64px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-float { right: 16px; bottom: -20px; }
    .about-features { grid-template-columns: 1fr; }

    .areas { padding: 64px 0; }

    .cta-banner { padding: 56px 0; }
    .cta-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }

    .contact { padding: 64px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
