:root {
  /* Colors: Institutional Authority (Oxford Blue, Bronze, Alabaster) */
  --c-oxford: #0B1D3A;
  --c-slate: #2C3E50;
  --c-bronze: #C87533;
  --c-sand: #F4F1EA;
  --c-alabaster: #FAFAF8;
  --c-white: #FFFFFF;
  --c-error: #9A2828;

  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'Chivo', sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 2rem;       /* 32px */
  --text-4xl: 2.5rem;     /* 40px */
  --text-5xl: 3.5rem;     /* 56px */
  --text-6xl: 4.5rem;     /* 72px */

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --edge-pad: var(--sp-4);

  /* Borders & Shadows */
  --border-thin: 1px solid var(--c-oxford);
  --border-light: 1px solid rgba(11, 29, 58, 0.1);
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-sm: 0 1px 2px rgba(11,29,58,0.1);
  --shadow-md: 0 4px 12px rgba(11,29,58,0.08);
}

@media (min-width: 768px) {
  :root {
    --edge-pad: var(--sp-8);
  }
}
