/* Design tokens — docs/12-stile-sito.md. Never duplicate a hex value in a component file;
   change the palette here only. */
:root {
  /* tessere — functional use, not decorative */
  --clay:   #B5502E;
  --ochre:  #C98A2E;
  --teal:   #2E5F5A;
  --plum:   #5B3A52;

  /* neutrals */
  --ink:       #221E1C;
  --ink-soft:  #6B665D;
  --paper:     #ECEAE3;
  --paper-raised: #F7F5EF;
  --line:      #D7D3C6;

  /* outside the tessere set, deliberately */
  --danger: #9B3B3B;
  --link:   #A24829;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", "SF Mono", Consolas, monospace;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.25rem;
  --text-xl:   1.563rem;
  --text-2xl:  1.953rem;
  --text-3xl:  2.441rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --duration-fast: 120ms;
  --duration-base: 180ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

[data-theme="dark"] {
  --ink:       #EDEAE2;
  --ink-soft:  #A8A29A;
  --paper:     #1B1B1C;
  --paper-raised: #242322;
  --line:      #3A3733;

  --clay:  #D9704A;
  --ochre: #E0A94C;
  --teal:  #4C8A85;
  --plum:  #86608A;
  --danger: #C25B5B;
  --link:  #E08A63;
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
