.hero-home > .container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 44px;
}

.ph-hero-copy {
    min-width: 0;
}

.ph-hero-media {
    position: relative;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(8, 47, 73, .24);
    isolation: isolate;
}

.ph-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: inherit;
    pointer-events: none;
}

.ph-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: 58% center;
}

.ph-scenarios {
    padding: 20px 0 10px;
}

.ph-scenarios-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.ph-scenarios-heading h2 {
    margin: 4px 0 0;
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    line-height: 1.08;
    color: #0f172a;
}

.ph-scenarios-heading p {
    max-width: 430px;
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.ph-kicker {
    color: #0f766e;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ph-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 310px;
    gap: 18px;
}

.ph-scenario {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #0f172a;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .12);
    color: #fff;
    isolation: isolate;
}

.ph-scenario-wide {
    grid-column: span 1;
}

.ph-scenario img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
}

.ph-scenario-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(4, 15, 25, .88) 100%);
}

.ph-scenario-copy {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: grid;
    gap: 5px;
}

.ph-scenario-copy strong {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.15;
}

.ph-scenario-copy small {
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
}

.ph-scenario:hover img,
.ph-scenario:focus-visible img {
    transform: scale(1.045);
}

.ph-scenario:focus-visible {
    outline: 3px solid #2dd4bf;
    outline-offset: 4px;
}

@media (max-width: 1050px) {
    .hero-home > .container {
        grid-template-columns: 1fr;
    }

    .ph-hero-media {
        min-height: 380px;
    }

    .ph-hero-media img {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .site-header .mobile-menu-btn {
        display: block;
    }

    .site-header .main-nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        left: 0;
        z-index: 1100;
        width: 100%;
        padding: 12px 20px;
        border-bottom: 1px solid var(--border);
        background: var(--bg-card);
        box-shadow: 0 12px 26px rgba(15, 23, 42, .12);
        flex-direction: column;
    }

    .site-header .main-nav.open {
        display: flex;
    }
}

@media (max-width: 720px) {
    .hero-home > .container {
        gap: 28px;
    }

    .ph-hero-media {
        min-height: 280px;
        border-radius: 22px;
    }

    .ph-hero-media img {
        min-height: 280px;
    }

    .ph-scenarios-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .ph-scenarios-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .ph-scenario-copy {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }
}
