/* ==========================================================================
   FUNNELVALLEY — Design Tokens
   ========================================================================== */

:root {
  /* ── Colors ──────────────────────────────────────────────────────────── */
  --gold-primary: #cd9f50;
  --gold-accent: #d4af37;
  --gold-light: #e8d5a3;
  --gold-subtle: rgba(205, 159, 80, 0.08);
  --gold-hover: #b8893f;

  --bg: #f7f6f2;
  --bg-alt: #f0efe9;
  --white: #ffffff;
  --dark: #1a1a1a;
  --dark-soft: #222222;

  --text-primary: #2b2b2b;
  --text-secondary: #5a5a5a;
  --text-tertiary: #8a8a8a;
  --text-inverse: #f7f6f2;

  --border: #e5e2dc;
  --border-light: #edebe6;

  /* ── Typography ──────────────────────────────────────────────────────── */
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid type scale */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-md: 1.125rem;     /* 18px */
  --text-lg: 1.25rem;      /* 20px */
  --text-xl: 1.5rem;       /* 24px */
  --text-2xl: 2rem;        /* 32px */
  --text-3xl: 2.5rem;      /* 40px */
  --text-4xl: 3rem;        /* 48px */
  --text-5xl: 3.5rem;      /* 56px */
  --text-hero: clamp(2.5rem, 5vw, 4rem);

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.06em;
  --tracking-widest: 0.12em;

  /* ── Spacing ─────────────────────────────────────────────────────────── */
  --space-xs: 0.25rem;     /* 4px */
  --space-sm: 0.5rem;      /* 8px */
  --space-md: 1rem;        /* 16px */
  --space-lg: 1.5rem;      /* 24px */
  --space-xl: 2rem;        /* 32px */
  --space-2xl: 3rem;       /* 48px */
  --space-3xl: 4rem;       /* 64px */
  --space-4xl: 6rem;       /* 96px */
  --space-5xl: 8rem;       /* 128px */

  --section-padding: clamp(60px, 10vw, 120px);
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  /* ── Shadows ─────────────────────────────────────────────────────────── */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.08);

  /* ── Border Radius ───────────────────────────────────────────────────── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

  /* ── Transitions ─────────────────────────────────────────────────────── */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 250ms var(--ease-out);
  --transition-slow: 400ms var(--ease-in-out);
  --transition-slower: 600ms var(--ease-in-out);

  /* ── Z-index scale ───────────────────────────────────────────────────── */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}
