
.intro-cold-open {
    background: #000;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 4% 60px 4% !important;
    overflow: hidden;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.film-grain {
    position: absolute;
    inset: 0;
    
    opacity: 0.03;
    pointer-events: none;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.slate-meta {
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.intro-big-title {
    font-size: clamp(38px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.gold-stroke {
    color: #fff;
}

.intro-text-block {
    max-width: 750px;
}

.sub-para {
    font-size: 17px;
    line-height: 1.7;
    color: #94a3b8;
}

.highlight {
    color: #D4AF37;
    font-weight: 500;
}

@media (max-width: 900px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
    }
    .slate-meta {
        display: none;
    }
    .intro-big-title { font-size: 42px; }
}

/* ==========================================================================
   PRODUCT DIVISION CANVAS GRID FRAME
   ========================================================================== */

.portfolio {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    padding: 60px 0 120px 0;
    background-color: #000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

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

/* ---------------- HYPER-LINK WRAPPED CARD BLOCKS ---------------- */
.product-card {
    width: 100%;
    position: relative;
    text-decoration: none;
    display: block;
}

.service-wrapper {
    width: 100%;
    height: 52vh;
    min-height: 420px;
    position: relative;
    background: #0a0a0a;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .service-wrapper {
    border-color: #D4AF37;
    transform: translateY(-4px);
}

/* ---------------- DYNAMIC GRAPHICS ENGINE ---------------- */
.tile-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .tile-media {
    transform: scale(1.03);
}

/* Elegant Contrast Gradient (Protects Product Visibility on the Right) */
.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(5, 5, 5, 1) 0%, 
        rgba(5, 5, 5, 0.95) 40%, 
        rgba(5, 5, 5, 0.4) 75%, 
        rgba(5, 5, 5, 0.15) 100%);
    z-index: 2;
}

/* CONTENT REAL ESTATE STRUCTURING */
.inner-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.content-side {
    max-width: 75%;
    text-align: left;
}

.category-tag {
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.content-side h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.15;
    margin: 0 0 20px 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* SUBCATEGORY TEXT BLOCK LIST */
.features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.features li {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features li::before {
    content: '';
    width: 6px;
    height: 1px;
    background: #D4AF37;
}

/* CLEAN EXECUTIVE CTA COMPONENT */
.service-cta-two {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4); 
    color: #D4AF37;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .service-cta-two {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

/* INTERACTIVE SPEC OVERLAY DRAWER SHEET */
.detail-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.detail-content.active-detail {
    opacity: 1;
    transform: translateY(0);
    z-index: 10; 
    pointer-events: all;
}

.detail-content h3 {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 600;
}

.detail-content hr {
    margin: 15px 0;
    border: none;
    height: 1px;
    background-color: rgba(212, 175, 55, 0.15);
}

.detail-content p.des {
    font-size: 14px;
    line-height: 1.65;
    color: #94a3b8;
}

.close-detail {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-detail:hover {
    background: #fff;
    color: #000;
}
