/* ═══════════════════════════════════════════════════════
   Component: Image Collage — Split with depth stack
   ═══════════════════════════════════════════════════════ */

.dc-split {
    padding: 16vh 0;
}

.dc-split__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: center;
}

.dc-copy h2 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    margin-bottom: 20px;
}

.dc-copy p + p {
    margin-top: 14px;
}

.dc-image-stack {
    position: relative;
    min-height: 760px;
}

.dc-stack-card {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #e8e5e0;
}

.dc-stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-stack-card--a {
    width: min(64%, 430px);
    height: 560px;
    top: 0;
    left: 0;
}

.dc-stack-card--b {
    width: min(52%, 330px);
    height: 380px;
    top: 120px;
    right: 0;
}

.dc-stack-card--c {
    width: min(48%, 280px);
    height: 250px;
    bottom: 0;
    left: 80px;
}

.dc-info-badge {
    position: absolute;
    left: 38px;
    bottom: 34px;
    z-index: 4;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 240px;
}

.dc-info-badge strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.98rem;
}

.dc-info-badge span {
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.9rem;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 1080px) {
    .dc-split__grid {
        grid-template-columns: 1fr;
    }

    .dc-image-stack {
        min-height: 680px;
    }
}

@media (max-width: 780px) {
    .dc-copy h2 {
        max-width: none;
    }

    .dc-image-stack {
        min-height: 560px;
    }

    .dc-stack-card--a {
        width: 70%;
        height: 380px;
    }

    .dc-stack-card--b {
        width: 52%;
        height: 240px;
        top: 90px;
    }

    .dc-stack-card--c {
        width: 48%;
        height: 180px;
        left: 30px;
    }
}
