/*
 * Hero CTA buttons — approved safari direction.
 *
 * This is intentionally scoped to the hero. Global buttons, header CTAs,
 * card actions, and form controls keep their existing behavior.
 */

.hero .hero__cta-link,
.hero .hero__btns .btn--accent {
    display: inline-flex !important;
    min-height: 54px !important;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 23px !important;
    border: 1px solid var(--color-accent, #e36d4f) !important;
    border-radius: 999px !important;
    background: var(--color-accent, #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;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22) !important;
    transition: transform .22s ease, background-color .22s ease,
        border-color .22s ease, box-shadow .22s ease, color .22s ease !important;
}

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

/* Remove the former homepage beacon animation from the compiled base bundle. */
.hero .hero__btns .btn::before {
    display: none !important;
    content: none !important;
    animation: none !important;
    box-shadow: none !important;
}

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

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

.hero .hero__cta-link:focus-visible,
.hero .hero__btns .btn--accent:focus-visible,
.hero .hero__btns .btn--outline-white:focus-visible {
    outline: 3px solid var(--color-secondary, #f1d38d);
    outline-offset: 4px;
}

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

.hero .hero__btns .btn--outline-white:hover,
.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);
}

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

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

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