    /* ============================================
       La YARDA. De MESA — Custom Styles
       Premium Dark Luxury Theme
       ============================================ */

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

    html {
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: #c9a84c #1a1410;
    }

    html::-webkit-scrollbar {
        width: 6px;
    }

    html::-webkit-scrollbar-track {
        background: #1a1410;
    }

    html::-webkit-scrollbar-thumb {
        background: #c9a84c;
        border-radius: 3px;
    }

    body {
        overflow-x: hidden;
    }

    /* Selection */
    ::selection {
        background: #c9a84c;
        color: #0e0b08;
    }

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

    #navbar.scrolled {
        background: rgba(14, 11, 8, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }

    .nav-link {
        position: relative;
    }

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

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

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

    /* Mobile Menu */
    .menu-line {
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    #menuToggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menuToggle.active .menu-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

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

    #mobileMenu.open {
        opacity: 1;
        pointer-events: all;
    }

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

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

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

    /* ============================================
       Hero Section
       ============================================ */
    .hero-eyebrow {
        opacity: 0;
        transform: translateX(-20px);
        animation: slideInLeft 0.8s ease forwards 0.3s;
    }

    .hero-sub {
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.8s ease forwards 0.5s;
    }

    .hero-ctas {
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.8s ease forwards 0.7s;
    }

    .hero-stats {
        opacity: 0;
        transform: translateY(20px);
        animation: slideInUp 0.8s ease forwards 0.9s;
    }

    .hero-visual {
        opacity: 0;
        transform: translateX(40px);
        animation: slideInRight 1s ease forwards 0.6s;
    }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* ============================================
       Collection Cards
       ============================================ */
    .collection-card {
        position: relative;
    }

    .collection-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid rgba(201, 168, 76, 0);
        transition: border-color 0.5s ease;
        z-index: 2;
        pointer-events: none;
    }

    .collection-card:hover::before {
        border-color: rgba(201, 168, 76, 0.4);
    }

    /* ============================================
       About Section
       ============================================ */
    .about-images {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .about-images.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .about-content {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
    }

    .about-content.visible {
        opacity: 1;
        transform: translateX(0);
    }

    /* ============================================
       Experience Section
       ============================================ */
    .experience-image {
        opacity: 0;
        transform: scale(0.95);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .experience-image.visible {
        opacity: 1;
        transform: scale(1);
    }

    /* ============================================
       Section Headers
       ============================================ */
    .section-reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    /* ============================================
       Buttons & Interactions
       ============================================ */
    a, button {
        -webkit-tap-highlight-color: transparent;
    }

    /* Focus styles */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid #c9a84c;
        outline-offset: 2px;
    }

    /* ============================================
       Responsive Adjustments
       ============================================ */
    @media (max-width: 767px) {
        .font-display.text-5xl {
            font-size: 2.5rem;
        }

        .font-display.text-6xl {
            font-size: 2rem;
        }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .font-display.text-5xl {
            font-size: 3rem;
        }
    }

    /* ============================================
       Loading State
       ============================================ */
    .page-loaded #hero {
        opacity: 1;
    }

    body {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    body.loaded {
        opacity: 1;
    }
