
        /* Craftsmanship Section */
        .craftsmanship {
            padding: 100px 8%;
            background: var(--neutral);
        }

        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 60px;
        }

        .craft-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .craft-card {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .craft-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        /* Materials Section */
        .materials {
            padding: 100px 8%;
            background: white;
        }

        .material-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .material-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 400px;
        }

        .material-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.3s;
        }

        .material-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            background: rgba(255, 255, 255, 0.9);
        }

        /* Process Section */
        .process {
            padding: 100px 8%;
            background: var(--neutral);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        .process-step {
            flex: 1;
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: rgb(0, 0, 0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 8%;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .cta-button {
            background: var(--accent);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .cta-button:hover {
            background: #C08A4B;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .process-steps,
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }