/* Design Tokens — Brand colors, typography, spacing, and layout variables */

:root {
  /* ── Colors ───────────────────────────────────────────────── */
  --color-green:   #05a372;  /* Primary CTA */
  --color-blue:    #0a72b9;  /* Secondary CTA / links */
  --color-yellow:  #ebdc7b;  /* Accent — use sparingly */
  --color-mint:    #def3f1;  /* Light section background */
  --color-sky:     #d6e1f4;  /* Alternate light section background */
  --color-white:   #ffffff;
  --color-dark:    #1a1a2e;  /* Body text */

  /* Derived hover states — never substitute for brand colors */
  --color-green-dark: #048a60;
  --color-blue-dark:  #0860a0;

  /* ── Typography ───────────────────────────────────────────── */
  --font-family:        'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold:    700;

  --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:  3rem;      /*  48px */
  --text-5xl:  3.75rem;   /*  60px */
  --text-6xl:  4.5rem;    /*  72px */

  --leading-tight:  1.15;
  --leading-snug:   1.35;
  --leading-normal: 1.6;

  /* ── 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 ───────────────────────────────────────────────── */
  --container-max:     1280px;
  --container-padding: clamp(var(--space-4), 5vw, var(--space-12));
  --nav-height:        84px;

  /* ── Borders ──────────────────────────────────────────────── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* ── Shadows ──────────────────────────────────────────────── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 8px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 20px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 40px rgba(0,0,0,.1),  0 8px 16px rgba(0,0,0,.06);

  /* ── Transitions ──────────────────────────────────────────── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms cubic-bezier(0.22, 1, 0.36, 1);

  /* ── Z-index layers ───────────────────────────────────────── */
  --z-below:   -1;
  --z-base:     0;
  --z-raised:  10;
  --z-nav:    100;
  --z-overlay:200;
  --z-modal:  300;
}
