/* =====================
   CTA Section — Premium
   ===================== */
.cta-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
}

/* Animated gradient background */
.cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196, 164, 108, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 50%, rgba(160, 112, 96, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 0%, rgba(196, 164, 108, 0.08) 0%, transparent 60%);
    animation: ctaBgShift 12s ease-in-out infinite alternate;
}

@keyframes ctaBgShift {
    0%   { opacity: 0.6; transform: scale(1); }
    50%  { opacity: 1; transform: scale(1.03); }
    100% { opacity: 0.6; transform: scale(1); }
}

/* Subtle dot grid overlay */
.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(196, 164, 108, 0.1) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
}

/* Gold top accent line */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.cta-title .italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent-gold);
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 56px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 100px 0;
    }
    .cta-title {
        font-size: clamp(44px, 12vw, 80px);
    }
    .cta-description {
        font-size: 17px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 80px 0;
    }
}
