/* ==========================================================================
   CTX Outdoor Living — Design Tokens
   tokens.css
   ========================================================================== */

:root {
  /* ---- Colors ---- */
  --color-obsidian: #0e0d0c;
  --color-gold: #e3a649;
  --color-gold-dark: #96753b;
  --color-gold-deep: #46421b;
  --color-bg-primary: #f7f4ef;
  --color-bg-section-alt: #1a1815;
  --color-bg-card: #ffffff;
  --color-bg-footer: #0e0d0c;
  --color-text-primary: #0e0d0c;
  --color-text-secondary: #4a4540;
  --color-text-muted: #7a736a;
  --color-text-on-dark: #f7f4ef;
  --color-text-on-dark-muted: #b5a99a;
  --color-accent: #e3a649;
  --color-accent-hover: #96753b;
  --color-border: #e8e2d9;
  --color-border-strong: #c9bfb0;
  --color-gold-hairline: #e3a649;
  --color-focus-ring: #e3a649;
  --color-error: #c0392b;
  --color-success: #2d7a4f;

  /* ---- Typography ---- */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Font Sizes */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.5rem;
  --text-6xl:  4.5rem;

  /* Line Heights */
  --leading-tight:   1.1;
  --leading-snug:    1.3;
  --leading-normal:  1.6;
  --leading-relaxed: 1.75;

  /* Letter Spacing */
  --tracking-tight:   -0.02em;
  --tracking-normal:  0em;
  --tracking-wide:    0.08em;
  --tracking-widest:  0.15em;

  /* ---- Layout ---- */
  --container-max:     1280px;
  --container-narrow:  800px;
  --container-padding: clamp(1.5rem, 5vw, 5rem);

  /* ---- Spacing ---- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---- Border Radius ---- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  /* ---- Motion ---- */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   150ms;
  --duration-normal: 250ms;
  --duration-slow:   400ms;
  --duration-reveal: 600ms;
}
