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

        :root {
            --eggshell: #FBF9F6;
            --dark-gray: #1C1C1C;
            --medium-gray: #6B6B6B;
            --light-gray: #E5E5E5;
            --accent-color: #FF6B35;
        }
        
        html {
            font-size: clamp(16px, 1.2vw, 20px);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background-color: var(--eggshell);
            color: var(--dark-gray);
            line-height: 1.5;
            overflow-x: hidden;
            font-size: 1rem;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--eggshell);
            z-index: 50;
            padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 4vw, 3rem);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--light-gray);
            transition: opacity 0.3s ease;
        }

        header.scrolled {
            opacity: 0.8;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 75rem;
            margin: 0 auto;
            width: 100%;
        }

        .logo {
            font-size: clamp(1.25rem, 2.5vw, 1.5rem);
            font-weight: 600;
            color: var(--dark-gray);
            text-decoration: none;
        }

        .language-switch {
            font-size: clamp(1rem, 1.5vw, 1.125rem);
            font-weight: 500;
            color: var(--dark-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .language-switch:hover,
        .language-switch:focus {
            color: var(--accent-color);
            outline: none;
            transform: translateY(-1px);
        }

        /* Main Content */
        main {
            margin-top: clamp(4rem, 6vw, 6rem);
            padding: 0 clamp(1rem, 4vw, 3rem);
        }

        .container {
            max-width: 75rem;
            margin: 0 auto;
        }

        /* Main Content */
        main {
            margin-top: clamp(4rem, 6vw, 6rem);
        }

        .container {
            max-width: 75rem;
            margin: 0 auto;
            padding: 0 clamp(1rem, 4vw, 3rem);
        }

        /* Hero Section */
        .project-hero {
            position: relative;
            width: 100vw;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            height: 100vh;
            aspect-ratio: 1/1;
            background: linear-gradient(135deg, var(--accent-color), #FF8A65);
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            background-size: cover;
            background-position: center
        }

        .hero-title {
            position: relative;
            z-index: 3;
            color: white;
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.2;
            padding: clamp(2rem, 4vw, 4rem);
            max-width: 50%;
        }

        /* Tags Section */
        .project-tags {
            padding: clamp(2rem, 4vw, 4rem) 0;
        }

        .tags-container {
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: clamp(0.5rem, 1vw, 1rem);
        }

        .project-tag {
            background: var(--light-gray);
            color: var(--dark-gray);
            padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
            border-radius: 0.5rem;
            font-size: clamp(0.875rem, 1.25vw, 1rem);
            font-weight: 500;
        }

        /* Intro Section */
        .project-intro {
            padding: clamp(2rem, 4vw, 4rem) 0;
        }

        .intro-text {
            font-size: clamp(1.25rem, 2.5vw, 2rem);
            line-height: 1.4;
            max-width: 50rem;
            margin: 0 auto;
            text-align: center;
        }

        .intro-first-sentence {
            font-weight: 700;
        }

        .intro-rest {
            font-weight: 400;
        }

        /* Image Gallery */
        .image-gallery {
            padding: clamp(3rem, 6vw, 6rem) 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(20rem, 40vw, 30rem), 1fr));
            gap: clamp(1rem, 2vw, 2rem);
            margin-bottom: clamp(2rem, 4vw, 4rem);
        }

        .gallery-item {
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, var(--medium-gray), var(--dark-gray));
            border-radius: 0.5rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--eggshell);
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 600;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Process Section */
        .process-section {
            padding: clamp(3rem, 6vw, 6rem) 0;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: clamp(3rem, 6vw, 5rem);
            background: linear-gradient(to bottom, #8B5CF6, #EC4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .process-flow {
            max-width: 40rem;
            margin: 0 auto;
        }

        .process-step {
            position: relative;
            padding: clamp(1.5rem, 3vw, 2rem) 0;
            margin-bottom: clamp(1rem, 2vw, 2rem);
        }

        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 1.5rem;
            bottom: -1rem;
            width: 2px;
            height: clamp(1rem, 2vw, 2rem);
            background: linear-gradient(to bottom, #8B5CF6, #EC4899);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            background: linear-gradient(to bottom, #8B5CF6, #EC4899);
            color: white;
            border-radius: 50%;
            font-weight: 700;
            font-size: 1.125rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark-gray);
        }

        .step-description {
            color: var(--medium-gray);
            font-size: clamp(0.875rem, 1.25vw, 1rem);
            line-height: 1.6;
        }

        .process-step-wrapper {
            display: flex;
            align-items: flex-start;
        }

        /* Final Gallery */
        .final-gallery {
            padding: clamp(3rem, 6vw, 6rem) 0;
        }

        .final-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(clamp(18rem, 30vw, 25rem), 1fr));
            gap: clamp(1.5rem, 3vw, 3rem);
        }

        .final-gallery-item {
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--medium-gray), var(--dark-gray));
            border-radius: 0.5rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--eggshell);
            font-size: clamp(1rem, 2vw, 1.25rem);
            font-weight: 600;
            background-size: cover
        }

        .final-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive Design */
        @media (max-width: 48rem) {
            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }
        }

        @media (min-width: 48rem) {
            .project-hero {
                aspect-ratio: 16/9;
                height: 70vh;
            }
        }

        @media (max-width: 48rem) {
            .hero-title {
                max-width: 80%;
            }
            
            .intro-text {
                text-align: left;
            }
        }

        /* Focus indicators */
        *:focus {
            outline: 2px solid #8B5CF6;
            outline-offset: 2px;
        }

        /* Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .stagger-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Initial hidden states */
        .project-tags .container,
        .project-intro .container,
        .image-gallery .gallery-grid,
        .process-section .section-title,
        .process-step,
        .final-gallery .section-title,
        .final-gallery .final-gallery-grid {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .project-tag,
        .gallery-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            background-size: cover
        }

        .final-gallery-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .final-gallery-item.animate {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--eggshell);
            padding: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 2vw, 2rem);
            text-align: center;
        }

        .footer-content {
            max-width: 75rem;
            margin: 0 auto;
            font-size: clamp(0.875rem, 1.125vw, 1rem);
        }

        /* Animated states */
        .project-tags .container.animate,
        .project-intro .container.animate,
        .image-gallery .gallery-grid.animate,
        .process-section .section-title.animate,
        .process-step.animate,
        .final-gallery .section-title.animate,
        .final-gallery .final-gallery-grid.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .project-tag.animate,
        .gallery-item.animate,
        .final-gallery-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            .project-tags .container,
            .project-intro .container,
            .image-gallery .gallery-grid,
            .process-section .section-title,
            .process-step,
            .final-gallery .section-title,
            .final-gallery-grid,
            .project-tag,
            .gallery-item,
            .final-gallery-item {
                opacity: 1 !important;
                transform: translateY(0) !important;
            }
        }
    