.studio-aura {
    padding: 120px 8%;
    background: var(--cream);
    overflow: hidden;
}

.studio-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
}

.studio-text {
    flex: 1;
    max-width: 520px;
}

.studio-text .eyebrow {
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.studio-text .section-title {
    font-size: clamp(20px, 6vw, 50px);
    line-height: 0.95;
    margin-bottom: 28px;
}

.studio-text .section-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 40px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    background: var(--maroon-main);
    color: var(--off-white);
    border-radius: 999px;
    border: 1px solid var(--maroon-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 18px 35px rgba(122, 28, 42, 0.14);
}

.btn-contact:hover {
    background: var(--maroon-deep);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(74, 13, 23, 0.22);
}

/* Collage */
.studio-collage {
    position: relative;
    width: 400px;
    height: 460px;
    flex-shrink: 0;
}

.studio-collage .collage-item {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 25px 50px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.45s ease, box-shadow 0.45s ease, z-index 0.2s ease;
}

.studio-collage .collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

.studio-collage .collage-item.main {
    width: 240px;
    height: 320px;
    left: 60px;
    top: 70px;
}

.studio-collage .collage-item.overlay {
    width: 165px;
    height: 210px;
    top: 0;
    right: 0;
}

.studio-collage .collage-item.accent {
    width: 130px;
    height: 165px;
    left: 0;
    bottom: 10px;
}

.studio-collage .collage-item.floating {
    width: 115px;
    height: 140px;
    right: 25px;
    bottom: 65px;
}

.studio-collage .collage-item:hover {
    transform: scale(1.04) translateY(-4px);
}

.studio-collage .collage-item.active {
    transform: scale(1.22);
    z-index: 20;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18), 0 40px 80px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 1024px) {
    .studio-container {
        flex-direction: column;
        text-align: center;
        gap: 70px;
    }
    .studio-text {
        max-width: 700px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .studio-text .section-description {
        max-width: 600px;
    }
    .studio-collage {
        width: 320px;
        height: 380px;
    }
    .studio-collage .collage-item.main {
        width: 200px; height: 260px;
    }
    .studio-collage .collage-item.overlay {
        width: 135px; height: 170px;
    }
    .studio-collage .collage-item.accent {
        width: 105px; height: 135px;
    }
    .studio-collage .collage-item.floating {
        width: 90px; height: 110px;
    }
}

@media (max-width: 768px) {
    .studio-aura {
        padding: 90px 6%;
    }
    .studio-text .section-title {
        font-size: 54px;
    }
    .studio-collage {
        width: 280px;
        height: 340px;
    }
    .studio-collage .collage-item.main {
        width: 180px; height: 230px; left: 45px;
    }
    .studio-collage .collage-item.overlay {
        width: 120px; height: 150px;
    }
    .studio-collage .collage-item.accent {
        width: 95px; height: 120px;
    }
    .studio-collage .collage-item.floating {
        width: 80px; height: 100px;
    }
}