/* PROJECTS — section #7
   Cream bg + faded city sketch (CSS bg) + map-only overlay on LEFT + HTML title+CTA on RIGHT */

.projects-map {
    position: relative;
    width: 100%;
    background: #fbf8f1;
    overflow: hidden;
    padding: 0;
}

/* City sketch bg (full bleed, behind everything) */
.projects-map__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    z-index: 0;
    opacity: 0.85;
}

.projects-map__inner {
    position: relative;
    max-width: 1380px;                       /* SAME as other sections */
    margin: 0 auto;
    padding: 60px 24px;
    min-height: 700px;
    display: flex;
    align-items: flex-start;                 /* title block AT TOP, not center */
    gap: 60px;
    z-index: 1;
}

/* RIGHT side (in RTL flex natural): title + subtitle + CTA — anchored to top */
.projects-map__text {
    flex: 0 0 380px;                         /* same width as testimonials intro for visual consistency */
    max-width: 380px;
    text-align: right;
    padding-top: 30px;
}
.projects-map__title {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 42px;
    line-height: 52px;
    color: var(--c-blk);
    margin: 0 0 14px;
}
.projects-map__subtitle {
    font-family: var(--ff-he);
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    color: var(--c-blk);
    margin: 0 0 28px;
}
.projects-map__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 54px;
    padding: 0 22px;
    background: var(--c-gold-flat);
    color: #fff;
    font-family: var(--ff-he);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s var(--ease);
}
.projects-map__cta:hover {
    background: #8d6c37;
    color: #fff;
}
.projects-map__cta-arrow svg {
    width: 22px;
    height: 14px;
}

/* LEFT side (in RTL flex natural): map of israel with city chip labels.
   PNG is pre-processed with PIL (white pixels → transparent) so it sits
   cleanly over the cream city-sketch bg without any white box. */
.projects-map__map {
    flex: 1 1 auto;
    max-width: 820px;
    height: auto;
    display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
    .projects-map {
        padding: 0;
        min-height: 0;
    }
    .projects-map__bg {
        object-position: center;
    }
    .projects-map__inner {
        flex-direction: column;
        gap: 16px;
        padding: 32px 16px;
        min-height: 0;
        align-items: center;
        max-width: 100%;
    }
    .projects-map__text {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        text-align: center;
        order: 1;
        padding-top: 0;
    }
    .projects-map__map {
        flex: 0 0 auto;
        max-width: 320px;
        width: 100%;
        order: 2;
        margin: 0 auto;
    }
    .projects-map__title {
        font-size: 22px;
        line-height: 28px;
        margin: 0 0 8px;
    }
    .projects-map__subtitle {
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 16px;
    }
    .projects-map__cta {
        height: 44px;
        font-size: 16px;
        padding: 0 16px;
    }
}
