/* Optional and reversible Hero V2 experiment. */
.hero-v2 .family-hero {
    background:
        radial-gradient(circle at 82% 42%, rgba(212,166,43,.24), transparent 32%),
        linear-gradient(120deg, #faf8f2 48%, #eee3c8 100%);
}

.hero-v2 .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(500px, .95fr);
    gap: clamp(38px, 5vw, 78px);
}

.hero-v2 .hero-visual {
    align-self: center;
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(164,124,23,.35);
    border-radius: 28px;
    background: #e8dfc7;
    box-shadow: 0 25px 55px rgba(52,43,24,.18);
}

.hero-v2 .hero-visual::before {
    display: none;
}

.hero-v2 .hero-visual::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    box-shadow:
        inset 0 0 46px 15px rgba(250,248,242,.72),
        inset 0 -45px 55px rgba(232,223,199,.36);
}

.hero-v2 .hero-visual img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: 50% 73%;
    filter: saturate(.82) contrast(1.04) brightness(1.03);
    -webkit-mask-image: none;
    mask-image: none;
}

@media (max-width: 1120px) {
    .hero-v2 .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(410px, .9fr);
    }
}

@media (max-width: 980px) {
    .hero-v2 .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-v2 .hero-visual {
        width: min(100%, 720px);
        height: auto;
        margin-inline: auto;
    }
}

@media (max-width: 650px) {
    .hero-v2 .hero-grid {
        display: grid;
        gap: 14px;
        padding-top: 32px;
    }

    .hero-v2 .hero-copy {
        display: contents;
    }

    .hero-v2 .hero-copy .kicker {
        order: 1;
    }

    .hero-v2 .hero-copy h1 {
        order: 2;
        margin-bottom: 4px;
    }

    .hero-v2 .hero-visual {
        order: 3;
        width: 100%;
        aspect-ratio: 4 / 3;
        margin: 4px 0 8px;
        border-radius: 18px;
        box-shadow: 0 17px 34px rgba(52,43,24,.16);
    }

    .hero-v2 .hero-copy > p {
        order: 4;
        margin: 4px 0 0;
    }

    .hero-v2 .hero-copy .actions {
        order: 5;
        margin-top: 8px;
    }

    .hero-v2 .hero-copy > small {
        order: 6;
        margin-top: 2px;
    }

    .hero-v2 .hero-visual::after {
        box-shadow:
            inset 0 0 26px 8px rgba(250,248,242,.64),
            inset 0 -28px 38px rgba(232,223,199,.28);
    }

    .hero-v2 .hero-visual img {
        object-position: 50% 75%;
    }
}
