/* =========================================================
   DEPTH STRIP (3 images + moving text)
   ========================================================= */

.depth-strip {
    background: #f6f1ee;
    padding: 140px 0 160px;
    overflow: hidden;
}


/* Top media area */

.depth-strip__media {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}


/* Moving text layer */

.depth-strip__moving {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    width: 120%;
    overflow: visible;
}

.depth-strip__moving-text {
    display: inline-block;
    font-family: "Roslindale", serif;
    font-weight: 400;
    font-size: 180px;
    line-height: 1;
    letter-spacing: -0.02em;
    /* watermark/overlay tone */
    color: rgba(184, 91, 62, 0.35);
    white-space: nowrap;
    /* kırılmasın */
    transform: translateX(var(--tx, 0px));
    /* JS bunu sürer */
    transition: transform .05s linear;
    /* titremeyi azaltır */
}


/* Images */

.depth-strip__img {
    margin: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.depth-strip__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}


/* Left / right: z-index 1 */

.depth-strip__img--left,
.depth-strip__img--right {
    z-index: 1;
    width: 360px;
    height: 420px;
}


/* Center: z-index 3 */

.depth-strip__img--center {
    z-index: 3;
    width: 560px;
    height: 560px;
}


/* Copy area */

.depth-strip__copy {
    max-width: var(--container);
    margin: 90px auto 0;
    padding: 0 80px;
    /* Figma’da blok daha dar duruyor */
    display: grid;
    justify-content: center;
}

.depth-strip__lead {
    max-width: 620px;
    margin: 0 0 22px;
    font-family: "Roslindale", serif;
    font-size: 22px;
    line-height: 1.55;
    color: rgba(27, 27, 27, .70);
}

.depth-strip__body {
    max-width: 620px;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(27, 27, 27, .55);
}


/* Responsive */

@media (max-width: 1200px) {
    .depth-strip__media {
        padding: 0 40px;
    }
    .depth-strip__img--center {
        width: 480px;
        height: 480px;
    }
    .depth-strip__img--left,
    .depth-strip__img--right {
        width: 300px;
        height: 360px;
    }
    .depth-strip__moving-text {
        font-size: 150px;
    }
    .depth-strip__copy {
        padding: 0 40px;
    }
}

@media (max-width: 860px) {
    .depth-strip__media {
        flex-direction: column;
        gap: 24px;
    }
    .depth-strip__moving {
        top: 42%;
    }
    .depth-strip__img--center {
        width: 100%;
        height: 420px;
    }
    .depth-strip__img--left,
    .depth-strip__img--right {
        width: 100%;
        height: 280px;
    }
    .depth-strip__moving-text {
        font-size: 110px;
    }
}