  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: rgb(250, 249, 246);
            color: #1f1f1d;
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.3s linear;
        }

        .hero { margin-bottom: 100px; display: flex; justify-content: space-between; align-items: center; gap: 60px; }

        /* Navigation */
        .navigation { position: fixed; top: 20px; left: 0; right: 0; z-index: 1000; display: flex; justify-content: center; transition: transform 0.3s ease; }
        .navigation > div { background: rgba(248, 248, 248, 0.75); backdrop-filter: blur(50px) saturate(180%); -webkit-backdrop-filter: blur(50px) saturate(180%); border-radius: 40px; padding: 10px 20px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); border: 3px solid rgba(255, 255, 255, 0.8); display: flex; align-items: center; gap: 20px; }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-size: 15px;
            font-weight: 400;
            transition: all 0.3s ease;
            padding: 12px 18px;
            border-radius: 20px;
            position: relative;
        }
        .nav-link:hover {
            background: rgba(0, 0, 0, 0.06);
            color: #000;
        }
        .nav-link:first-child {
            font-weight: 500;
        }
        .nav-link:first-child:hover {
            background: transparent;
        }
        .nav-link.active {
            color: #000;
            font-weight: 600;
        }
        
        .nav-link.active:hover {
            color: #000;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 20px 80px;
        }

        /* Hero Section */
        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
            margin-bottom: 100px;
        }

        .profile-image-container {
            position: relative;
        }

        .profile-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 8px;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .profile-image:hover {
            filter: grayscale(0%);
        }

        .hero-content {
            padding-top: 40px;
            max-width: 600px;
        }

        .martina { flex-shrink: 0; padding-top: 40px; }
        .martina img { width: 350px; height: 350px; border-radius: 50%; object-fit: cover; filter: grayscale(100%); transition: filter 0.3s ease; }

        .hero-title {
            font-family: 'Archivo', sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 900;
            letter-spacing: 0.02em;
            line-height: 1;
            margin-bottom: 30px;
            color: #1f1f1d;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 300;
            color: #666;
            margin-bottom: 30px;
        }

        .hero-description {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #1f1f1d;
            margin-bottom: 20px;
        }

        /* Content Sections */
        .content-section {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .section-label {
            font-family: 'Archivo', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #666;
        }

        /* Experience */
        .experience-item {
            border-bottom: 1px solid rgba(31, 31, 29, 0.1);
            padding-bottom: 25px;
            margin-bottom: 25px;
        }

        .experience-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 8px;
        }

        .experience-title {
            font-family: 'Archivo', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #1f1f1d;
        }

        .experience-date {
            font-size: 0.875rem;
            color: #666;
        }

        .experience-company {
            font-size: 1rem;
            color: #666;
            margin-bottom: 8px;
        }

        .experience-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #1f1f1d;
        }

        .experience-description ul { list-style: none; padding-left: 0; margin: 0; }
        .experience-description ul li { margin-bottom: 10px; padding-left: 20px; position: relative; }
        .experience-description ul li span { position: absolute; left: 0; color: #6b3c5a; }


        /* Skills Grid */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .skill-card {
            padding: 25px;
            background: rgba(248, 248, 248, 0.75);
            backdrop-filter: blur(50px) saturate(180%);
            -webkit-backdrop-filter: blur(50px) saturate(180%);
            border-radius: 20px;
            border: 3px solid rgba(255, 255, 255, 0.8);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        
        .skill-card:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.85);
        }

        .skill-title {
            font-family: 'Archivo', sans-serif;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
            color: #666;
        }

        .skill-list {
            list-style: none;
            padding: 0;
        }

        .skill-list li {
            padding: 4px 0;
            font-size: 1rem;
            color: #1f1f1d;
        }

        /* Contact Section */
        .contact-section {
            margin-top: 100px;
            padding-top: 60px;
            border-top: 1px solid rgba(31, 31, 29, 0.1);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .contact-card {
            display: block;
            padding: 25px;
            background: rgba(248, 248, 248, 0.75);
            backdrop-filter: blur(50px) saturate(180%);
            -webkit-backdrop-filter: blur(50px) saturate(180%);
            border-radius: 20px;
            text-decoration: none;
            color: #1f1f1d;
            transition: transform 0.3s ease, background 0.3s ease;
            border: 3px solid rgba(255, 255, 255, 0.8);
        }

        .contact-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.85);
        }

        .contact-label {
            font-size: 0.875rem;
            color: #666;
            margin-bottom: 8px;
        }

        .contact-value {
            font-family: 'Archivo', sans-serif;
            font-size: 1.125rem;
            font-weight: 600;
        }


  /* Hero Work Section */
        .hero-work-section {
            margin-top: 100px;
            padding: 80px 40px 120px;
            text-align: center;
        }
        
        .hero-work-section .hero-title {
            font-size: 4rem;
            font-weight: 700;
            color: #141413;
            margin-bottom: 20px;
            letter-spacing: -2px;
        }
        
        .hero-work-section .hero-subtitle {
            font-size: 1.25rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Work Grid */
        .work-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px 100px;
        }
        
        .work-grid {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: -200px;
        }
        
        /* OpenLimo - Full Width Featured Card */
        .featured-card {
            width: 100%;
            z-index: 2;
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .featured-card .case-study-card {
            width: 100%;
            max-width: 1000px;
        }
        
        /* HR Project - Stacked Card */
        .stacked-card {
            width: 100%;
            margin: -20vh 0 0 0;
            z-index: 3;
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card1, .card2, .card3 { text-decoration: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
        /* Container to add space after stacked card */
        .work-grid::after {
            content: '';
            display: block;
            height: 100vh;
        }
        
        .stacked-card .case-study-card {
            width: 90%;
            max-width: 1000px;
            transform: translateY(200px);
            opacity: 0.95;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .stacked-card.active .case-study-card {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Case Study Card */
        .case-study-card {
            background: #ffffff;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .case-study-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
        }
        
        /* Enhanced stacking effect on hover */
        .stacked-card .case-study-card:hover {
            transform: translateY(-16px);
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
        }
        
        /* Wiggle animation */
        @keyframes wiggle {
            0%, 100% { transform: translateY(-10px) translateX(0); }
            25% { transform: translateY(-10px) translateX(-3px); }
            75% { transform: translateY(-10px) translateX(3px); }
        }
        
        .card-image-container {
            position: relative;
            min-height: 500px;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .case-study-card:hover .card-image {
            transform: scale(1.05);
        }
        
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .case-study-card:hover .card-overlay {
            opacity: 1;
        }
        
        .card-content {
            padding: 60px;
        }
        
        .card-category {
            color: #666666;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }
        
        .card-title {
            font-size: 2rem;
            font-weight: 700;
            color: #141413;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .card-description {
            font-size: 1.125rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 24px;
        }
        
        .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }
        
        .tag {
            padding: 6px 14px;
            background: #f5f5f5;
            border-radius: 20px;
            font-size: 0.875rem;
            color: #666;
        }
        
        .card-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #000;
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-top: 24px;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }
        
        .card-cta:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }
        
        .arrow-icon {
            transition: transform 0.3s ease;
            width: 16px;
            height: 16px;
        }
        
        .card-cta:hover .arrow-icon {
            transform: translateX(4px);
        }
        
        /* Coming Soon Cards */
        .coming-soon-card {
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            border-radius: 20px;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .coming-soon-content {
            text-align: center;
            z-index: 1;
        }
        
        .coming-soon-title {
            font-size: 1.5rem;
            color: #999;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .coming-soon-subtitle {
            font-size: 1rem;
            color: #aaa;
        }
        
        .coming-soon-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
            background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0,0,0,.05) 35px, rgba(0,0,0,.05) 70px);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .work-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .card-title {
                font-size: 1.5rem;
            }
            
            .nav-container {
                padding: 15px 20px;
            }
            
            .work-container {
                padding: 0 20px 60px;
            }
        }


        /* Responsive */
        @media (max-width: 900px) {
            .hero-flex {
                flex-direction: column !important;
                text-align: center;
            }
            
            .hero-image {
                width: 250px !important;
                height: 250px !important;
            }
        }
        
        @media (max-width: 810px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .content-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-label {
                margin-bottom: 20px;
            }

            .experience-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .experience-date {
                margin-top: 5px;
            }
        }

        @media (max-width: 480px) {
            .hero { flex-direction: column; gap: 0px; }
            .hero-description { font-size: 1em; }
            .navigation > div { line-height: 1em; gap: 0px; }
            .contact-section { margin-top: 60px; }
            .nav-link { text-align: center; font-size: 14px; }
            .container {
                padding: 80px 20px 60px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.25rem;
            }

            .case-study-card { display: flex; flex-direction: column; }

            .skills-grid {
                grid-template-columns: 1fr;
            }


            .card-image-container { min-height: 250px; }
            .card-content { padding: 30px; }



              .work-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 24px;
              }

              .featured-card,
              .stacked-card {
                width: 100%;
                transform: none !important;  /* kill leftover scaling differences */
                opacity: 1 !important;
              }

              .stacked-card { width: calc(100% + 40px); margin-left: -20px; }

              .case-study-card {
                width: 100%;
                display: flex;
                flex-direction: column;
                min-height: 0;              /* remove any desktop min-height rules */
              }

              /* 2) Force equal image area height */
              .card-image-container {
                height: auto !important;
                min-height: 220px;          /* pick a value that matches your design */
                padding: 16px !important;   /* same padding for all */
              }

              /* 3) Normalize the inner mockup wrapper sizes */
              .card-image-container > div {
                width: 92% !important;
                max-width: 760px !important;
                margin: 0 auto;
              } 


              .hero-work-section { padding: 40px 40px 140px; }


        }