/* ============================================================
   Teledolar · Design Tokens
   Brand colors extracted from the original site assets.
   ============================================================ */

:root {
  /* Brand palette */
  --color-green:        #a4c73e; /* primary brand (logo) */
  --color-green-dark:   #8aae2c;
  --color-green-darker: #6f8f21;
  --color-green-soft:   #eef5d8;

  --color-navy:         #3a4f73; /* InstaMonis primary */
  --color-navy-dark:    #2b3c59;
  --color-orange:       #ed7422; /* InstaMonis accent */

  /* Neutrals */
  --color-ink:          #1f2733; /* main text */
  --color-ink-soft:     #55606e;
  --color-muted:        #8a94a1;
  --color-line:         #e6e9ee;
  --color-bg:           #ffffff;
  --color-bg-alt:       #f6f8fb;
  --color-footer:       #1e2a3a; /* dark footer background */
  --color-footer-ink:   #c7d0db;

  /* Typography */
  --font-base: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --fs-xs:   0.8rem;
  --fs-sm:   0.9rem;
  --fs-base: 1rem;
  --fs-md:   1.15rem;
  --fs-lg:   1.4rem;
  --fs-xl:   2rem;
  --fs-2xl:  2.6rem;
  --fs-3xl:  3.2rem;

  --lh-tight: 1.15;
  --lh-base:  1.65;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* UI */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(31, 39, 51, 0.06);
  --shadow:    0 10px 30px rgba(31, 39, 51, 0.10);
  --shadow-lg: 0 20px 50px rgba(31, 39, 51, 0.16);

  --container: 1200px;
  --header-h: 84px;

  --transition: 0.25s ease;
}
