/**
 * FOMEX GLOBAL — Mockup design tokens (colors, type, spacing)
 */
:root {
  --color-fomex-green: #017143;
  --color-fresh-green: #74bd43;
  --color-charcoal: #1c1d1f;

  --color-orange-cta: #ff8a3d;
  --color-blue-technical: #0071bc;
  --color-gold: #e8ee04;

  --color-white: #ffffff;
  --color-grey-100: #f5f5f5;
  --color-off-white: #f4faf7;
  --color-mist: #e0ebe6;
  --color-text: #2d3330;
  --color-text-muted: #4a534f;
  --color-border: #c5d5cd;

  --color-primary: var(--color-fomex-green);
  --color-primary-hover: #015a36;
  --color-surface: var(--color-white);
  --color-surface-alt: var(--color-off-white);
  --color-surface-hover: #edf6f1;
  --color-text-dark: var(--color-charcoal);
  --color-text-secondary: var(--color-text-muted);
  --color-accent-cta: var(--color-orange-cta);
  --color-accent-cta-hover: #e67224;
  --color-heading: var(--color-charcoal);
  --color-technical: var(--color-blue-technical);
  --color-technical-soft: rgba(0, 113, 188, 0.08);

  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, "Cascadia Code", monospace;
  --font-weight-heading: 700;
  --font-weight-display: 800;
  --line-height-heading: 1.2;
  --line-height-body: 1.6;

  /* Display scale — B2B-readable headings */
  --text-h1: 2.75rem;
  --text-h1-lg: 4rem;
  --text-h2: 2rem;
  --text-h2-lg: 2.75rem;
  --text-stat: 3.5rem;
  --text-h3: 1.5rem;
  --text-h3-lg: 1.75rem;
  --text-h4: 1.25rem;
  --text-h4-lg: 1.375rem;
  --text-h5: 1.125rem;
  --text-h5-lg: 1.25rem;
  --text-h6: 1rem;
  --text-h6-lg: 1.125rem;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;

  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.65;

  /* Fluid container — scales with viewport */
  --container-max: 90%;
  --container-pad: clamp(1.25rem, 3vw, 3rem);
  --header-height: 5.5rem;

  /* 80px–120px section rhythm */
  --section-gap-y: clamp(5rem, 6vw, 7.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  /* 8px — industrial cards per brand UI plan */
  --radius-lg: 0.5rem;
  --radius-card: var(--radius-lg);
  --radius-xl: 0.75rem;

  --shadow-sm: 0 1px 3px rgba(1, 113, 67, 0.08);
  --shadow-md: 0 4px 16px rgba(1, 113, 67, 0.1);
  --shadow-lg: 0 12px 32px rgba(28, 29, 31, 0.08);

  --transition-fast: 150ms ease;
  --transition-base: 220ms ease;

  --journey-awareness: var(--color-fresh-green);
  --journey-consult: var(--color-orange-cta);
  --journey-verify: var(--color-blue-technical);
  --journey-transparency: var(--color-fomex-green);

  /* Export markets map (home — wood patchwork, hub routes, legend swatches) */
  --map-ocean: var(--color-off-white);
  --map-frame-border: rgba(197, 213, 205, 0.9);
  --map-grid-stroke: rgba(139, 115, 90, 0.2);
  --map-wood-base: #e8dfd4;
  --map-wood-a: #d4b896;
  --map-wood-b: #b8956a;
  --map-wood-c: #8d6e47;
  --map-wood-d: #6b4f36;
  --map-route: #3d3329;
  --map-route-active: #6b5416;
  --map-marker-fill: var(--color-white);
  --map-marker-ring: #3d3329;
  --map-marker-hub-fill: var(--color-primary);
  --map-marker-hub-ring: #b8a01a;
  --map-glow-gold: rgba(214, 185, 72, 0.55);
  --map-glow-gold-soft: rgba(232, 200, 90, 0.35);
}

@media (min-width: 768px) {
  :root {
    --container-pad: 1.5rem;
  }
}
