/* ============================================================
   FEEL YOUR TALENTS — Design Tokens
   Justyna Nowacka | justynanowacka.pl
   ============================================================ */

:root {
  /* --- Colours --- */
  --color-bg:            #FFFFFF;
  --color-bg-soft:       #FAFAF8;
  --color-bg-accent:     #F5EDE3;
  --color-text:          #1C1C1E;
  --color-text-muted:    #6B6B6B;
  --color-text-light:    #9A9A9A;
  --color-accent:        #C4956A;   /* terrakotowy */
  --color-accent-hover:  #A87850;
  --color-accent-light:  #F5EDE3;
  --color-border:        #E8E0D8;
  --color-border-light:  #F0EBE4;
  --color-white:         #FFFFFF;
  --color-black:         #000000;

  /* --- Typography --- */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-md:   1.125rem;   /* 18px */
  --text-lg:   1.25rem;    /* 20px */
  --text-xl:   1.5rem;     /* 24px */
  --text-2xl:  2rem;       /* 32px */
  --text-3xl:  2.5rem;     /* 40px */
  --text-4xl:  3.25rem;    /* 52px */
  --text-5xl:  4rem;       /* 64px */

  --font-light:   300;
  --font-normal:  400;
  --font-medium:  500;
  --font-semi:    600;
  --font-bold:    700;

  --leading-tight:  1.2;
  --leading-snug:   1.4;
  --leading-normal: 1.6;
  --leading-relaxed:1.75;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide:  0.05em;
  --tracking-wider: 0.1em;

  /* --- Spacing --- */
  --space-1:  0.25rem;   /* 4px  */
  --space-2:  0.5rem;    /* 8px  */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* --- Layout --- */
  --max-width:       1200px;
  --max-width-text:  720px;
  --max-width-narrow:560px;
  --container-px:    var(--space-6);

  /* --- Border radius --- */
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm:  0 1px 3px rgba(28,28,30,0.08);
  --shadow-md:  0 4px 16px rgba(28,28,30,0.1);
  --shadow-lg:  0 12px 40px rgba(28,28,30,0.12);
  --shadow-xl:  0 24px 64px rgba(28,28,30,0.14);

  /* --- Transitions --- */
  --transition:       0.25s ease;
  --transition-slow:  0.4s ease;
  --transition-fast:  0.15s ease;

  /* --- Z-index --- */
  --z-below:   -1;
  --z-base:     0;
  --z-above:    1;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-header:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

  /* --- Nav height --- */
  --nav-height: 72px;

  /* --- Container (aliases used by layout.css) --- */
  --container-max: 1200px;
  --container-pad: var(--space-6);

  /* --- Transition aliases --- */
  --transition-normal: 0.25s ease;
}

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