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

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(167, 243, 208, 0.25);
        color: #0A1628;
    }

    /* ── Navigation ── */
    #navbar {
        background: rgba(248, 250, 250, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    }

    #navbar.scrolled {
        background: rgba(248, 250, 250, 0.95);
        box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: #A7F3D0;
        transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .nav-link:hover::after {
        width: 100%;
    }

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

    #mobile-menu.closed {
        opacity: 0;
        pointer-events: none;
    }

    .mobile-link {
        font-size: 1.75rem;
    }

    .menu-line.active-1 {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-line.active-2 {
        opacity: 0;
    }

    .menu-line.active-3 {
        transform: translateY(-6px) rotate(-45deg);
        width: 5rem;
    }

    /* ── Hero ── */
    .hero-eyebrow {
        opacity: 0;
        animation: fadeUp 0.8s 0.2s forwards;
    }

    .hero-headline {
        opacity: 0;
        animation: fadeUp 0.8s 0.4s forwards;
    }

    .hero-subtext {
        opacity: 0;
        animation: fadeUp 0.8s 0.6s forwards;
    }

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

    .hero-image-wrapper {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s 0.5s forwards;
    }

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

    /* ── Section Eyebrow ── */
    .section-eyebrow {
        opacity: 0;
        transform: translateY(12px);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .section-title {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    .reveal-left {
        opacity: 0;
        transform: translateX(-40px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal-right {
        opacity: 0;
        transform: translateX(40px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .reveal-up.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: translate(0, 0);
    }

    .reveal-left.visible,
    .reveal-right.visible {
        transition-duration: 0.9s;
    }

    /* ── CTA Buttons ── */
    .cta-primary {
        box-shadow: 0 4px 24px rgba(10, 22, 40, 0.15);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .cta-primary:hover {
        box-shadow: 0 8px 32px rgba(10, 22, 40, 0.22);
        transform: translateY(-2px);
    }

    .cta-secondary {
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .cta-secondary:hover {
        box-shadow: 0 4px 16px rgba(167, 243, 208, 0.2);
        transform: translateY(-2px);
    }

    /* ── Menu Items ── */
    .menu-item {
        opacity: 0;
        transform: translateY(16px);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .menu-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .menu-item:hover .font-light.text-off-white\/90 {
        color: #A7F3D0;
        transition: color 0.3s ease;
    }

    /* ── Visit Info ── */
    .visit-info {
        opacity: 0;
        transform: translateY(16px);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .visit-info.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Focus Styles ── */
    input:focus,
    textarea:focus {
        outline: none;
    }

    /* ── Responsive ── */
    @media (max-width: 767px) {
        .hero-headline {
            font-size: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
        }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .hero-headline {
            font-size: 4rem;
        }
    }

    @media (min-width: 1024px) {
        .hero-headline {
            font-size: 5.5rem;
        }
    }

    @media (min-width: 1280px) {
        .hero-headline {
            font-size: 6.5rem;
        }
    }

    /* ── Reduced Motion ── */
    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }

        .reveal-up,
        .reveal-left,
        .reveal-right,
        .menu-item,
        .visit-info {
            opacity: 1;
            transform: none;
        }
    }
