/*
 * Final hero CTA layer.
 *
 * This file is loaded after the site bundle and all shared component styles.
 * The extra html/body scope deliberately wins over the legacy body.home hero
 * rules still present in the compiled bundle.
 */

html body .hero .hero__btns .hero__cta-link,
html body .hero .hero__btns .btn--accent {
    display: inline-flex !important;
    min-height: 54px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 23px !important;
    border: 1px solid #e36d4f !important;
    border-radius: 999px !important;
    background: #e36d4f !important;
    color: #fff !important;
    font-family: var(--font-heading, sans-serif) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .14em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22) !important;
    transform: none !important;
    transition: transform .22s ease, background-color .22s ease,
        border-color .22s ease, box-shadow .22s ease, color .22s ease !important;
}

html body .hero .hero__btns .hero__cta-link::after,
html body .hero .hero__btns .btn--accent::after {
    content: '↗' !important;
    display: inline-block !important;
    margin-left: 12px !important;
    color: currentColor !important;
    font-family: Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 0 !important;
    transition: transform .22s ease !important;
}

html body .hero .hero__btns .btn::before {
    display: none !important;
    content: none !important;
    animation: none !important;
    box-shadow: none !important;
}

html body .hero .hero__btns .hero__cta-link:hover,
html body .hero .hero__btns .hero__cta-link:focus-visible,
html body .hero .hero__btns .btn--accent:hover,
html body .hero .hero__btns .btn--accent:focus-visible {
    border-color: #f08255 !important;
    background: #f08255 !important;
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .28) !important;
    transform: translateY(-3px) !important;
}

html body .hero .hero__btns .hero__cta-link:hover::after,
html body .hero .hero__btns .hero__cta-link:focus-visible::after,
html body .hero .hero__btns .btn--accent:hover::after,
html body .hero .hero__btns .btn--accent:focus-visible::after {
    transform: translate(3px, -3px) !important;
}

html body .hero .hero__btns .btn--outline-white {
    display: inline-flex !important;
    min-height: 54px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 23px !important;
    border: 1px solid rgba(255, 255, 255, .62) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .09) !important;
    color: #fff !important;
    font-family: var(--font-heading, sans-serif) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .14em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    transform: none !important;
    backdrop-filter: blur(9px) !important;
    transition: transform .22s ease, background-color .22s ease,
        border-color .22s ease, box-shadow .22s ease, color .22s ease !important;
}

html body .hero .hero__btns .btn--outline-white:hover,
html body .hero .hero__btns .btn--outline-white:focus-visible {
    border-color: #fff !important;
    background: rgba(255, 255, 255, .2) !important;
    color: #fff !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .17) !important;
    transform: translateY(-3px) !important;
}

html body .hero .hero__btns .hero__cta-link:focus-visible,
html body .hero .hero__btns .btn--accent:focus-visible,
html body .hero .hero__btns .btn--outline-white:focus-visible {
    outline: 3px solid #f1d38d !important;
    outline-offset: 4px !important;
}

@media (max-width: 767px) {
    html body .hero .hero__btns .hero__cta-link,
    html body .hero .hero__btns .btn--accent,
    html body .hero .hero__btns .btn--outline-white {
        width: 100% !important;
        max-width: 300px !important;
        text-align: center !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .hero .hero__btns .hero__cta-link,
    html body .hero .hero__btns .btn--accent,
    html body .hero .hero__btns .btn--outline-white,
    html body .hero .hero__btns .hero__cta-link::after,
    html body .hero .hero__btns .btn--accent::after {
        transition: color .22s ease, background-color .22s ease,
            border-color .22s ease, box-shadow .22s ease !important;
    }

    html body .hero .hero__btns .hero__cta-link:hover,
    html body .hero .hero__btns .hero__cta-link:focus-visible,
    html body .hero .hero__btns .btn--accent:hover,
    html body .hero .hero__btns .btn--accent:focus-visible,
    html body .hero .hero__btns .btn--outline-white:hover,
    html body .hero .hero__btns .btn--outline-white:focus-visible {
        transform: none !important;
    }
}