.a2-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 33% 67%;
    padding: 0;
    background: var(--cream);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 4rem 4rem;
    position: relative;
    background: var(--sand);
}

.hero-left > * {
    opacity: 0;
    animation: a2-hero-fade-up .7s ease forwards;
}

.hero-left .hero-tag {
    animation-delay: .1s;
}

.hero-left h1 {
    font-family: var(--font-family-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.6rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: 1.4rem;
    animation-delay: .25s;
}

.hero-left h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-family: Inter, sans-serif;
    font-size: 15.2px;
    font-weight: 400;
    height: 106.375px;
    line-height: 26.6px;
    color: var(--text-default);
    max-width: 420px;
    margin-bottom: 2.5rem;
    animation-delay: .4s;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: 2.2rem;
    animation-delay: .5s;
}

.hero-price .hp-label {
    font-size: .72rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.hero-price .hp-amount {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.hero-price .hp-per {
    font-size: .82rem;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    animation-delay: .6s;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    letter-spacing: .02em;
    transition: all .3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 16px 32px;
    font-size: .9rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--gold-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--s-lg);
}

.btn-primary .mi {
    font-size: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    padding: 16px 32px;
    font-size: .9rem;
    font-weight: 600;
    border: 1.5px solid var(--text-soft);
}

.btn-outline:hover {
    border-color: var(--ink);
    background: var(--white);
    color: var(--ink);
}

.hero-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 2.5rem;
    animation-delay: .75s;
}

.hero-thumb {
    width: 60px;
    height: 44px;
    overflow: hidden;
    border: 2px solid var(--sand);
    padding: 0;
    background: transparent;
    opacity: .6;
    transition: all .3s ease;
    cursor: pointer;
}

.hero-thumb.active,
.hero-thumb:hover {
    opacity: 1;
    border-color: var(--gold);
}

.hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .35s ease, transform .6s ease;
}

.hero-right img.is-switching {
    opacity: .35;
    transform: scale(1.03);
}

@keyframes a2-hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .a2-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-left {
        padding: 3rem 1.5rem 2.5rem;
        order: 2;
    }

    .hero-right {
        min-height: 220px;
        order: 1;
    }

    .hero-right img {
        min-height: 220px;
    }

    .hero-price .hp-amount {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-thumbs {
        display: none;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .hero-left h1 {
        font-size: 1.6rem;
    }

    .hero-sub {
        margin-bottom: 1.5rem;
    }

    .hero-price .hp-amount {
        font-size: 1.8rem;
    }
}
