
        :root {
            --color-stone: #aac4a8;
            --color-bronze: #B8956A;
            --color-charcoal: #1A1A1A;
            --color-warm-white: #F8F6F3;
            --color-deep-charcoal: #2D2D2D;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-warm-white);
            color: var(--color-charcoal);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        
        h1, h2, h3, .font-display { font-family: 'Playfair Display', serif; }
        
        /* Glassmorphism Navigation */
        .glass-nav {
            background: rgba(248, 246, 243, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(184, 149, 106, 0.1);
            transition: all 0.4s ease;
        }
        
        .glass-nav.scrolled {
            background: rgba(26, 26, 26, 0.85);
            backdrop-filter: blur(25px);
            border-bottom: 1px solid rgba(184, 149, 106, 0.2);
        }
        
        .glass-nav.scrolled .nav-link,
        .glass-nav.scrolled .logo-text,
        .glass-nav.scrolled .lang-btn { color: var(--color-warm-white); }
        
        .glass-nav.scrolled .logo-accent { color: var(--color-bronze); }
        
        /* Hero Slider */
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }
        
        .hero-slide.active { opacity: 1; }
        
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
            transition: transform 8s ease-out;
        }
        
        .hero-slide.active img { transform: scale(1); }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(26,26,26,0.2) 0%, rgba(26,26,26,0.4) 50%, rgba(26,26,26,0.7) 100%);
        }
        
        .slide-content {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease-out 0.3s;
        }
        
        .hero-slide.active .slide-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Custom Cursor */
        .custom-cursor {
            width: 20px;
            height: 20px;
            border: 1px solid var(--color-bronze);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease, opacity 0.15s ease;
            mix-blend-mode: difference;
        }
        
        .custom-cursor.hover {
            transform: scale(2.5);
            background: rgba(184, 149, 106, 0.1);
        }
        
        /* Project Cards */
        .project-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .project-card img {
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .project-card:hover img { transform: scale(1.08); }
        
        .project-card .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26,26,26,0.8) 0%, transparent 60%);
            opacity: 0.6;
            transition: opacity 0.4s ease;
        }
        
        .project-card:hover .card-overlay { opacity: 0.9; }
        
        .project-card .card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .project-card:hover .card-content {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Status Labels */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        .status-completed {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            color: rgb(56, 47, 47);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .status-ongoing {
            background: rgba(184, 149, 106, 0.2);
            backdrop-filter: blur(10px);
            color: rgb(56, 47, 47);
            border: 1px solid rgba(184, 149, 106, 0.3);
        }
        
        .status-upcoming {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            color: rgb(56, 47, 47);
            border: 1px solid rgba(255,255,255,0.15);
        }
        
        .pulse-dot {
            width: 6px;
            height: 6px;
            background: rgb(56, 47, 47);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }
        
        /* Buttons */
        .btn-primary {
            position: relative;
            overflow: hidden;
            background: transparent;
            border: 1px solid var(--color-bronze);
            color: var(--color-bronze);
            padding: 1rem 2.5rem;
            font-size: 0.875rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 400;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--color-bronze);
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .btn-primary:hover {
            color: white;
            border-color: var(--color-bronze);
        }
        
        .btn-primary:hover::before { left: 0; }
        
        .btn-light {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 1rem 2.5rem;
            font-size: 0.875rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 400;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn-light:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.5);
        }
        
        /* Form Styling */
        .form-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(26,26,26,0.2);
            padding: 1rem 0;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--color-charcoal);
            transition: border-color 0.3s ease;
            outline: none;
        }
        
        .form-input:focus { border-bottom-color: var(--color-bronze); }
        
        .form-input::placeholder {
            color: rgba(26,26,26,0.4);
            font-weight: 300;
        }
        
        /* Modal */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(26,26,26,0.9);
            backdrop-filter: blur(10px);
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        
        .modal-backdrop.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .modal-content {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.95);
            width: 90%;
            max-width: 1000px;
            max-height: 90vh;
            background: var(--color-warm-white);
            overflow-y: auto;
            z-index: 101;
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .modal-backdrop.active + .modal-content,
        .modal-content.active {
            opacity: 1;
            pointer-events: all;
            transform: translate(-50%, -50%) scale(1);
        }
        
        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .gallery-grid img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .gallery-grid img:hover { transform: scale(1.02); }
        
        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
        }
        
        /* Navigation Link Hover */
        .nav-link {
            position: relative;
            color: var(--color-charcoal);
            text-decoration: none;
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 400;
            transition: color 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--color-bronze);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after { width: 100%; }
        
        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 10;
        }
        
        .slider-dot {
            width: 50px;
            height: 5px;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .slider-dot.active { background: var(--color-bronze); }
        
        .slider-dot::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--color-bronze);
            transition: width 0.3s ease;
        }
        
        .slider-dot.active::after { width: 100%; }
        
        /* Feature Tags */
        .feature-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: rgba(26,26,26,0.03);
            border: 1px solid rgba(26,26,26,0.08);
            font-size: 0.875rem;
            color: var(--color-charcoal);
            transition: all 0.3s ease;
        }
        
        .feature-tag:hover {
            background: rgba(184, 149, 106, 0.1);
            border-color: var(--color-bronze);
        }
        
        /* Language Switcher */
        .lang-btn {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            color: var(--color-charcoal);
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            transition: color 0.3s ease;
        }
        
        .lang-btn.active {
            color: var(--color-bronze);
            font-weight: 600;
        }
        
        /* Smooth scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--color-warm-white); }
        ::-webkit-scrollbar-thumb {
            background: var(--color-stone);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover { background: var(--color-bronze); }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(26,26,26,0.98);
            backdrop-filter: blur(20px);
            z-index: 99;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        
        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .mobile-menu a {
            color: white;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            text-decoration: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }
        
        .mobile-menu.active a {
            opacity: 1;
            transform: translateY(0);
        }
        
        .mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
        
        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 100;
        }
        
        .hamburger span {
            display: block;
            width: 24px;
            height: 1.5px;
            background: var(--color-charcoal);
            transition: all 0.3s ease;
        }
        
        .glass-nav.scrolled .hamburger span { background: white; }
        
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .desktop-nav { display: none; }
            .gallery-grid { grid-template-columns: 1fr; }
            .hero-slide .slide-content h1 { font-size: 2.5rem !important; }
        }
        
        /* Parallax effect */
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        @media (max-width: 768px) {
            .parallax-bg { background-attachment: scroll; }
        }
