/* =========================
   HERO
========================= */

.av-hero {
    width: 100%;
    padding: 40px 0 70px;
    overflow: hidden;
    background: var(--av-white);
}

.av-hero__inner {
    width: min(
            calc(100% - var(--av-header-side) * 2),
            var(--av-header-container)
    );
    margin-inline: auto;

    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
}


/* =========================
   HERO CONTENT
========================= */

.av-hero__content {
    min-width: 0;
    max-width: 760px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.av-hero__eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: #d71920;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.av-hero__title {
    max-width: 740px;
    margin: 0;

    color: var(--av-black);
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.045em;

    overflow-wrap: break-word;
}

.av-hero__text {
    max-width: 660px;
    margin: 28px 0 0;

    color: var(--av-muted);
    font-size: clamp(18px, 1.3vw, 22px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;

    overflow-wrap: break-word;
}


/* =========================
   HERO BUTTON
========================= */

.av-hero__button {
    min-height: 58px;
    margin-top: 34px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    border: 2px solid #d71920;
    border-radius: 12px;
    background: #d71920;
    color: #fff;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    box-shadow: 0 10px 24px rgb(215 25 32 / 20%);

    transition:
            background-color 0.2s ease,
            border-color 0.2s ease,
            transform 0.2s ease,
            box-shadow 0.2s ease;
}

.av-hero__button:hover {
    border-color: #b81218;
    background: #b81218;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgb(215 25 32 / 28%);
}

.av-hero__button:active {
    transform: translateY(0);
}

.av-hero__button:focus-visible {
    outline: 4px solid rgb(215 25 32 / 18%);
    outline-offset: 4px;
}

.av-hero__button svg {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;

    transition: transform 0.2s ease;
}

.av-hero__button:hover svg {
    transform: translateX(4px);
}


/* =========================
   HERO BENEFITS
========================= */

.av-hero__benefits {
    width: 100%;
    margin-top: 44px;

    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
}

.av-hero__benefit {
    min-width: 0;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--av-black);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.av-hero__benefit-icon {
    width: 28px;
    height: 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;

    border: 2px solid var(--av-black);
    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
}


/* =========================
   HERO IMAGE
========================= */

.av-hero__media {
    width: 100%;
    max-width: 560px;
    justify-self: end;
    overflow: hidden;

    aspect-ratio: 4 / 5;
    border-radius: 26px;
    background: #e8e8e4;

    box-shadow: 0 18px 48px rgb(17 20 28 / 12%);
}

.av-hero__image {
    width: 100%;
    height: 100%;

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

    transition: transform 0.5s ease;
}

.av-hero__media:hover .av-hero__image {
    transform: scale(1.02);
}


/* =========================
   SPLIT LABELS AND LISTS
========================= */

.av-split__eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--av-muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.av-split__list {
    margin: 28px 0 0;
    padding: 0;

    display: grid;
    gap: 12px;

    list-style: none;
}

.av-split__list li {
    position: relative;
    padding-left: 28px;

    color: var(--av-black);
    font-size: 17px;
    font-weight: 550;
    line-height: 1.5;
}

.av-split__list li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    color: #d71920;
    font-weight: 800;
}


/* =========================
   LARGE TABLET
========================= */

@media (max-width: 1200px) {
    .av-hero {
        padding-top: 30px;
    }

    .av-hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
        gap: 40px;
    }

    .av-hero__title {
        font-size: clamp(42px, 5vw, 62px);
    }

    .av-hero__text {
        font-size: 18px;
    }

    .av-hero__media {
        max-width: 480px;
    }

    .av-hero__benefits {
        gap: 14px 22px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
    .av-hero {
        padding: 30px 0 50px;
    }

    .av-hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .av-hero__content {
        max-width: 760px;
    }

    .av-hero__title {
        font-size: clamp(44px, 8vw, 66px);
    }

    .av-hero__media {
        max-width: 100%;
        justify-self: stretch;
        aspect-ratio: 16 / 10;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .av-hero {
        padding: 24px 0 40px;
    }

    .av-hero__inner {
        width: min(
                calc(100% - 32px),
                var(--av-header-container)
        );
        gap: 28px;
    }

    .av-hero__eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .av-hero__title {
        font-size: clamp(38px, 10vw, 54px);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .av-hero__text {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.6;
    }

    .av-hero__button {
        min-height: 56px;
        margin-top: 28px;
        padding-inline: 22px;

        font-size: 16px;
    }

    .av-hero__benefits {
        margin-top: 32px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .av-hero__benefit {
        font-size: 15px;
    }

    .av-hero__media {
        aspect-ratio: 4 / 3;
        border-radius: 20px;
    }

    .av-split__eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .av-split__list {
        margin-top: 22px;
        gap: 10px;
    }

    .av-split__list li {
        font-size: 16px;
        line-height: 1.5;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .av-hero__inner {
        width: calc(100% - 24px);
    }

    .av-hero__title {
        font-size: clamp(34px, 10vw, 42px);
    }

    .av-hero__text {
        font-size: 16px;
    }

    .av-hero__button {
        width: 100%;
        min-height: 54px;
    }

    .av-hero__media {
        aspect-ratio: 1 / 1;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
    .av-hero__button,
    .av-hero__button svg,
    .av-hero__image {
        transition: none;
    }

    .av-hero__button:hover,
    .av-hero__media:hover .av-hero__image {
        transform: none;
    }
}