    /* ── Base & Typography ── */
    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: #c7d4c1;
        color: #2a3d29;
    }

    /* ── Section Labels & Titles ── */
    .section-label {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #7a9a72;
    }

    .section-title {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: clamp(2rem, 4vw, 3.25rem);
        font-weight: 600;
        line-height: 1.15;
        color: #2a3d29;
    }

    /* ── Hero Animations ── */
    .hero-badge {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.3s;
    }

    .hero-title {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.5s;
    }

    .hero-subtitle {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.7s;
    }

    .hero-cta {
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.9s;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ── Scroll Indicator ── */
    .scroll-indicator {
        cursor: pointer;
    }

    .scroll-line {
        width: 1px;
        height: 48px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
        0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
        50% { opacity: 1; transform: scaleY(1); }
    }

    /* ── CTA Buttons ── */
    .cta-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #3D5A3C;
        color: white;
        padding: 15px 32px;
        border-radius: 100px;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(61, 90, 60, 0.3);
        position: relative;
        overflow: hidden;
    }

    .cta-primary::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .cta-primary:hover::before {
        opacity: 1;
    }

    .cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(61, 90, 60, 0.4);
        background: #324a31;
    }

    .cta-primary span {
        position: relative;
        z-index: 1;
    }

    .cta-arrow {
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .cta-primary:hover .cta-arrow {
        transform: translateX(4px);
    }

    .cta-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: white;
        padding: 15px 32px;
        border-radius: 100px;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cta-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    /* ── Service Cards ── */
    .service-card {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(61, 90, 60, 0.12);
    }

    /* ── Area Cards ── */
    .area-card {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .area-card:hover {
        transform: translateY(-4px);
    }

    /* ── Reveal Animations ── */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Navbar ── */
    #navbar {
        transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    }

    #navbar.scrolled {
        background: rgba(253, 252, 250, 0.92);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(61, 90, 60, 0.08);
    }

    #navbar.scrolled .font-serif {
        color: #2a3d29;
    }

    #navbar.scrolled .menu-line {
        background: #3D5A3C;
    }

    /* ── Mobile Menu ── */
    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    #mobileMenu.open .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }

    /* ── Menu Button ── */
    #mobileMenu.open ~ .fixed .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    #mobileMenu.open ~ .fixed .menu-line:nth-child(2) {
        opacity: 0;
    }
    #mobileMenu.open ~ .fixed .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
        width: 20px;
    }

    /* ── Parallax-like subtle effect ── */
    .service-card img,
    .area-card img {
        will-change: transform;
    }

    /* ── Testimonial Cards ── */
    .testimonial-card {
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
    }

    /* ── Form Styles ── */
    .submit-btn {
        position: relative;
        overflow: hidden;
    }

    .submit-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .submit-btn:hover::after {
        opacity: 1;
    }

    /* ── Custom Select ── */
    select {
        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='%239eb896' 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 16px center;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
        .section-title {
            font-size: clamp(1.75rem, 6vw, 2.5rem);
        }

        .hero-title {
            font-size: clamp(1.75rem, 7vw, 3rem);
        }

        .cta-primary, .cta-secondary {
            padding: 13px 24px;
            font-size: 14px;
        }
    }

    @media (max-width: 360px) {
        .max-w-7xl {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    /* ── Focus Visible ── */
    *:focus-visible {
        outline: 2px solid #3D5A3C;
        outline-offset: 2px;
    }

    /* ── Reduced Motion ── */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        html {
            scroll-behavior: auto;
        }
        .reveal {
            opacity: 1;
            transform: none;
        }
    }
