    /* ── Reset & Base ── */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        overflow-x: hidden;
    }

    img {
        display: block;
        max-width: 100%;
    }

    ::selection {
        background: #C9A84C;
        color: #1B4332;
    }

    /* ── Navbar ── */
    #navbar {
        background: transparent;
    }

    #navbar.scrolled {
        background: rgba(27, 67, 50, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 1px 0 rgba(245, 240, 232, 0.08);
    }

    #navbar.scrolled .font-display {
        color: #F5F0E8;
    }

    #navbar.scrolled a:not([class*="bg-"]):not([class*="text-kp-cream"]) {
        color: #F5F0E8;
    }

    /* ── Mobile Menu ── */
    #mobile-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    #mobile-menu:not(.open) .mobile-link {
        transform: translateY(12px);
        opacity: 0;
    }

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

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

    /* ── Menu Button ── */
    #menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }

    #menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    #menu-btn.active .menu-line:nth-child(3) {
        width: 6px;
        transform: rotate(-45deg) translate(3px, -3px);
    }

    /* ── Scroll Reveal ── */
    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── Hero ── */
    #hero {
        position: relative;
    }

    #hero::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 20%;
        background: linear-gradient(to top, rgba(27, 67, 50, 0.4), transparent);
        pointer-events: none;
        z-index: 1;
    }

    /* ── Offerings Cards ── */
    .group {
        position: relative;
    }

    /* ── Gallery ── */
    .aspect-square {
        position: relative;
        overflow: hidden;
    }

    /* ── Form ── */
    #contact-form input:focus,
    #contact-form textarea:focus {
        background: rgba(45, 106, 79, 0.4);
    }

    /* ── Custom scrollbar ── */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #F5F0E8;
    }

    ::-webkit-scrollbar-thumb {
        background: #1B4332;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #2D6A4F;
    }

    /* ── Reduced motion ── */
    @media (prefers-reduced-motion: reduce) {
        html {
            scroll-behavior: auto;
        }

        .reveal {
            opacity: 1;
            transform: none;
            transition: none;
        }

        .aspect-square img,
        .aspect-square img:hover {
            transform: none;
        }
    }
