/* ============================================================
   Paloma CTA Widget — front-end stylesheet
   ============================================================ */

.paloma-cta {
    position: relative;
    overflow: hidden;
    background: #2a0807;
    color: #faf7f2;
    text-align: center;
    box-sizing: border-box;
}

.paloma-cta *,
.paloma-cta *::before,
.paloma-cta *::after {
    box-sizing: border-box;
}

/* ── Background image ── */
.paloma-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.paloma-cta__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    display: block;
}

/* ── Inner wrapper ── */
.paloma-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── Script (top tagline) ── */
.paloma-cta__script {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    line-height: 1;
    color: #C9A84C;
    margin: 0 0 8px;
}

/* ── Title ── */
.paloma-cta__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.15;
    color: #faf7f2;
    margin: 0 0 16px;
}

/* ── Description ── */
.paloma-cta__desc {
    font-family: 'Jost', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(250, 247, 242, 0.6);
    margin: 0 0 32px;
}
.paloma-cta__desc strong {
    color: #faf7f2;
    font-weight: 600;
}

/* ── Buttons row ── */
.paloma-cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: center;
}
@media (min-width: 600px) {
    .paloma-cta__buttons {
        flex-direction: row;
        gap: 16px;
    }
}

/* ── Buttons base ── */
.paloma-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    border: 2px solid transparent;
    line-height: 1;
    white-space: nowrap;
}
.paloma-cta__btn:hover {
    transform: translateY(-2px);
}

.paloma-cta__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.paloma-cta__btn-icon i,
.paloma-cta__btn-icon svg {
    width: 1em;
    height: 1em;
    font-size: inherit;
}

/* ── Primary button ── */
.paloma-cta__btn--primary {
    background-color: #C9A84C;
    color: #2a0807;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}
.paloma-cta__btn--primary:hover {
    background-color: #dfc06a;
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.35);
}

/* ── Secondary (ghost) button ── */
.paloma-cta__btn--secondary {
    background-color: rgba(250, 247, 242, 0.06);
    color: #faf7f2;
    border-color: rgba(250, 247, 242, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.paloma-cta__btn--secondary:hover {
    color: #C9A84C;
    border-color: #C9A84C;
    background-color: rgba(201, 168, 76, 0.08);
}

/* ── Responsive scale ── */
@media (max-width: 600px) {
    .paloma-cta__script { font-size: 36px; }
    .paloma-cta__title  { font-size: 30px; }
    .paloma-cta__desc   { font-size: 15px; margin-bottom: 24px; }
    .paloma-cta__btn    { padding: 14px 26px; font-size: 14px; width: 100%; max-width: 320px; }
}
