/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a2e2a;
    background: #faf9f6;
    line-height: 1.6;
    -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 1.5rem; }

/* ── Colors ── */
:root {
    --green-900: #0f2922;
    --green-800: #1a3c34;
    --green-700: #234f44;
    --green-600: #2d6355;
    --green-500: #3a7d6a;
    --green-400: #5a9e8a;
    --green-300: #8fc4ab;
    --gold: #c8956c;
    --gold-light: #d4a373;
    --cream: #faf9f6;
    --cream-dark: #f0ede6;
    --gray-100: #f5f4f0;
    --gray-200: #e8e6e0;
    --gray-300: #d1cec6;
    --gray-500: #6b6860;
    --gray-700: #3d3a34;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(26,60,52,0.08);
    --shadow-md: 0 4px 16px rgba(26,60,52,0.10);
    --shadow-lg: 0 8px 32px rgba(26,60,52,0.14);
    --shadow-xl: 0 16px 48px rgba(26,60,52,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .8rem 1.6rem; border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif; font-weight: 500; font-size: .938rem;
    border: 2px solid transparent; cursor: pointer; transition: all .25s ease;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
    background: var(--green-800); color: var(--white); border-color: var(--green-800);
}
.btn-accent:hover { background: var(--green-700); border-color: var(--green-700); box-shadow: var(--shadow-lg); }
.btn-outline {
    background: transparent; color: var(--green-800); border-color: var(--green-800);
}
.btn-outline:hover { background: var(--green-800); color: var(--white); }
.btn-outline-light {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: var(--white); color: var(--green-800); }
.btn-sm { padding: .6rem 1.2rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Eyebrow ── */
.section-eyebrow {
    font-family: 'Inter', sans-serif; font-size: .813rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .12em; color: var(--gold);
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--green-900); margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.063rem; color: var(--gray-500); max-width: 560px;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── Navigation ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250,249,246,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200); transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo {
    display: flex; align-items: center; gap: .6rem;
    font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.125rem;
    color: var(--green-800);
}
.nav-logo-icon { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    font-size: .938rem; font-weight: 500; color: var(--gray-700);
    transition: color .2s ease; position: relative;
}
.nav-links a:not(.btn):hover { color: var(--green-800); }
.nav-links a:not(.btn)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Mobile nav toggle */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px; background: var(--green-800);
    position: absolute; left: 0; transition: all .3s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
    position: relative; padding: 8rem 0 4rem; overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(45,99,85,.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200,149,108,.08) 0%, transparent 40%);
    pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    position: relative; z-index: 1;
}
.hero-eyebrow {
    font-size: .813rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
    color: var(--gold); margin-bottom: 1rem;
}
.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: var(--green-900); margin-bottom: 1.25rem; line-height: 1.15;
}
.hero-headline em { font-style: italic; color: var(--green-600); }
.hero-sub {
    font-size: 1.063rem; color: var(--gray-500); margin-bottom: 2rem; max-width: 480px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual */
.hero-visual { position: relative; min-height: 480px; }
.hero-card-main {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
    position: absolute; background: var(--white); border-radius: var(--radius-md);
    padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
    display: flex; align-items: flex-start; gap: .75rem;
    animation: float 4s ease-in-out infinite;
}
.hero-card svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.hero-card strong { display: block; font-size: .875rem; color: var(--green-900); margin-bottom: .15rem; }
.hero-card span { font-size: .813rem; color: var(--gray-500); line-height: 1.4; }
.card-float-1 { top: 10%; left: -2rem; animation-delay: 0s; }
.card-float-2 { bottom: 12%; right: -1.5rem; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats bar */
.stats-bar {
    position: relative; z-index: 1; margin-top: 3rem;
    background: var(--green-800); border-radius: var(--radius-lg);
    padding: 2rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-item { text-align: center; padding: .5rem 1rem; }
.stat-number {
    display: block; font-family: 'Playfair Display', serif; font-size: 1.25rem;
    font-weight: 600; color: var(--white); margin-bottom: .25rem;
}
.stat-label { font-size: .813rem; color: rgba(255,255,255,.65); }

/* ── About ── */
.about { padding: 6rem 0; }
.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-accent {
    position: absolute; bottom: -2rem; right: -2rem;
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-lg); border: 4px solid var(--cream);
}
.about-accent-box {
    position: absolute; top: -1.5rem; right: 2rem;
    background: var(--green-800); color: var(--white);
    padding: 1rem 1.25rem; border-radius: var(--radius-md);
    display: flex; align-items: center; gap: .6rem;
    font-size: .875rem; font-weight: 500; box-shadow: var(--shadow-md);
}
.about-accent-box svg { color: var(--gold); }
.about-text {
    font-size: 1rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1rem;
}
.about-features { margin-top: 1.5rem; display: grid; gap: .75rem; }
.about-feature {
    display: flex; align-items: center; gap: .75rem;
    font-size: .938rem; color: var(--gray-700);
}
.about-feature svg { color: var(--green-500); flex-shrink: 0; }

/* ── Services ── */
.services { padding: 6rem 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
    background: var(--cream); border-radius: var(--radius-lg); padding: 2rem;
    border: 1px solid var(--gray-200); transition: all .3s ease;
}
.service-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
    border-color: var(--green-300); background: var(--white);
}
.service-icon {
    width: 56px; height: 56px; border-radius: var(--radius-sm);
    background: var(--green-800); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-family: 'Inter', sans-serif; font-size: 1.125rem; font-weight: 600;
    color: var(--green-900); margin-bottom: .75rem;
}
.service-card p { font-size: .938rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 1.25rem; }
.service-list { display: grid; gap: .5rem; }
.service-list li {
    display: flex; align-items: center; gap: .5rem;
    font-size: .875rem; color: var(--gray-700);
}
.service-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
}

/* ── Areas ── */
.areas { padding: 6rem 0; background: var(--cream); }
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.area-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--white); border: 1px solid var(--gray-200);
    transition: all .3s ease;
}
.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: 1.5rem; }
.area-card h3 {
    font-family: 'Inter', sans-serif; font-size: 1.125rem; font-weight: 600;
    color: var(--green-900); margin-bottom: .5rem;
}
.area-card p { font-size: .938rem; color: var(--gray-500); line-height: 1.6; }

/* ── Testimonials ── */
.testimonials { padding: 6rem 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
    background: var(--cream); border-radius: var(--radius-lg); padding: 2rem;
    border: 1px solid var(--gray-200); transition: all .3s ease;
    position: relative;
}
.testimonial-card:hover { border-color: var(--green-300); box-shadow: var(--shadow-md); }
.testimonial-quote { color: var(--gold); margin-bottom: 1rem; opacity: .7; }
.testimonial-text {
    font-size: .938rem; color: var(--gray-700); line-height: 1.75;
    margin-bottom: 1.5rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--green-800); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 600; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .875rem; color: var(--green-900); }
.testimonial-author span { font-size: .813rem; color: var(--gray-500); }

/* ── CTA ── */
.cta { padding: 5rem 0; background: var(--green-800); }
.cta-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--white); margin-bottom: .75rem;
}
.cta-content p { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 480px; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 6rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-desc { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: grid; gap: 1.25rem; }
.contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
}
.contact-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: .875rem; color: var(--green-900); margin-bottom: .15rem; }
.contact-detail span, .contact-detail a { font-size: .938rem; color: var(--gray-500); }
.contact-detail a:hover { color: var(--green-600); }

/* Form */
.contact-form-wrap {
    background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
    box-shadow: var(--shadow-md); border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-size: .813rem; font-weight: 600; color: var(--green-800);
    margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .06em;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm); font-family: 'Inter', sans-serif;
    font-size: .938rem; color: var(--gray-700); background: var(--cream);
    transition: border-color .2s ease, box-shadow .2s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(45,99,85,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .813rem; color: var(--gray-500); margin-top: .75rem; text-align: center; }
.form-success {
    display: none; text-align: center; padding: 2rem;
}
.form-success svg { color: var(--green-500); margin-bottom: 1rem; }
.form-success h3 {
    font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 600;
    color: var(--green-900); margin-bottom: .5rem;
}
.form-success p { font-size: .938rem; color: var(--gray-500); }

/* ── Footer ── */
.footer { background: var(--green-900); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem;
    padding-bottom: 3rem;
}
.footer-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: .938rem; line-height: 1.7; max-width: 280px; }
.footer-links strong, .footer-contact strong {
    display: block; font-size: .813rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .1em; color: var(--gold); margin-bottom: 1rem;
}
.footer-links a {
    display: block; font-size: .938rem; color: rgba(255,255,255,.6);
    padding: .3rem 0; transition: color .2s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: .938rem; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,.6); transition: color .2s ease; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    font-size: .813rem; color: rgba(255,255,255,.4);
}

/* ── Scroll animations ── */
.reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 380px; order: -1; }
    .hero-content { text-align: center; }
    .hero-sub { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-eyebrow { text-align: center; }
    .card-float-1 { left: 0; }
    .card-float-2 { right: 0; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { max-width: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(250,249,246,.98); backdrop-filter: blur(12px);
        flex-direction: column; padding: 2rem; gap: 1.25rem;
        border-bottom: 1px solid var(--gray-200);
        transform: translateY(-120%); opacity: 0;
        transition: all .3s ease; pointer-events: none;
    }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-toggle { display: block; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .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; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: .5rem; text-align: center; }
    .hero { padding: 7rem 0 3rem; }
    .hero-visual { min-height: 320px; }
    .hero-card { display: none; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-img-accent { right: 0; bottom: -1.5rem; }
    .about-accent-box { right: 0; }
}
