: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;
}

.process-section {
    padding: clamp(32px, 6vw, 72px) 0;
    background: radial-gradient(
            900px 300px at 85% 0%,
            rgba(212, 160, 71, 0.07),
            transparent 60%
        ),
        #f6f4ee;
}
.process-grid {
    display: grid;
    gap: clamp(12px, 2vw, 18px);
    grid-template-columns: repeat(4, 1fr);
    margin-top: 12px;
}
.step {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}
.step-icon {
    font-size: 24px;
}
.step h3 {
    margin: 6px 0 6px;
    font-size: 1.05rem;
    font-family: "Playfair Display", serif;
}
.step p {
    margin: 0;
    color: #444;
}
.center-cta {
    text-align: center;
    margin-top: clamp(12px, 2vw, 18px);
}
.center-cta .micro-note {
    margin: 0.4rem 0 0;
    color: #666;
}

@media (max-width: 980px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
