/* Engeomin Consultant — Design tokens */
:root {
  /* Pastel / pista green — light & fresh */
  --color-forest: #2f5c4a;
  --color-heading: #102820;
  --color-moss: #5a8f73;
  --color-leaf: #7aaa8e;
  --color-sage: #b5d0c2;
  --color-pista: #c8ddcb;
  --color-mist: #eef6f0;
  --color-stone: #f4f9f5;
  --color-paper: #fbfdfb;
  --color-ink: #24352c;
  --color-ink-soft: #4a5c52;
  --color-muted: #6b7d72;
  --color-border: rgba(47, 92, 74, 0.14);
  --color-accent: #c4a35a;
  --color-accent-deep: #9a7d45;
  --color-whatsapp: #25d366;

  /* Type */
  --font-display: 'Source Serif 4', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;

  --fs-body: clamp(1.05rem, 0.98rem + 0.25vw, 1.125rem);
  --lh-body: 1.7;
  --lh-tight: 1.1;
  --tracking-display: -0.03em;
  --tracking-label: 0.18em;

  --header-h: 76px;
  --content-max: 1120px;
  --section-y: clamp(4.25rem, 8vw, 6.75rem);
  --radius: 2px;
  --radius-md: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
  --shadow-soft: 0 18px 50px rgba(47, 92, 74, 0.08);
  --shadow-lift: 0 22px 48px rgba(47, 92, 74, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition: 0.01ms;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
