/* ==========================================================================
   All Special Landscaping — Design Tokens
   Brand-driven custom properties. Imported by index.html and thank-you.html.
   ========================================================================== */

:root {
  /* ---- Brand palette ---- */
  --evergreen: #141B15;   /* Primary Dark   */
  --cream: #F7F4EC;       /* Background     */
  --terracotta: #DF6E31;  /* Primary Accent */
  --sungold: #FDC310;     /* Secondary      */
  --aqua: #02B4C3;        /* Fresh Accent   */
  --lawn: #039331;        /* Nature Green   */
  --field: #639B31;       /* Field Green    */
  --lime: #B5C93A;        /* Lime Highlight */

  /* ---- Brand gradient (CTA buttons, stat numbers, avatars only) ---- */
  --grad: linear-gradient(120deg, var(--lawn) 0%, var(--aqua) 50%, var(--terracotta) 100%);

  /* ---- Surfaces ---- */
  --bg: var(--cream);
  --surface: #FFFFFF;
  --surface-2: #FBF9F3;
  --border: #E4DECF;
  --border-strong: #D2CAB4;

  /* ---- Text ---- */
  --text: var(--evergreen);
  --text-muted: #4C544A;
  --text-subtle: #79806F;

  /* ---- Shadows ---- */
  --shadow-md: 0 4px 14px rgba(20, 27, 21, 0.08);
  --shadow-lg: 0 14px 36px rgba(20, 27, 21, 0.12);
  --shadow-xl: 0 28px 70px rgba(20, 27, 21, 0.18);

  /* ---- Radii ---- */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* ---- Easing ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
