/* ================================================================
   TOKENS — Custom Properties
   ================================================================ */
:root {
  /* Palette */
  --white: #FFFFFF;
  --cream: #F7F5F0;
  --charcoal: #2B2D35;
  --charcoal-soft: #363840;
  --olive: #4A7C3F;
  --olive-light: #5C9450;
  --olive-muted: #3D6835;
  --olive-wash: #EAF1E7;
  --heading-dark: #2D4A27;
  --body: #3A3A3A;
  --body-light: rgba(255,255,255,0.82);
  --muted: #7A7A7A;
  --rule: rgba(74,124,63,0.3);
  --border: rgba(74,124,63,0.6);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Jost', system-ui, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 700ms;
}
