/* =========================================================
   F.O.R.E. Design Tokens
   Fostering Opportunity, Resiliency & Empowerment
   Brand colors, typography, spacing, radii, shadows.
   Do not add page-specific rules to this file.
   ========================================================= */

:root {
  /* --- Brand colors --- */
  --color-green: #0B5A2A;        /* FORE Green - primary anchor, ~50-60% usage */
  --color-green-dark: #233129;   /* Charcoal Green - body text */
  --color-pink: #F23886;         /* Empowerment Pink - primary CTA color */
  --color-orange: #FF6A1A;       /* Opportunity Orange - accent only */
  --color-blush: #FCE8EF;        /* Soft Blush - supporting surface */
  --color-cream: #FFF9F3;        /* Warm Cream - primary surface */
  --color-sage: #A6C78B;         /* Fairway Sage - supporting */
  --color-white: #FFFFFF;

  /* --- Functional colors --- */
  --color-border: #DCE7DF;
  --color-error: #B42318;
  --color-success: #157347;

  /* --- Typography --- */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-script: "Caveat", cursive; /* Accent script - short emotional phrases ONLY, never body/nav/forms */

  --text-xs: 0.78rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: clamp(1.1rem, 1vw + 0.8rem, 1.25rem);
  --text-xl: clamp(1.5rem, 2vw + 1rem, 2.1rem);
  --text-2xl: clamp(2rem, 3vw + 1rem, 3.4rem);
  --text-hero: clamp(2.7rem, 6vw, 5.8rem);

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

  /* --- Radii --- */
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;

  /* --- Shadows --- */
  --shadow-soft: 0 14px 40px rgba(35, 49, 41, 0.10);
  --shadow-lift: 0 22px 50px rgba(35, 49, 41, 0.16);

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-base: 220ms;
  --duration-reveal: 600ms;

  /* --- Layout --- */
  --container: 1180px;

  /* --- Breakpoints (reference only, used in @media comments) ---
     sm: 480px
     md: 768px
     nav-collapse: 900px
     lg: 1024px
     xl: 1440px
  */
}
