/* ── Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }

/* ── Navbar ───────────────────────────────────────────── */
#navbar {
    background: transparent;
    transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}
#navbar.scrolled {
    background: rgba(253, 249, 243, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
}

/* ── Hero stat cards ─────────────────────────────────── */
.stat-card {
    border-radius: 2px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.card-1 { transform: translateY(0) rotate(-1deg); }
.card-2 { transform: translateY(20px) rotate(1deg); margin-left: 24px; }
.card-3 { transform: translateY(0) rotate(-0.5deg); }

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}
@keyframes float-2 {
    0%, 100% { transform: translateY(20px) rotate(1deg); }
    50% { transform: translateY(8px) rotate(1deg); }
}
@keyframes float-3 {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-8px) rotate(-0.5deg); }
}

.stat-card { animation-timeline: view(); animation-range: cover 30% cover 70%; }
.card-1 { animation: float-1 6s ease-in-out infinite; }
.card-2 { animation: float-2 7s ease-in-out infinite 0.5s; }
.card-3 { animation: float-3 5.5s ease-in-out infinite 1s; }

/* ── Service items ────────────────────────────────────── */
.service-item { transition: background 0.3s ease; }
.service-item:hover { background: rgba(6, 78, 59, 0.02); }

/* ── Listing cards ────────────────────────────────────── */
.listing-card { transition: transform 0.4s ease; }
.listing-card:hover { transform: translateY(-4px); }

/* ── Testimonial cards ────────────────────────────────── */
.testimonial-card { transition: transform 0.4s ease, background 0.5s ease; }
.testimonial-card:hover { transform: translateY(-4px); }

/* ── Scroll reveal ────────────────────────────────────── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .card-1, .card-2, .card-3 { animation: none; }
    .reveal { transition: none; opacity: 1; transform: none; }
}

/* ── Mobile menu ──────────────────────────────────────── */
.mobile-link { transition: opacity 0.3s ease; }
#mobile-menu.open { opacity: 1; pointer-events: all; }
#mobile-menu.closed { opacity: 0; pointer-events: none; }
