/* ── 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: #1a1a1a;
    background: #faf9f6;
    -webkit-font-smoothing: antialiased;
}
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; }

/* ── Skip Link ── */
.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: #065f46; color: #fff; padding: 8px 16px;
    border-radius: 0 0 8px 8px; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── Typography ── */
:root {
    --emerald: #065f46;
    --emerald-light: #047857;
    --emerald-dark: #044733;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --neutral-900: #1a1a1a;
    --neutral-700: #374151;
    --neutral-500: #6b7280;
    --neutral-300: #d1d5db;
    --neutral-100: #f3f4f6;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--neutral-900); }
.section-eyebrow {
    font-family: var(--font-sans); font-size: 0.8125rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--emerald);
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 20px; }
.section-sub { font-size: 1.0625rem; color: var(--neutral-500); max-width: 600px; margin: 0 auto; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-sans); font-weight: 600; font-size: 0.9375rem;
    padding: 14px 28px; border-radius: var(--radius-sm); border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--emerald); outline-offset: 2px; }
.btn-emerald { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
.btn-emerald:hover { background: var(--emerald-dark); border-color: var(--emerald-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn-outline:hover { background: var(--emerald); color: var(--white); transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--emerald-dark); border-color: var(--cream); }
.btn-cream:hover { background: var(--cream-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--emerald); border-color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
    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 var(--neutral-300); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { color: var(--emerald); }
.logo-text { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--neutral-900); }
.logo-text span { color: var(--emerald); }

.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 0.9375rem; font-weight: 500; color: var(--neutral-700); transition: color var(--transition); }
.main-nav 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(--neutral-900); border-radius: 2px; transition: all var(--transition); }
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.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); }

/* ── Hero ── */
.hero { padding: 120px 0 80px; background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--emerald); margin-bottom: 16px; }
.hero-title { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 24px; color: var(--neutral-900); }
.hero-sub { font-size: 1.0625rem; color: var(--neutral-700); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 0; align-items: center; }
.stat { flex: 1; }
.stat-number { display: block; font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: var(--emerald); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.8125rem; color: var(--neutral-500); }
.stat-divider { width: 1px; height: 48px; background: var(--neutral-300); flex-shrink: 0; }
.hero-image { position: relative; }
.hero-img-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--white); padding: 14px 20px; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
    font-weight: 600; font-size: 0.875rem; color: var(--neutral-900);
}
.hero-badge svg { color: #f59e0b; }

/* ── About ── */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.about-image-accent {
    position: absolute; top: -16px; right: -16px; width: 120px; height: 120px;
    background: var(--emerald); border-radius: var(--radius); z-index: -1; opacity: 0.15;
}
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content > p { color: var(--neutral-700); margin-bottom: 16px; }
.about-features { margin-top: 28px; display: grid; gap: 14px; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; color: var(--neutral-700); }
.check-icon { color: var(--emerald); flex-shrink: 0; margin-top: 1px; }

/* ── Services ── */
.services { padding: 100px 0; background: var(--white); }
.services .section-header { margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--cream); border-radius: var(--radius); padding: 36px 28px;
    transition: all var(--transition); border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--emerald); background: var(--white); }
.service-icon { color: var(--emerald); margin-bottom: 20px; }
.service-title { font-size: 1.25rem; margin-bottom: 12px; }
.service-card > p { font-size: 0.9375rem; color: var(--neutral-500); margin-bottom: 20px; line-height: 1.7; }
.service-link { font-size: 0.875rem; font-weight: 600; color: var(--emerald); display: inline-flex; align-items: center; gap: 4px; transition: gap var(--transition); }
.service-link:hover { gap: 8px; }

/* ── Areas ── */
.areas { padding: 100px 0; background: var(--cream); }
.areas .section-header { margin-bottom: 56px; }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.area-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); transition: all var(--transition); }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.area-card img { width: 100%; height: 260px; object-fit: cover; }
.area-card-content { padding: 24px; }
.area-card h3 { font-size: 1.1875rem; margin-bottom: 8px; }
.area-card p { font-size: 0.9375rem; color: var(--neutral-500); }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials .section-header { margin-bottom: 56px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--cream); border-radius: var(--radius); padding: 36px 28px;
    position: relative; transition: all var(--transition); border: 1px solid transparent;
}
.testimonial-card:hover { border-color: var(--emerald); box-shadow: var(--shadow-md); }
.quote-mark { color: var(--emerald); opacity: 0.2; margin-bottom: 16px; }
.testimonial-text { font-size: 1rem; color: var(--neutral-700); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author { font-weight: 700; font-size: 0.9375rem; color: var(--neutral-900); }
.testimonial-detail { font-size: 0.8125rem; color: var(--neutral-500); }

/* ── CTA ── */
.cta { padding: 80px 0; background: var(--emerald); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-content { flex: 1; min-width: 280px; }
.cta-eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.cta-title { color: var(--white); font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 16px; }
.cta-text { color: rgba(255,255,255,0.8); font-size: 1.0625rem; max-width: 520px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-eyebrow { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p { color: var(--neutral-500); margin-bottom: 36px; }
.contact-details { display: grid; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item dt { flex-shrink: 0; color: var(--emerald); margin-top: 2px; }
.contact-item dd a { color: var(--neutral-700); font-size: 0.9375rem; transition: color var(--transition); }
.contact-item dd a:hover { color: var(--emerald); }
.contact-item dd { line-height: 1.7; }

/* ── Form ── */
.contact-form-wrapper { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--neutral-900); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--neutral-300);
    border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 0.9375rem;
    color: var(--neutral-900); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
}
.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,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--neutral-500); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8125rem; color: var(--neutral-500); margin-top: 16px; text-align: center; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success svg { color: var(--emerald); margin: 0 auto 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--neutral-900); }
.form-success p { color: var(--neutral-500); }

/* ── Footer ── */
.site-footer { background: var(--neutral-900); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 16px; font-size: 0.875rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links ul { display: grid; gap: 10px; }
.footer-links a { font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact address { font-style: normal; font-size: 0.875rem; line-height: 1.7; margin-bottom: 12px; }
.footer-contact p { font-size: 0.875rem; margin-bottom: 6px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }

/* ── Back to Top ── */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px;
    background: var(--emerald); color: var(--white); border: none; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
    transform: translateY(16px); transition: all var(--transition); z-index: 50;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--emerald-dark); transform: translateY(-2px); }

/* ── Animations ── */
.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-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; max-width: 500px; margin: 0 auto; }
    .hero { padding: 100px 0 60px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; z-index: 110; }
    .main-nav {
        position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
        background: var(--white); padding: 80px 32px 32px;
        box-shadow: var(--shadow-lg); transform: translateX(100%);
        transition: transform var(--transition); z-index: 105;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
    .main-nav a { font-size: 1.0625rem; }
    .hero { padding: 96px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .stat-divider { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.75rem; }
    .hero-badge { position: relative; bottom: auto; left: auto; margin-top: 16px; display: inline-flex; }
}
