/* ─────────────────────────────────────────
   tokens.css — Design tokens & CSS variables
   Fazenda dos Pinheiros
───────────────────────────────────────── */

:root {
  /* Palette */
  --ink:          #0e1209;
  --ink-mid:      #111609;
  --parchment:    #f5f0e6;
  --cream:        #faf7f0;
  --pine:         #1e3a1a;
  --moss:         #3a5c2e;
  --moss-hover:   #4a7038;
  --gold:         #b5862a;
  --amber:        #d4a843;
  --sage:         #7d9c6b;
  --sage-dim:     #5a7a4a;

  /* Alpha surfaces */
  --surface-card:      rgba(14, 18, 9, 0.80);
  --surface-card-hover: rgba(30, 58, 26, 0.50);
  --surface-trust:     rgba(30, 58, 26, 0.35);
  --surface-manifesto: rgba(30, 58, 26, 0.20);
  --border-gold:       rgba(181, 134, 42, 0.12);
  --border-gold-mid:   rgba(181, 134, 42, 0.25);
  --border-gold-strong: rgba(181, 134, 42, 0.40);
  --border-white:      rgba(245, 240, 230, 0.10);
  --border-white-mid:  rgba(245, 240, 230, 0.15);

  /* Text */
  --text-primary:   #f5f0e6;
  --text-secondary: rgba(245, 240, 230, 0.75);
  --text-muted:     rgba(245, 240, 230, 0.55);
  --text-faint:     rgba(245, 240, 230, 0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  72px;
  --space-2xl: 120px;

  /* Radius */
  --radius-sm: 3px;
  --radius-md: 8px;
  --radius-pill: 999px;

  /* Transitions */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --duration:  0.35s;
}
