/* ============================================================
   BLACK IRON — Design Tokens
   Caricare PRIMA di Bootstrap e del tema (style.css / custom.css)
   Tema: SOLO LIGHT. Sfondo pagina sempre #FFFFFF.
   ============================================================ */
:root {
  /* Brand tokens */
  --gs-black:       #0A0A0A;
  --gs-white:       #FFFFFF;
  --gs-sand:        #EDE9E3;
  --gs-gray-100:    #F5F5F5;
  --gs-gray-200:    #E8E8E8;
  --gs-gray-400:    #9E9E9E;
  --gs-gray-600:    #5A5A5A;
  --gs-gray-800:    #212121;

  /* Semantic (usati con parsimonia, solo stati) */
  --gs-success:     #2D7A3D;
  --gs-warning:     #B87D1A;
  --gs-error:       #C0392B;
  --gs-info:        #2C6FAC;

  /* Bootstrap overrides via custom properties */
  --bs-primary:             #0A0A0A;
  --bs-primary-rgb:         10, 10, 10;
  --bs-secondary:           #5A5A5A;
  --bs-body-color:          #0A0A0A;
  --bs-body-bg:             #FFFFFF;
  --bs-border-color:        #E8E8E8;
  --bs-border-radius:       0;
  --bs-border-radius-sm:    0;
  --bs-border-radius-lg:    0;
  --bs-border-radius-xl:    0;
  --bs-border-radius-pill:  999px;
  --bs-body-font-family:    'Manrope', 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --bs-body-font-size:      1rem;
  --bs-body-line-height:    1.5;
  --bs-heading-color:       #0A0A0A;

  /* Spacing tokens */
  --gs-space-xs:  4px;
  --gs-space-sm:  8px;
  --gs-space-md:  16px;
  --gs-space-lg:  24px;
  --gs-space-xl:  40px;
  --gs-space-2xl: 64px;
  --gs-space-3xl: 96px;

  /* Motion */
  --gs-ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --gs-dur-fast:  150ms;
  --gs-dur-med:   300ms;
}
