    /* ===== Reset & Base ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }
    body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }

    /* ===== Navbar ===== */
    #navbar { background: transparent; }
    #navbar.scrolled {
        background: rgba(253, 248, 244, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 1px 20px rgba(107, 47, 91, 0.08);
    }
    .nav-logo-text { transition: color 0.3s; }
    #navbar.scrolled .nav-logo-text { color: #6B2F5B; }

    /* ===== Mobile Menu ===== */
    #mobileMenu.open { opacity: 1; pointer-events: all; }
    #mobileMenu.closed { opacity: 0; pointer-events: none; }
    .mobile-link { transform: translateY(20px); opacity: 0; transition: all 0.4s ease; }
    #mobileMenu.open .mobile-link { transform: translateY(0); opacity: 1; }
    #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; }

    /* ===== Marquee ===== */
    .marquee-track { animation: marquee 30s linear infinite; }
    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ===== Hero Images ===== */
    .hero-img-card {
        box-shadow: 0 20px 60px rgba(107, 47, 91, 0.12);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    .hero-img-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 80px rgba(107, 47, 91, 0.18);
    }
    .hero-badge {
        animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* ===== Reveal Animations ===== */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }

    /* ===== Menu Card Hover ===== */
    .bg-plum-500 { position: relative; overflow: hidden; }
    .bg-plum-500::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
        transition: all 0.5s ease;
    }
    .bg-plum-500:hover::before {
        top: -30%;
        right: -30%;
    }

    /* ===== Gallery ===== */
    .group img { will-change: transform; }

    /* ===== Custom Scrollbar ===== */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #FDF8F4; }
    ::-webkit-scrollbar-thumb { background: #dc90bc; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: #c95e9a; }

    /* ===== Selection ===== */
    ::selection { background: #F5A623; color: #271023; }

    /* ===== Mobile Menu Button ===== */
    #menuToggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #menuToggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menuToggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        width: 1.25rem;
        margin-left: 0;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
        .marquee-track { font-size: 0.85rem; }
    }
