/* =========================================================
   POLISHED PROFESSIONAL GROUP
   Hero
   ========================================================= */

.ppg-hero {
    position: relative;
    isolation: isolate;

    min-height: 520px;

    overflow: hidden;

    background:
        var(--ppg-cream);
}


/* =========================================================
   Background
   ========================================================= */

.ppg-hero__background {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.ppg-hero__background::after {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(251, 250, 247, 1) 0%,
            rgba(251, 250, 247, 0.98) 35%,
            rgba(251, 250, 247, 0.58) 55%,
            rgba(251, 250, 247, 0.05) 78%
        );

    content: "";
}

.ppg-hero__background-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center right;
}


/* =========================================================
   Layout
   ========================================================= */

.ppg-hero__container {
    position: relative;
    z-index: 2;
}

.ppg-hero__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(460px, 1.08fr);

    align-items: stretch;

    min-height: 520px;
}


/* =========================================================
   Hero Content
   ========================================================= */

.ppg-hero__content {
    position: relative;
    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    max-width: 590px;
    padding:
        72px
        30px
        110px
        0;
}

.ppg-hero__headline {
    margin-bottom: 22px;

    font-size:
        clamp(
            2.9rem,
            4.3vw,
            4.8rem
        );

    line-height: 0.98;
    letter-spacing: -0.03em;
}

.ppg-hero__headline-line {
    display: block;
}

.ppg-hero__headline-line--navy {
    color: var(--ppg-navy);
}

.ppg-hero__headline-line--teal {
    color: var(--ppg-teal-dark);
}

.ppg-hero__headline-line--lime {
    color: var(--ppg-lime-dark);
}

.ppg-hero__description {
    max-width: 540px;
    margin-bottom: 30px;

    color: var(--ppg-text-primary);

    font-size: 1.05rem;
    line-height: 1.55;
}

.ppg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ppg-hero__primary-cta {
    min-width: 300px;
}


/* =========================================================
   Visual Layer
   ========================================================= */

.ppg-hero__visual {
    position: relative;

    min-height: 520px;
}


.ppg-hero__portrait-frame {
    position: absolute;
    z-index: 3;

    right: 6%;
    bottom: 0;

    width: min(620px, 92%);
    height: 100%;

    overflow: hidden;
}

.ppg-hero__main-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        drop-shadow(
            0 18px 32px
            rgba(8, 26, 48, 0.18)
        );
}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
    .ppg-hero__layout {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(400px, 1.1fr);
    }

    .ppg-hero__headline {
        font-size:
            clamp(
                2.7rem,
                4.5vw,
                4.1rem
            );
    }

  
}

@media (max-width: 860px) {
    .ppg-hero {
        min-height: auto;
    }

    .ppg-hero__background::after {
        background:
            linear-gradient(
                180deg,
                rgba(251, 250, 247, 1) 0%,
                rgba(251, 250, 247, 0.94) 46%,
                rgba(251, 250, 247, 0.4) 72%,
                rgba(251, 250, 247, 0.08) 100%
            );
    }

    .ppg-hero__layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ppg-hero__content {
        max-width: 650px;
        padding:
            58px
            0
            32px;
    }

    .ppg-hero__headline {
        max-width: 12ch;

        font-size:
            clamp(
                2.55rem,
                8vw,
                4rem
            );
    }

    .ppg-hero__description {
        max-width: 520px;
    }

    .ppg-hero__visual {
        min-height: 430px;
    }



    .ppg-hero__portrait-frame {
        right: 50%;

        width: min(650px, 100%);

        transform:
            translateX(50%);
    }
}

@media (max-width: 560px) {
    .ppg-hero__content {
        padding-top: 44px;
    }

    .ppg-hero__headline {
        margin-bottom: 18px;

        font-size:
            clamp(
                2.25rem,
                11vw,
                3.25rem
            );

        line-height: 1.02;
    }

    .ppg-hero__description {
        margin-bottom: 24px;

        font-size: 0.96rem;
    }

    .ppg-hero__primary-cta {
        width: 100%;
        min-width: 0;
    }

    .ppg-hero__visual {
        min-height: 330px;
    }



    .ppg-hero__portrait-frame {
        width: 120%;
    }

.ppg-hero__portrait-frame {
    width: 115%;
    height: 315px;

    overflow: hidden;
}

.ppg-hero__main-image {
    object-fit: cover;
    object-position: center 42%;
}
}