# Final Reference Design Implementation

## Public theme
The public website now uses one authoritative stylesheet loaded last:

`public/assetss/css/reference-education-final.css`

Reference palette:
- Green: `#153f2d`
- Dark Green: `#0f2f22`
- Gold: `#c99a3f`
- Light Gold: `#e6c477`
- Cream: `#fbf7ee`
- Sand: `#f1e5cf`
- Ink: `#1d1d1f`
- Muted: `#667085`

The old public `lms-theme.css` is no longer loaded by `resources/views/public/layout/app.blade.php`.
Page-specific CSS stacks load before the final reference stylesheet, so the final theme remains authoritative.

## Readability rule
All public forms explicitly use white form fields and dark ink text. Labels, placeholders, focus states, disabled controls, checkboxes, file inputs, validation messages, cards, tables, detail headers, contact/directory pages, student/teacher portals, and public service forms have explicit foreground/background rules.

## Cache clear
Super Admin now has a cache-clear button in the admin top header.
It calls the named POST route:

`admin.system.clear-cache`

The route runs:

`Artisan::call('optimize:clear');`

Manual server command:

```bash
php artisan optimize:clear
```

This clears application, config, route, view, events/compiled caches handled by Laravel's optimize clear command.
