/* ============================================================
   NOMADIA — Design Tokens v1.0
   Sistema canônico. Não modificar sem aprovação L1.
   ============================================================ */

:root {

  /* ── Cores: Fundação ─────────────────────────────────── */
  --paper:  #F2EEE5;
  --ink:    #0E1116;
  --slate:  #2C3742;
  --brass:  #A88758;

  /* ── Cores: Stone Architecture ──────────────────────── */
  --stone-50:  #F8F5EE;
  --stone-100: #EAE6DA;
  --stone-200: #CFCABB;
  --stone-300: #9B968A;
  --stone-400: #6D6A60;
  --stone-500: #3F3E39;
  --stone-700: #222428;
  --stone-900: #14171B;

  /* ── Cores: Signal ───────────────────────────────────── */
  --signal-slate:   #5A6B7D;
  --semantic-success: #5A7A65;
  --semantic-warning: #B89858;
  --semantic-error:   #B4622A;

  /* ── Cores: Bordas ───────────────────────────────────── */
  --border-subtle:  var(--stone-100);
  --border-default: var(--stone-200);
  --border-strong:  var(--stone-400);

  /* ── Tipografia: Famílias ────────────────────────────── */
  --font-editorial: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-ui:        "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono:      "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;

  /* ── Tipografia: Escala ──────────────────────────────── */
  --text-xs:  12px;
  --text-sm:  14px;
  --text-md:  16px;
  --text-lg:  18px;
  --text-xl:  20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  --text-5xl: 56px;
  --text-6xl: 72px;
  --text-7xl: 96px;

  /* ── Espaçamento ─────────────────────────────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  40px;
  --space-8:  48px;
  --space-9:  64px;
  --space-10: 80px;
  --space-11: 96px;
  --space-12: 128px;
  --space-13: 160px;
  --space-14: 192px;

  /* ── Grid ────────────────────────────────────────────── */
  --grid-max:    1440px;
  --grid-margin: 64px;
  --grid-gutter: 32px;
  --reading-max: 760px;
  --header-height: 48px;

  /* ── Motion ──────────────────────────────────────────── */
  --motion-instant:    80ms;
  --motion-fast:      120ms;
  --motion-base:      200ms;
  --motion-slow:      320ms;
  --motion-deliberate:480ms;

  --ease-standard: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-enter:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-exit:     cubic-bezier(0.4, 0.0, 1.0, 1);
}
