/* Lakeside Plumbing — Responsive Get In Touch */
.lakeside-git-v2 {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    min-height: 390px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    isolation: isolate;
    background: #f5f9fc;
}

.lakeside-git-v2__background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.lakeside-git-v2__content {
    position: relative;
    z-index: 2;
    width: 55%;
    min-height: 390px;
    box-sizing: border-box;
    padding: 55px 5vw 105px 6.5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    /* Keeps the text readable over the light side of the supplied artwork. */
    background: linear-gradient(
        90deg,
        rgba(255,255,255,.99) 0%,
        rgba(255,255,255,.98) 65%,
        rgba(255,255,255,.82) 86%,
        rgba(255,255,255,0) 100%
    );
}

.lakeside-git-v2__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #075db6;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: .2px;
}

.lakeside-git-v2__eyebrow span:first-child {
    width: 34px;
    height: 3px;
    flex: 0 0 34px;
    background: #075db6;
}

.lakeside-git-v2 h2 {
    margin: 0 0 15px;
    color: #062d59;
    font-size: clamp(40px, 4.25vw, 68px);
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 800;
}

.lakeside-git-v2 p {
    max-width: 680px;
    margin: 0;
    color: #3c4248;
    font-size: clamp(16px, 1.35vw, 22px);
    line-height: 1.42;
}

/* Tablet */
@media (max-width: 1000px) {
    .lakeside-git-v2 {
        min-height: 430px;
    }

    .lakeside-git-v2__background {
        background-position: center center;
    }

    .lakeside-git-v2__content {
        width: 68%;
        min-height: 430px;
        padding: 50px 5vw 105px 5vw;
        background: linear-gradient(
            90deg,
            rgba(255,255,255,.99) 0%,
            rgba(255,255,255,.96) 70%,
            rgba(255,255,255,.70) 92%,
            rgba(255,255,255,0) 100%
        );
    }

    .lakeside-git-v2 h2 {
        font-size: clamp(38px, 5.2vw, 56px);
    }

    .lakeside-git-v2 p {
        font-size: clamp(16px, 1.9vw, 20px);
    }
}

/* Mobile: image becomes a separate visual block so text never gets squeezed. */
@media (max-width: 700px) {
    .lakeside-git-v2 {
        min-height: 0;
        display: flex;
        flex-direction: column;
    }

    .lakeside-git-v2__background {
        position: relative;
        inset: auto;
        width: 100%;
        height: 270px;
        order: 2;
        background-size: cover;
        background-position: center center;
    }

    .lakeside-git-v2__content {
        order: 1;
        width: 100%;
        min-height: 0;
        padding: 42px 24px 38px;
        background: #fff;
    }

    .lakeside-git-v2 h2 {
        font-size: clamp(38px, 10vw, 52px);
        letter-spacing: -1px;
    }

    .lakeside-git-v2 p {
        max-width: none;
        font-size: 17px;
        line-height: 1.5;
    }
}

/* Small phones */
@media (max-width: 400px) {
    .lakeside-git-v2__content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lakeside-git-v2__eyebrow {
        font-size: 13px;
    }

    .lakeside-git-v2 h2 {
        font-size: 37px;
    }
}
