/* ── SHARED DESIGN TOKENS & RESET ──────────────────────────────────
   Single source of truth for all pages.
   Load this before any page-specific <style> block.
   ─────────────────────────────────────────────────────────────── */
:root{
  --navy:#0A1F44;--navy-dk:#060F22;--navy-md:#0D2A58;
  --red:#C0160A;--gold:#F5A623;--gold-lt:#FFD07A;--gold-pale:#FFF8EC;
  --green:#0D6E3F;--white:#FFFFFF;--offwhite:#F7F8FC;
  --lgray:#CBD5E1;--mid:#64748B;--dkgray:#1E293B;--border:#E2E8F0;
  --serif:'Playfair Display',Georgia,serif;
  --sans:'DM Sans',sans-serif;
  --radius:8px;--radius-lg:16px;
  --shadow:0 20px 60px rgba(0,0,0,.12);--shadow-sm:0 4px 16px rgba(0,0,0,.08)
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
a{color:inherit;text-decoration:none}
