.top-book-cta-host {
    display: flex;
    width: 100%;
    min-height: 64px;
    margin: 1rem 0 0;
    padding: .75rem clamp(.85rem, 2vw, 1.4rem);
    align-items: center;
    justify-content: center;
    gap: clamp(.75rem, 2vw, 1.5rem);
    border: 1px solid rgba(101, 179, 58, .5);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(20, 34, 23, .98), rgba(7, 13, 9, .98));
    box-shadow: 0 12px 30px rgba(20, 50, 25, .2), inset 0 0 24px rgba(101, 179, 58, .08);
}

.top-book-cta-host:not([data-ready="true"]) {
    visibility: hidden;
}

.top-book-cta__eyebrow {
    color: #c8e8b5;
    font-size: clamp(.68rem, 1.2vw, .82rem);
    font-weight: 700;
    letter-spacing: .13em;
    text-align: center;
}

.top-book-cta__link {
    display: inline-flex;
    min-height: 44px;
    padding: .7rem 1.2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid #86c75f;
    border-radius: 999px;
    color: #071006;
    background: linear-gradient(135deg, #d8f6c6, #86c75f);
    box-shadow: 0 8px 20px rgba(101, 179, 58, .28);
    font-size: clamp(.78rem, 1.4vw, .95rem);
    font-weight: 800;
    letter-spacing: .06em;
    text-align: center;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.top-book-cta__link:hover,
.top-book-cta__link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 11px 24px rgba(101, 179, 58, .38);
    filter: brightness(1.05);
}

.top-book-cta__link:focus-visible {
    outline: 3px solid rgba(134, 199, 95, .42);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .top-book-cta-host {
        width: 100%;
        margin-top: .75rem;
        flex-direction: column;
        gap: .55rem;
    }

    .top-book-cta__link {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-book-cta__link {
        transition: none;
    }
}
