@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary: #111111;
            --secondary: #f5f5f5;
            --accent: #d4af37;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: auto !important; /* Restore default cursor */
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary);
            color: var(--secondary);
            overflow-x: hidden;
        }
        
        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            z-index: 9999;
            will-change: opacity, transform;
        }
        
        .music-notes {
            display: flex;
            gap: 1.5rem;
            align-items: flex-end;
            perspective: 1000px;
        }
        
        .note {
            font-size: 4rem;
            color: var(--accent);
            opacity: 0;
            transform: translateY(30px) scale(0.5);
            will-change: transform, opacity;
            filter: blur(0px);
            text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }
        
        .loading-text {
            font-size: 1.2rem;
            color: var(--secondary);
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: lowercase;
            opacity: 0;
            transform: translateY(10px);
            will-change: transform, opacity;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Page Transitions */
        .page-transition {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary); /* Changed from var(--accent) to var(--primary) */
            z-index: 9998;
            transform: scaleY(0);
            transform-origin: bottom;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* Animated Images Container */
        .animated-images-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .animated-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.1);
            opacity: 0;
            border-radius: 10px;
            object-fit: cover;
            filter: blur(2px) brightness(0.7);
            transition: filter 0.3s ease;
            z-index: 0;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1511671782772-c97d3e27f8b4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.3;
            filter: grayscale(100%);
            animation: bgPan 60s linear infinite;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            flex-wrap: wrap;
            justify-content: flex-start;
            gap: 3rem;
            padding: 0 5%;
            min-height: 100vh;
        }

        .hero-content.centered-content {
            justify-content: center;
            text-align: center;
        }

        .hero-content.centered-content .animate-initial {
            max-width: 800px;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 12vw, 8rem); /* Increased min, max, and vw for more space */
            font-weight: 300;
            line-height: 1.05;
            margin-bottom: 2rem;
            overflow: visible; /* Allow more space for text */
            word-break: break-word;
            white-space: nowrap; /* Prevent text wrapping */
        }
        
        .hero-title span {
            display: inline-block;
            transform: translateY(100%);
            opacity: 0;
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            font-weight: 300;
            
            max-width: 600px;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
        }
         @media (max-width: 1024px) {
            .hero-content {
                flex-direction: column !important;
                gap: 2rem !important;
                align-items: center !important;
                justify-content: center !important;
                min-height: 100vh;
                padding-top: 120px;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column !important;
                gap: 1.5rem !important;
                align-items: center !important;
                justify-content: center !important;
                min-height: 100vh;
                padding-top: 120px;
            }
            .hero-title {
                font-size: 2.2rem !important;
            }
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            mix-blend-mode: difference;
            transform: translateY(-100%);
            opacity: 0;
        }
        
        .nav-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 2px;
            transition: color 0.3s, letter-spacing 0.4s, transform 0.4s cubic-bezier(.77,0,.18,1), text-shadow 0.4s;
            will-change: color, letter-spacing, transform, text-shadow;
        }
        
        .nav-logo:hover {
            color: var(--accent);
            letter-spacing: 6px;
            transform: scale(1.08); /* Removed skewY and rotate */
            text-shadow: 0 4px 24px var(--accent), 0 1px 0 #fff2;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-link {
            position: relative;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 300;
            font-size: 1rem;
            overflow: hidden;
            transform: translateY(10px);
            opacity: 0;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--secondary);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .nav-link:hover::after {
            transform: translateX(0);
        }
        
        /* Hamburger styles */
        .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 201;
      }
      .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        margin: 4px 0;
        background: var(--secondary);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(.77,0,.18,1);
      }
      /* ----- hamburger → X animation ----- */
        .hamburger.active { z-index: 220; }
        .hamburger.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
        }
        .hamburger.active span:nth-child(2) {
        opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        }
      @media (max-width: 900px) {
        .nav-links {
          display: none;
        }
        .hamburger {
          display: flex;
        }
      }

        @media (max-width: 900px) {
    .nav {
        display: block !important;
        padding: 0.7rem 0 !important;
        height: 60px;
        min-height: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 100;
        background: transparent;
    }
    .nav-logo {
        position: absolute;
        left: 5vw;
        top: 0.7rem;
        z-index: 120;
        margin: 0;
    }
    .hamburger {
        display: flex;
        position: absolute;
        right: 5vw;
        top: 0.7rem;
        z-index: 120;
        margin: 0;
    }
    .nav-links {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10,10,10,0.97);
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 2.5rem !important;
        z-index: 110;
        transition: opacity 0.3s;
        opacity: 0;
        pointer-events: none;
    }
    .nav.nav-open .nav-links {
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-link {
        font-size: 2rem !important;
        color: #fff !important;
        text-align: center;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0.7rem 0;
        width: 100%;
        transition: color 0.2s;
        display: block;
    }
    .nav-link:active,
    .nav-link:focus {
        color: var(--accent) !important;
        outline: none;
    }
    /* Remove conflicting 768px nav-links styles */
    @media (max-width: 768px) {
        .nav-links {
        display: none !important;
        flex-direction: column !important;
        gap: 2.5rem !important;
        background: none;
        position: static;
        width: auto;
        padding: 0;
        box-shadow: none;
        }
        .nav.nav-open .nav-links {
        display: flex !important;
        }
    }
}
        
        /* About Section */
        .about {
            padding: 10rem 5%;
            position: relative;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about-image {
            position: relative;
            height: 600px;
            overflow: hidden;
            transform: scale(0.9);
            opacity: 0;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 0.5s ease, transform 0.5s ease;
        }
        
        .about-image:hover img {
            filter: grayscale(0%);
            transform: scale(1.02);
        }
        
        .about-text h2 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 2rem;
            position: relative;
            transform: translateX(-50px);
            opacity: 0;
        }
        
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.8s ease 0.5s;
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-weight: 300;
            transform: translateX(-30px);
            opacity: 0;
        }
        
        /* Works Section */
        .works {
            padding: 5rem 5% 10rem;
        }
        
        .works-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 5rem;
        }
        
        .works-title {
            font-size: 3rem;
            font-weight: 300;
            transform: translateY(30px);
            opacity: 0;
        }
        
        .works-header a {
            transform: translateY(30px);
            opacity: 0;
        }
        
        .works-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .work-item {
            position: relative;
            height: 400px;
            overflow: hidden;
            transform: translateY(50px);
            opacity: 0;
        }
        
        .work-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .work-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .work-item:hover .work-overlay {
            opacity: 1;
        }
        
        .work-item:hover .work-image {
            transform: scale(1.05);
        }
        
        .work-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }
        
        .work-category {
            font-size: 0.875rem;
            color: var(--accent);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.2s;
        }
        
        .work-item:hover .work-title,
        .work-item:hover .work-category {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Footer */
        .footer {
            padding: 5rem 5%;
            background: #050505;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            transform: translateY(20px);
            opacity: 0;
        }
        
        .footer-about {
            font-weight: 300;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            transform: translateY(20px);
            opacity: 0;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            color: var(--secondary);
            font-size: 1.2rem;
            transition: color 0.3s ease, transform 0.3s ease;
            transform: translateY(10px);
            opacity: 0;
        }
        
        .social-link:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            transform: translateY(20px);
            opacity: 0;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
            transform: translateY(10px);
            opacity: 0;
        }
        
        .footer-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 300;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            margin-top: 5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(245, 245, 245, 0.1);
            text-align: center;
            font-weight: 300;
            font-size: 0.875rem;
            transform: translateY(20px);
            opacity: 0;
        }
        
        /* Animations */
        @keyframes bgPan {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .animate-in {
            animation: fadeInUp 1s ease forwards;
        }
        
        .animate-delay-1 {
            animation-delay: 0.2s;
        }
        
        .animate-delay-2 {
            animation-delay: 0.4s;
        }
        
        .animate-delay-3 {
            animation-delay: 0.6s;
        }
        
        .animate-delay-4 {
            animation-delay: 0.8s;
        }
        
        .animate-delay-5 {
            animation-delay: 1s;
        }
        
        /* Awwwards-Inspired Entrance Effect */
        .animate-initial {
          opacity: 0;
          transform: translateY(60px) scale(0.96) skewY(3deg);
          filter: blur(8px);
          transition: opacity 1.1s cubic-bezier(.77,0,.18,1),
                      transform 1.1s cubic-bezier(.77,0,.18,1),
                      filter 1.1s cubic-bezier(.77,0,.18,1);
        }
        .show-animate {
          opacity: 1 !important;
          transform: translateY(0) scale(1) skewY(0deg) !important;
          filter: blur(0) !important;
        }
        
        /* Scroll Reveal Animation */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(60px) scale(0.96) skewY(3deg);
            filter: blur(8px);
            transition: opacity 0.6s cubic-bezier(.77,0,.18,1),
                        transform 0.6s cubic-bezier(.77,0,.18,1),
                        filter 0.6s cubic-bezier(.77,0,.18,1);
        }
        .reveal-on-scroll.revealed {
            opacity: 1 !important;
            transform: translateY(0) scale(1) skewY(0deg) !important;
            filter: blur(0) !important;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                height: 400px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: flex !important;
                flex-direction: row !important;
                gap: 2rem !important;
                background: none;
                position: static;
                width: auto;
                padding: 0;
                box-shadow: none;
            }
            
            .hero-content {
                padding-top: 100px;
            }
            
            .works-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 900px) {
          .hero-content { 
            flex-direction: column !important; 
            gap: 2rem !important;
            align-items: center !important;
            text-align: center !important;
          }
        }
         .nav-link, .nav-logo, a, button, .work-item, .gallery-button, .social-link {
            cursor: pointer !important;
        }
        
        .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw;
        height: 100vh;
        z-index: 10;
        background: rgba(10,10,10,0.80);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s cubic-bezier(.77,0,.18,1);
      }
      .mobile-menu-overlay.open {
        display: flex;
        opacity: 1 !important;
        pointer-events: auto !important;
      }
      .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        color: var(--accent);
        background: none;
        border: none;
        font-size: 2.2rem;
        cursor: pointer;
        z-index: 210;
      }
      .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100vw;
      }
      .mobile-nav-link {
        color: var(--secondary);
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        letter-spacing: 0.04em;
        font-size: 2rem;
        transition: color 0.2s;
        text-decoration: none;
        outline: none;
        display: block;
        width: 100vw;
      }
      .mobile-nav-link.home-link {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--accent);
      }
      .mobile-nav-link:focus,
      .mobile-nav-link:hover {
        color: var(--accent);
      }
      @media (max-width: 600px) {
        .about-section { padding: 2rem 2vw; }
        .about-title { font-size: 2rem; }
        .about-img { width: 140px; height: 140px; }
      }

      .bouncing-arrow {
      animation: bounceArrow 1.5s infinite;
      opacity: 0;
      pointer-events: auto;
      transition: opacity 0.7s;
    }
    @keyframes bounceArrow {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(18px); }
    }
    .bouncing-arrow.visible { opacity: 1; }