/* ==========================================================================
   VIJAY GLOBAL EXPORTS — Design Tokens
   ========================================================================== */

:root {
  /* ---- Color: Brand ---- */
  --color-blue-deep:      #1A6FA8;   /* primary brand blue */
  --color-blue-dark:      #0F4C75;   /* headers, depth, footer */
  --color-blue-light:     #5FA8D3;   /* tints, hovers */
  --color-orange:         #F47920;   /* primary accent — spice heat */
  --color-orange-dark:    #D9620F;   /* hover states */
  --color-gold:           #D4A24C;   /* premium accent, sparingly */

  /* ---- Color: Neutrals (light theme) ---- */
  --color-cream:          #FBF9F4;   /* page background — warm, not stark white */
  --color-cream-deep:     #F3EEE3;   /* section alternation */
  --color-white:          #FFFFFF;
  --color-ink:            #1C2B33;   /* primary text */
  --color-ink-soft:       #4A5A63;   /* secondary text */
  --color-line:           #E2DCCB;   /* hairline borders */

  /* ---- Typography ---- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-h1: clamp(2.4rem, 1.4rem + 4.2vw, 4.6rem);
  --fs-h2: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
  --fs-h3: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem);
  --fs-lead: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  --fs-body: clamp(0.98rem, 0.93rem + 0.15vw, 1.08rem);
  --fs-small: 0.85rem;
  --fs-eyebrow: 0.78rem;

  /* ---- Spacing scale ---- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.85rem;
  --space-sm:  1.25rem;
  --space-md:  2rem;
  --space-lg:  3.25rem;
  --space-xl:  5.5rem;
  --space-2xl: 8rem;

  /* ---- Layout ---- */
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 1rem + 2vw, 3.5rem);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.55s;
  --dur-slow: 0.9s;

  /* ---- Shadow ---- */
  --shadow-sm: 0 2px 10px rgba(15, 76, 117, 0.07);
  --shadow-md: 0 12px 32px rgba(15, 76, 117, 0.12);
  --shadow-lg: 0 24px 64px rgba(15, 76, 117, 0.16);
  --shadow-orange: 0 14px 32px rgba(244, 121, 32, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}