/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --bg:        #F4F3F0;
  --white:     #FFFFFF;
  --green:     #1A4F4A;
  --green-mid: #2D6B64;
  --green-lt:  #EAF2F1;
  --gold:      #B8955A;
  --text:      #1A1A1A;
  --muted:     #6E6E6E;
  --border:    #E2DED8;
  --danger:    #B0413E;
  --danger-bg: #FBEDEC;
  --ok-bg:     #EAF2F1;

  /* Shadows */
  --shadow:    0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10);

  /* Radius */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  /* Transitions */
  --transition: 0.25s ease;

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