/* Design tokens — brand palette, typography, layout. Change the brand here. */
:root {
  /* Palette (from company profile: navy + white, warm gold accent) */
  --navy-900: #0c1f3f;
  --navy-800: #102a52;
  --navy-700: #15356a;
  --navy-600: #1d4280;
  --gold: #c9a24b;
  --gold-dark: #b08d36;
  --gold-ink: #886b22; /* darker bronze for small gold text on light bg (WCAG AA) */
  --ink: #1a2233;
  --muted: #47536b;
  --text-on-dark: #e3eaf5; /* body/label text on navy backgrounds */
  --line: #e4e8ef;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-navy-soft: #eef2f8;
  --white: #ffffff;

  /* Typography */
  --font-serif: Georgia, "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(12, 31, 63, 0.06);
  --shadow-md: 0 12px 30px rgba(12, 31, 63, 0.1);
  --shadow-lg: 0 24px 60px rgba(12, 31, 63, 0.16);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}