/* css/tokens.css */
:root {
  /* Colors */
  --color-navy:      #0D2B55;
  --color-navy-10:   rgba(13, 43, 85, 0.10);
  --color-white:     #FFFFFF;
  --color-off-white: #F5F5F3;
  --color-ink:       #1A1A1A;
  --color-muted:     #6B7280;
  --color-border:    #E5E5E5;
  --color-dark:      #111827;

  /* Typography */
  --font-serif: 'Oswald', system-ui, sans-serif;
  --font-sans:  'Lato', system-ui, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  2rem;      /* 32px */
  --text-3xl:  3rem;      /* 48px */
  --text-4xl:  4rem;      /* 64px */
  --text-5xl:  5rem;      /* 80px */

  /* Spacing */
  --space-4:   0.25rem;
  --space-8:   0.5rem;
  --space-12:  0.75rem;
  --space-16:  1rem;
  --space-24:  1.5rem;
  --space-32:  2rem;
  --space-48:  3rem;
  --space-64:  4rem;
  --space-80:  5rem;
  --space-120: 7.5rem;

  /* Grid */
  --max-width: 1280px;
  --gutter:    1.5rem;

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

  /* Brand colors */
  --color-whatsapp: #25D366;

  /* Form states */
  --color-error:          #dc2626;
  --color-success-bg:     #f0fdf4;
  --color-success-border: #bbf7d0;
  --color-success-text:   #166534;

  /* Extended transitions */
  --transition-slow: 400ms ease-out;

  /* Transitions */
  --transition-fast: 150ms ease-out;
  --transition-base: 200ms ease-out;
}

@media (max-width: 768px) {
  :root {
    --gutter: 1rem;
    --nav-height: 86px;
    --space-80: 4rem;
    --space-120: 5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 1rem;
    --nav-height: 78px;
    --space-64: 3rem;
    --space-80: 3.5rem;
    --space-120: 4rem;
  }
}
