/* Explain: Theme design tokens (colors, fonts) — single source of truth. */
:root {
    --primary-color: #0b1528; /* Deep Navy */
    --primary-hover: #162a4d;
    --secondary-color: #1a2942;
    --accent-color: #c0904d; /* Architectural Gold */
    --accent-hover: #a3783c;
    --background-color: #fdfcf8; /* Ivory */
    --surface-color: #ffffff;
    --text-color: #0b1528;
    --text-muted: #4b5563;
    --text-light: #f8fafc;
    --border-color: #e5e7eb;
    --border-dark: #1e3352;
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Cairo', sans-serif;
}