    *, *::before, *::after {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    ::selection {
        background: rgba(125, 206, 162, 0.3);
        color: #fff;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #060D21;
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(125, 206, 162, 0.3);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(125, 206, 162, 0.5);
    }

    /* ── Hero ── */
    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .hero-bg-img {
        background-size: cover;
        background-position: center;
        animation: heroZoom 20s ease-in-out infinite alternate;
    }
    @keyframes heroZoom {
        0% { transform: scale(1); }
        100% { transform: scale(1.08); }
    }

    .hero-subtitle {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.3s;
        opacity: 0;
    }
    .hero-title {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.6s;
        opacity: 0;
    }
    .hero-desc {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 0.9s;
        opacity: 0;
    }
    .hero-ctas {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 1.2s;
        opacity: 0;
    }
    .hero-scroll {
        animation: fadeUp 0.8s ease forwards;
        animation-delay: 1.8s;
        opacity: 0;
    }

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

    @keyframes scrollLine {
        0% { top: -16px; }
        100% { top: 48px; }
    }
    .scroll-line {
        animation: scrollLine 1.5s ease-in-out infinite;
    }

    /* ── Buttons ── */
    .btn-primary {
        box-shadow: 0 0 30px rgba(125, 206, 162, 0.25);
        transition: all 0.3s ease;
    }
    .btn-primary:hover {
        box-shadow: 0 0 50px rgba(125, 206, 162, 0.4);
        transform: translateY(-2px);
    }
    .btn-secondary {
        transition: all 0.3s ease;
    }
    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(125, 206, 162, 0.1);
    }

    /* ── Nav ── */
    #navbar {
        backdrop-filter: blur(0px);
        transition: all 0.4s ease;
    }
    #navbar.scrolled {
        background: rgba(6, 13, 33, 0.92);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* ── Menu Cards ── */
    .menu-card {
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ── Gallery ── */
    .gallery-item {
        cursor: pointer;
        transition: all 0.4s ease;
    }
    .gallery-item:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    /* ── Reveal animations ── */
    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .reveal-left {
        transform: translateX(-40px);
    }
    .reveal-right {
        transform: translateX(40px);
    }
    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }

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

    /* ── Form ── */
    input:focus,
    textarea:focus {
        background: rgba(10, 17, 40, 0.9);
    }

    /* ── Utility ── */
    .gold-shimmer {
        background: linear-gradient(135deg, #E8D5A3 0%, #D4AF61 50%, #E8D5A3 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* ── Responsive tweaks ── */
    @media (max-width: 640px) {
        .hero-title {
            font-size: 2.75rem;
        }
    }
