/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Navbar ── */
#navbar { background: transparent; }
#navbar.scrolled { background: rgba(253, 248, 240, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(6, 78, 59, 0.08); }
.nav-link { position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: currentColor; transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #065f46; color: #FDF8F0;
    padding: 0.8rem 1.75rem; border-radius: 9999px;
    font-size: 0.9rem; font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(6, 95, 70, 0.2);
}
.btn-primary:hover { background: #047857; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(6, 95, 70, 0.3); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: #065f46;
    padding: 0.8rem 1.75rem; border-radius: 9999px;
    font-size: 0.9rem; font-weight: 500;
    border: 1px solid rgba(6, 78, 59, 0.25);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.btn-secondary:hover { background: rgba(6, 78, 59, 0.06); border-color: rgba(6, 78, 59, 0.5); transform: translateY(-1px); }
.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: #065f46;
    padding: 0.75rem 1.5rem; border-radius: 9999px;
    font-size: 0.875rem; font-weight: 500;
    border: 1px solid rgba(6, 78, 59, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.btn-outline:hover { background: #065f46; color: #FDF8F0; border-color: #065f46; }

/* ── Section Labels ── */
.section-label {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: #047857;
}
.section-label::before { content: ''; width: 2rem; height: 1px; background: #047857; }
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; line-height: 1.15;
    color: #064e3b; letter-spacing: -0.01em;
}
.section-subtitle {
    font-size: 1.1rem; font-weight: 300; line-height: 1.7;
    color: #065f4680; margin-top: 1rem;
}

/* ── Hero ── */
.split-hero { align-items: center; }
.tagline { display: flex; align-items: center; gap: 0.75rem; }
.tagline-line { width: 2.5rem; height: 1px; background: #047857; flex-shrink: 0; }
.tagline-text { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #047857; }
.hero-headline { font-weight: 500; }
.hero-subtitle { font-weight: 300; }
.hero-stats { border-top: 1px solid rgba(6, 78, 59, 0.1); }
.stat-number { font-weight: 500; letter-spacing: -0.01em; }
.stat-label { font-weight: 400; letter-spacing: 0.08em; }
.hero-image-wrap { position: relative; border-radius: 0; overflow: hidden; }
.hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-accent {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(2, 44, 34, 0.15), transparent);
    pointer-events: none;
}

/* ── Divider ── */
.divider { height: 1px; background: linear-gradient(to right, transparent, rgba(6, 78, 59, 0.15), transparent); }

/* ── Services ── */
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
    background: rgba(6, 78, 59, 0.1); border: 1px solid rgba(6, 78, 59, 0.1);
}
.service-card {
    background: #FDF8F0; padding: 2.5rem;
    transition: background 0.3s ease;
}
.service-card:hover { background: #F9F0E0; }
.service-icon {
    width: 3rem; height: 3rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(6, 78, 59, 0.2); border-radius: 50%;
    color: #047857; margin-bottom: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon { background: #065f46; color: #FDF8F0; border-color: #065f46; }
.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem; font-weight: 500; color: #064e3b; margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.95rem; font-weight: 300; line-height: 1.7; color: #065f4680; }

/* ── Why Us ── */
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-item-icon {
    flex-shrink: 0; width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(110, 231, 183, 0.3); border-radius: 50%;
    color: #6ee7b7; margin-top: 0.15rem;
}
.why-item-title { font-weight: 500; color: #FDF8F0; font-size: 1rem; }
.why-item-desc { font-weight: 300; color: rgba(253, 248, 240, 0.5); font-size: 0.9rem; margin-top: 0.25rem; line-height: 1.6; }
.why-image { overflow: hidden; }
.why-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
    background: #FDF8F0; border: 1px solid rgba(6, 78, 59, 0.1);
    padding: 2.5rem 2rem; text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { border-color: rgba(6, 78, 59, 0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(6, 78, 59, 0.08); }
.pricing-card-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem; font-weight: 500; color: #064e3b; margin-bottom: 0.75rem;
}
.pricing-card-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.7; color: #065f4680; margin-bottom: 2rem; }
.pricing-card-cta { margin-top: auto; }
.pricing-note { font-weight: 300; }

/* ── Location ── */
.location-row { display: flex; gap: 1rem; align-items: flex-start; }
.location-row-icon {
    flex-shrink: 0; width: 2.5rem; height: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(6, 78, 59, 0.15); border-radius: 50%;
    color: #047857;
}
.location-row-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #065f4680; margin-bottom: 0.25rem; }
.location-row-value { font-size: 1rem; font-weight: 400; color: #064e3b; }
.map-wrap { overflow: hidden; border: 1px solid rgba(6, 78, 59, 0.1); }

/* ── Contact Form ── */
.contact-form { background: #FDF8F0; border: 1px solid rgba(6, 78, 59, 0.1); padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #065f4680; margin-bottom: 0.5rem; }
.form-input {
    width: 100%; padding: 0.8rem 1rem;
    background: #F9F0E0; border: 1px solid rgba(6, 78, 59, 0.15);
    border-radius: 0; font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 300;
    color: #064e3b; transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}
.form-input::placeholder { color: #065f4640; }
.form-input:focus { border-color: #047857; background: #FDF8F0; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23065f46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 3rem 2rem;
}
.form-success-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 500; color: #064e3b; margin-top: 1rem; margin-bottom: 0.5rem; }
.form-success-desc { font-size: 0.95rem; font-weight: 300; color: #065f4680; line-height: 1.6; }

/* ── Contact Info ── */
.contact-info-item { }
.contact-info-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #065f4680; margin-bottom: 0.35rem; }
.contact-info-value { font-size: 1.05rem; font-weight: 400; color: #064e3b; }

/* ── Footer ── */
.footer-heading { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253, 248, 240, 0.4); }
.footer-link { font-size: 0.9rem; font-weight: 300; color: rgba(253, 248, 240, 0.5); transition: color 0.2s ease; }
.footer-link:hover { color: rgba(253, 248, 240, 0.9); }
.footer-bottom { border-top: 1px solid rgba(253, 248, 240, 0.08); }

/* ── Mobile Menu ── */
.mobile-menu-link { font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; font-weight: 500; color: #064e3b; transition: color 0.2s ease; }
.mobile-menu-link:hover { color: #047857; }

/* ── Scroll Reveal ── */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(24px); }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1023px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 767px) {
    .split-hero { grid-template-columns: 1fr; gap: 3rem; }
    .hero-right { order: -1; }
    .hero-image-wrap { max-height: 400px; }
    .hero-image { height: 400px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem; }
    .why-image { margin-top: 2rem; }
    .contact-form { padding: 1.75rem; }
    .hero-stats { gap: 1.5rem; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-image-wrap { max-height: 560px; }
    .hero-image { height: 560px; }
}
