/**
 * @file
 * MLT Modern — Site-specific CSS overrides.
 *
 * This file loads LAST in the theme's CSS chain, so anything you write
 * here overrides everything from scheme-bridge, tokens, regions, and
 * all component files — without needing !important.
 *
 * Use this file for:
 *  - One-off colour tweaks for a single site (e.g. swap --mlt-primary)
 *  - Hiding or showing specific blocks on specific pages
 *  - Tiny per-site adjustments that don't justify editing a component
 *  - Quick experiments before deciding whether they belong in a component
 *
 * Don't use this file for:
 *  - Anything that should be reusable across clients (put in components)
 *  - Anything that needs to be tested (give it its own component file)
 *  - Massive walls of overrides (refactor the component instead)
 *
 * Examples:
 *
 *   // Per-site primary colour override:
 *   :root {
 *     --mlt-primary: #c41e3a;
 *     --mlt-primary-dark: #8e1429;
 *   }
 *
 *   // Hide WhatsApp bubble on contact page only:
 *   .page-node-371 .whatsapp-bubble { display: none; }
 *
 *   // Tighten hero padding on this site only:
 *   .mlt-hero { padding: 50px 0; }
 */
