/* --- INTERIOR SERVICES PAGE STYLES --- */

.dark-editorial-hero {
    background-blend-mode: multiply;
}

.dark-editorial-hero::before {
    background: rgba(10, 5, 2, 0.75); /* Even darker tint for interior editorial feel */
}

.intro-strip {
    padding-top: 80px;
    padding-bottom: 80px;
}

.process-section {
    padding-top: 60px;
    padding-bottom: 100px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.process-step {
    border-top: 2px solid #E1D8C9;
    padding-top: 30px;
    position: relative;
}

.step-num {
    position: absolute;
    top: -24px;
    left: 0;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-style: italic;
    color: #A68A64;
    background: #FFFCF8; /* matches body background */
    padding-right: 15px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 15px;
}

.project-feature {
    border-top: 1px solid #333;
}

.featured-img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.consultation-strip {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
