.dc-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.dc-cta-row--center {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.dc-cta-row--inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Base button ── */
.dc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: #A78278;
    border: 1.5px solid #A78278;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(167,130,120,0.25);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
.dc-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0;
    background: #fff;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.dc-cta-btn:hover::before { width: 100%; }
.dc-cta-btn:hover {
    border-color: rgba(167,130,120,0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(167,130,120,0.2);
}

/* ── Text group ── */
.dc-cta-btn__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}
.dc-cta-btn__label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dc-cta-btn:hover .dc-cta-btn__label { color: #A78278; }
.dc-cta-btn__title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: 'Cinzel', serif;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dc-cta-btn:hover .dc-cta-btn__title { color: #1a1a2e; }

/* ── Arrow circle ── */
.dc-cta-btn__arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dc-cta-btn__arrow svg {
    width: 16px;
    height: 16px;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.dc-cta-btn:hover .dc-cta-btn__arrow {
    background: rgba(167,130,120,0.1);
}
.dc-cta-btn:hover .dc-cta-btn__arrow svg {
    color: #A78278;
    transform: translateX(3px);
}

/* ── Light variant (white bg, rose fill on hover) ── */
.dc-cta-btn--light {
    background: #fff;
    border-color: rgba(167,130,120,0.18);
    box-shadow: 0 2px 12px rgba(167,130,120,0.06);
}
.dc-cta-btn--light::before { background: #A78278; }
.dc-cta-btn--light .dc-cta-btn__label { color: #A78278; }
.dc-cta-btn--light .dc-cta-btn__title { color: #1a1a2e; }
.dc-cta-btn--light .dc-cta-btn__arrow { background: rgba(167,130,120,0.1); }
.dc-cta-btn--light .dc-cta-btn__arrow svg { color: #A78278; }
.dc-cta-btn--light:hover { border-color: #A78278; box-shadow: 0 12px 32px rgba(167,130,120,0.25); }
.dc-cta-btn--light:hover .dc-cta-btn__label { color: rgba(255,255,255,0.7); }
.dc-cta-btn--light:hover .dc-cta-btn__title { color: #fff; }
.dc-cta-btn--light:hover .dc-cta-btn__arrow { background: rgba(255,255,255,0.2); }
.dc-cta-btn--light:hover .dc-cta-btn__arrow svg { color: #fff; }

/* ── Dark variant (for dark backgrounds) ── */
.dc-cta-btn--dark {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dc-cta-btn--dark::before { background: #A78278; }
.dc-cta-btn--dark .dc-cta-btn__label { color: rgba(255,255,255,0.5); }
.dc-cta-btn--dark .dc-cta-btn__title { color: rgba(255,255,255,0.9); }
.dc-cta-btn--dark .dc-cta-btn__arrow { background: rgba(255,255,255,0.1); }
.dc-cta-btn--dark .dc-cta-btn__arrow svg { color: rgba(255,255,255,0.7); }
.dc-cta-btn--dark:hover { border-color: #A78278; box-shadow: 0 12px 32px rgba(167,130,120,0.3); }
.dc-cta-btn--dark:hover .dc-cta-btn__label { color: rgba(255,255,255,0.7); }
.dc-cta-btn--dark:hover .dc-cta-btn__title { color: #fff; }
.dc-cta-btn--dark:hover .dc-cta-btn__arrow { background: rgba(255,255,255,0.2); }
.dc-cta-btn--dark:hover .dc-cta-btn__arrow svg { color: #fff; }

/* ── Compact variant (for sticky bars / header) ── */
.dc-cta-btn--compact {
    padding: 12px 18px;
    border-radius: 14px;
}
.dc-cta-btn--compact .dc-cta-btn__label { font-size: 9px; letter-spacing: 1.2px; }
.dc-cta-btn--compact .dc-cta-btn__title { font-size: 13px; }
.dc-cta-btn--compact .dc-cta-btn__arrow { width: 32px; height: 32px; }
.dc-cta-btn--compact .dc-cta-btn__arrow svg { width: 14px; height: 14px; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .dc-cta-row { grid-template-columns: 1fr; }
    .dc-cta-row--inline { flex-direction: column; }
    .dc-cta-btn { padding: 14px 18px; }
}
