.text-gold {
    color: var(--gold);
}

.bg-ivory {
    background: var(--ivory);
}

.bg-foreground {
    background: var(--foreground);
}

.text-foreground {
    color: var(--foreground);
}

.border-soft {
    border: 1px solid var(--border);
}

.rounded-none {
    border-radius: 0;
}

.shadow-soft {
    box-shadow: 0 16px 60px rgba(10, 10, 10, 0.08);
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}