    /* ===== Base & Reset ===== */
    *, *::before, *::after {
        box-sizing: border-box;
    }

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

    body {
        margin: 0;
        overflow-x: hidden;
    }

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

    ::selection {
        background: #7B2D3B;
        color: #E8E4DF;
    }

    /* ===== Scrollbar ===== */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0A0A0A;
    }
    ::-webkit-scrollbar-thumb {
        background: #7B2D3B;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #9A3A4A;
    }

    /* ===== Animations ===== */
    @keyframes scrollDot {
        0% { top: -16px; opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { top: calc(100% + 16px); opacity: 0; }
    }

    .animate-scroll-dot {
        animation: scrollDot 1.8s ease-in-out infinite;
    }

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

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .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; }

    /* ===== Navigation ===== */
    #navbar {
        background: transparent;
    }

    #navbar.scrolled {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    }

    #navbar.scrolled .nav-link {
        color: #9A9590;
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: #C9A96E;
        transition: width 0.3s ease;
    }

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

    .nav-link:hover {
        color: #C9A96E !important;
    }

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

    .mobile-link {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
    }

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

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

    .menu-line {
        transition: all 0.3s ease;
    }

    #menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(3px, 3px);
    }
    #menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    #menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(3px, -3px);
        width: 24px;
        margin-right: 0;
    }

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

    /* ===== Cards ===== */
    .group:hover .group-hover\:scale-110 {
        transform: scale(1.1);
    }

    /* ===== Buttons ===== */
    a, button {
        cursor: pointer;
    }

    /* ===== Input Focus ===== */
    input:focus, textarea:focus {
        border-color: rgba(201, 169, 110, 0.6) !important;
        box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.2);
    }

    /* ===== Utility ===== */
    .font-serif {
        font-family: 'Cormorant Garamond', Georgia, serif;
    }

    .font-sans {
        font-family: 'Manrope', system-ui, sans-serif;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
        .font-serif {
            font-size: clamp(2rem, 8vw, 3rem);
        }
    }
