/* Content Area */
        .content-area {
            flex: 1;
            padding: 3rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        /* Breadcrumb Navigation */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            color: #5A5A57;
        }

        .breadcrumb a {
            color: #C0735C;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #3E3D3A;
        }

        .breadcrumb-separator {
            color: #B8AFA4;
        }

        /* Project Header */
        .project-header {
            margin-bottom: 3rem;
        }

        .project-category {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #C0735C;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .project-title {
            font-size: 3.5rem;
            font-weight: 300;
            color: #3E3D3A;
            margin-bottom: 1.5rem;
            letter-spacing: 0.01em;
            line-height: 1.2;
        }

        .project-intro {
            font-size: 1.25rem;
            color: #5A5A57;
            line-height: 1.7;
            max-width: 900px;
        }
        /* Project Meta Info */
        .project-meta {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
            padding: 2.5rem;
            background: rgba(232, 227, 219, 0.7);
            border-radius: 4px;
            border: 1px solid rgba(0,0,0,0.06);
        }

        .meta-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .meta-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #8B7355;
            font-weight: 600;
        }

        .meta-value {
            font-size: 1.1rem;
            color: #3E3D3A;
            font-weight: 400;
        }

        /* Hero Image */
        .hero-image {
            width: 100%;
            height: 600px;
            background-size: cover;
            background-position: center;
            border-radius: 4px;
            margin-bottom: 3rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1) 100%);
        }
        /* Project Content Sections */
        .project-section {
            margin: 4rem 0;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 400;
            color: #3E3D3A;
            margin-bottom: 1.5rem;
            letter-spacing: 0.01em;
        }

        .section-content {
            font-size: 1.1rem;
            color: #5A5A57;
            line-height: 1.8;
            max-width: 900px;
        }

        .section-content p {
            margin-bottom: 1.5rem;
        }
        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }

        .gallery-item {
            position: relative;
            height: 400px;
            background-size: cover;
            background-position: center;
            border-radius: 4px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .gallery-item.full-width {
            grid-column: 1 / -1;
            height: 500px;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: #F5F3F0;
            font-size: 0.95rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        /* Design Feature Highlights */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            padding: 2rem;
            background: rgba(232, 227, 219, 0.6);
            border-radius: 4px;
            border: 1px solid rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(232, 227, 219, 0.9);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 1.5rem;
            stroke: #C0735C;
            fill: none;
            stroke-width: 1.5;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 400;
            color: #3E3D3A;
            margin-bottom: 1rem;
        }

        .feature-description {
            font-size: 1rem;
            color: #5A5A57;
            line-height: 1.6;
        }

        /* Tags */
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 3rem 0;
        }

        .project-tag {
            padding: 0.6rem 1.2rem;
            background: rgba(192, 115, 92, 0.1);
            border: 1px solid rgba(192, 115, 92, 0.2);
            border-radius: 2px;
            font-size: 0.95rem;
            color: #3E3D3A;
            transition: all 0.3s ease;
        }

        .project-tag:hover {
            background: rgba(192, 115, 92, 0.2);
            border-color: rgba(192, 115, 92, 0.4);
        }

        /* CTA Section */
        .cta-section {
            margin: 5rem 0 3rem;
            padding: 4rem 3rem;
            background: rgba(192, 115, 92, 0.15);
            border-radius: 4px;
            border: 1px solid rgba(192, 115, 92, 0.2);
            text-align: center;
        }

        .cta-title {
            font-size: 2rem;
            font-weight: 400;
            color: #3E3D3A;
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.15rem;
            color: #5A5A57;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-family: Georgia, serif;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button.primary {
            background: #C0735C;
            color: #F5F3F0;
            box-shadow: 0 4px 12px rgba(192, 115, 92, 0.3);
        }

        .cta-button.primary:hover {
            background: #A55E47;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(192, 115, 92, 0.4);
        }

        .cta-button.secondary {
            background: rgba(232, 227, 219, 0.9);
            color: #3E3D3A;
            border: 1px solid rgba(0,0,0,0.1);
        }

        .cta-button.secondary:hover {
            background: rgba(232, 227, 219, 1);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .project-title {
                font-size: 2rem;
            }

            .project-intro {
                font-size: 1.1rem;
            }
            .project-meta {
                grid-template-columns: 1fr;
                padding: 1.5rem;
                gap: 1.5rem;
            }
            .hero-image {
                height: 300px;
            }
            .image-gallery {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .gallery-item,
            .gallery-item.full-width {
                height: 300px;
            }

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

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

            .cta-section {
                padding: 2.5rem 1.5rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-button {
                width: 100%;
            }
        }