/* --- BRAND STATEMENT STRIP --- */
.brand-statement-strip {
    background-color: #2D1A11; /* Deep Mahogany base */
    color: #E6D5C3;
    padding: 60px 20px;
}

.brand-statement-strip h2 {
    color: #E6D5C3;
    font-size: 32px;
    font-style: italic;
    margin: 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* --- SIGNATURE PIECES (PRODUCTS) --- */
.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-title {
    font-size: 20px;
}

.product-title a {
    color: #3A2318;
}
.product-title a:hover {
    color: #A68A64;
}

.link-arrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #3A2318;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #3A2318;
    padding-bottom: 3px;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: #A68A64;
    border-color: #A68A64;
}

.link-arrow.light {
    color: #E6D5C3;
    border-color: #E6D5C3;
}
.link-arrow.light:hover {
    color: #fff;
    border-color: #fff;
}

/* --- CREDENTIALS STRIP --- */
.credentials-strip {
    border-top: 1px solid #E1D8C9;
    border-bottom: 1px solid #E1D8C9;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    text-align: center;
}

.credential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.cred-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #5E3D2A;
    font-style: italic;
    line-height: 1;
    margin-bottom: 15px;
}

.cred-text {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    line-height: 1.6;
}

/* --- WHAT MAKES A MASTERPIECE --- */
.craft-standards-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.standard-box h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.standard-box p {
    font-size: 16px;
    color: #666;
}

/* --- INTERIOR PROJECTS (DARK EDITORIAL) --- */
.dark-editorial {
    background-color: #1A1A1A;
    color: #fff;
    background-image: url('https://mahoganymasterpieces.com/wp-content/uploads/2026/03/KPC09564-HDR-1-1024x683.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 120px 20px;
}

.dark-editorial h2 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;
}

.dark-editorial .intro-text {
    color: #ddd;
}

.dark-editorial .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

/* --- FURNITURE SPA & EXPORT --- */
.furniture-spa-feature {
    border-bottom: 1px solid #E1D8C9;
}
.export-feature {
    padding-bottom: 100px;
}

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

@media (max-width: 768px) {
    .brand-statement-strip h2 {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .dark-editorial .cta-buttons {
        flex-direction: column;
    }
}
