:root {
    /* Tweak to taste */
    --nav-min: 84px;
    --brand: #1c1c1c;
    --brand-ink: #ffffff;
    --gold: #d4a047;
    --ink: #222;
    --page-bg: #faf9f7;
    --container-max: 1200px;

    --btn-ink: #111;
    --btn-bg: var(--gold);
    --btn-bg-hover: #e1b15b;
}

.cta {
    text-align: center;
    background: radial-gradient(
            1200px 400px at 10% 0%,
            rgba(212, 160, 71, 0.1),
            transparent 60%
        ),
        linear-gradient(#f7f3eb, #faf9f7);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cta h2 {
    font-family: "Libre Bodoni", serif;
    font-size: clamp(24px, 4.6vw, 40px);
    margin: 0 0 0.4rem;
}
.cta p {
    margin: 0.2rem 0 1rem;
    color: #444;
}
.btn,
.btn--ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}
.btn {
    background: var(--gold);
    color: #111;
}
.btn:hover {
    filter: brightness(1.05);
}
.btn--ghost {
    border: 2px solid #111;
    color: #111;
}
.cta .btn-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.phone {
    display: block;
    margin-top: 0.35rem;
    font-weight: 700;
}
