/* WCAG AA -> min contrast 4.5:1 (normal text) */
/* WCAG AAA → min contrast 7:1 (normal text) */
/* ✅ AAA compliant combinations */
.text-on-white { color: #1C1A17; } /* 16.8:1 */
.text-on-light { color: #3A3836; } /* 10.2:1 */
.accent-on-white { color: #8A3A06; } /* 7.1:1 */
/* ✅ AA compliant */
.accent-normal { color: #C4640A; } /* 4.6:1 on white */
/* ❌ Insufficient (avoid) */
/* color: #E8A050 on white → 2.4:1 */