/* Sticky CTA — aligned with editorial design system */
.sticky-cta-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg, #F6F3EE);
    border-top: 1px solid var(--border, #D8D3CD);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
    padding: 14px 16px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta-footer.visible {
    transform: translateY(0);
}

.sticky-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

/* Label — mono caption to left of buttons */
.sticky-cta-label {
    font-family: var(--mono, 'JetBrains Mono', monospace);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-3, #99948F);
    margin-right: 4px;
}

.sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 2px;
    font-family: var(--sans, 'DM Sans', sans-serif);
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
}

.sticky-cta-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.sticky-cta-btn-primary {
    background: var(--ink, #111111);
    color: var(--bg, #F6F3EE);
}

.sticky-cta-btn-secondary {
    background: transparent;
    color: var(--ink, #111111);
    border: 1px solid var(--border-dark, #B0A9A2);
}

.sticky-cta-btn-secondary:hover {
    border-color: var(--ink, #111111);
}

.sticky-cta-close {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--ink-3, #99948F);
    cursor: pointer;
    padding: 8px;
    font-size: 14px;
    line-height: 1;
    transition: color 0.15s ease;
}

.sticky-cta-close:hover {
    color: var(--ink, #111111);
}

/* Mobile */
@media (max-width: 640px) {
    .sticky-cta-label {
        display: none;
    }

    .sticky-cta-close {
        top: 10px;
        right: 4px;
        transform: none;
    }

    .sticky-cta-container {
        flex-wrap: wrap;
        gap: 8px;
        padding-right: 32px;
    }

    .sticky-cta-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 16px;
    }
}
