/* ============================================================
   DESIGN TOKENS — přímo mapovatelné na Figma Variables
   Upravuj POUZE zde, vše ostatní se přizpůsobí automaticky.
   ============================================================ */

:root {
  /* === BARVY === */
  --color-primary:        #bedda6;
  --color-primary-dark:   #8cb87a;
  --color-primary-light:  #d8edca;
  --color-accent:         #e8c4a0;
  --color-accent-dark:    #c99b72;
  --color-accent-light:   #f5e0cc;

  --color-surface:        #faf8f5;
  --color-surface-2:      #f0ebe3;
  --color-surface-3:      #e8e0d6;

  --color-text:           #2d2d2d;
  --color-text-muted:     #7a7068;
  --color-text-light:     #a89f94;

  --color-white:          #ffffff;
  --color-border:         #e2d9ce;

  /* === TYPOGRAFIE === */
  --font-display:         'Cormorant Garamond', Georgia, serif;
  --font-body:            'DM Sans', system-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.375rem;  /* 22px */
  --text-xl:   1.75rem;   /* 28px */
  --text-2xl:  2.25rem;   /* 36px */
  --text-3xl:  3rem;      /* 48px */
  --text-4xl:  4rem;      /* 64px */

  --weight-regular: 400;
  --weight-medium:  500;
  --weight-semibold:600;
  --weight-bold:    700;

  --leading-tight:  1.2;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  /* === MEZERY === */
  --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;
  --space-24: 6rem;
  --space-32: 8rem;

  /* === LAYOUT === */
  --container-max:  1100px;
  --container-pad:  clamp(1rem, 5vw, 2.5rem);
  --section-gap:    clamp(4rem, 8vw, 7rem);

  /* === BORDER RADIUS === */
  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* === STÍNY === */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);

  /* === PŘECHODY === */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-spring: 350ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === NAV === */
  --nav-height: 70px;
}
