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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: #2c2c2c;
            background-color: #fafafa;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo .geometric {
            width: 45px;
            height: 32px;
            position: relative;
        }

        .logo .arch1 {
            position: absolute;
            width: 28px;
            height: 16px;
            border: 2.5px solid #8b4513;
            border-bottom: none;
            border-radius: 28px 28px 0 0;
            top: 12px;
            left: 0;
        }

        .logo .arch2 {
            position: absolute;
            width: 20px;
            height: 12px;
            border: 2px solid #d2691e;
            border-bottom: none;
            border-radius: 20px 20px 0 0;
            top: 10px;
            right: 0;
        }

        .logo .text {
            font-family: 'Georgia', serif;
            font-size: 1.2rem;
            color: #2c2c2c;
            letter-spacing: 0.5px;
        }

        .logo .text .highlight {
            color: #8b4513;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c2c2c;
            font-weight: 400;
            transition: color 0.3s ease;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            color: #8b4513;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            color: #2c2c2c;
            letter-spacing: 2px;
        }

        .hero .subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background-color: #8b4513;
            color: white;
            text-decoration: none;
            border-radius: 2px;
            transition: all 0.3s ease;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .cta-button:hover {
            background-color: #a0522d;
            transform: translateY(-2px);
        }

        /* Portfolio Grid */
        .portfolio {
            padding: 5rem 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 3rem;
            color: #2c2c2c;
            letter-spacing: 1px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }

        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .portfolio-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.05);
        }

        .portfolio-info {
            padding: 1.5rem;
            text-align: center;
        }

        .portfolio-info h3 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #2c2c2c;
        }

        .portfolio-info p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* About Section */
        .about {
            background: white;
            padding: 5rem 0;
        }

        .about-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding: 0 2rem;
        }

        .about-text h2 {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 2rem;
            color: #2c2c2c;
            letter-spacing: 1px;
        }

        .about-text p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 4px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        /* Contact Section */
        .contact {
            background: #f8f8f8;
            padding: 5rem 0;
            text-align: center;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact h2 {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 2rem;
            color: #2c2c2c;
            letter-spacing: 1px;
        }

        .contact p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-item a {
            color: #8b4513;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #a0522d;
        }

        /* Footer */
        footer {
            background: #2c2c2c;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        footer p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .logo .text {
                font-size: 1rem;
            }

            .logo .geometric {
                width: 35px;
                height: 25px;
            }

            .logo .arch1 {
                width: 22px;
                height: 12px;
                border-width: 2px;
                top: 10px;
            }

            .logo .arch2 {
                width: 16px;
                height: 9px;
                border-width: 1.5px;
                top: 8px;
            }

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

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

            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation for images */
        .portfolio-item img {
            opacity: 0;
            animation: fadeIn 0.5s ease-in-out forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }