/* === DESIGN TOKENS - Skotte.co Dark Espresso Theme === */
:root {
  /* Colors — Dark Espresso */
  --bg: #1A1612;
  --bg-alt: #231E19;
  --bg-dark: #0F0D0A;
  --bg-dark-alt: #141210;
  --text: #F2EDE8;
  --text-light: #A89E94;
  --text-on-dark: #F2EDE8;
  --text-on-dark-muted: rgba(242, 237, 232, 0.6);
  --accent: #C4A265;
  --accent-hover: #D4B275;
  --accent-light: rgba(196, 162, 101, 0.1);
  --accent-glow: rgba(196, 162, 101, 0.15);
  --success: #2E8B57;
  --danger: #C4653A;
  --border: rgba(242, 237, 232, 0.08);
  --border-dark: rgba(242, 237, 232, 0.15);
  --overlay: rgba(15, 13, 10, 0.7);
  --overlay-heavy: rgba(15, 13, 10, 0.9);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale */
  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;
  --text-6xl: 4rem;
  --text-7xl: 5rem;

  /* Line Heights */
  --leading-tight: 1.08;
  --leading-snug: 1.2;
  --leading-normal: 1.7;
  --leading-relaxed: 1.8;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-editorial: 0.2em;

  /* Font Weights */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* 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;

  /* Containers */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --content-padding: 5%;

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

  /* Shadows — subtle for light theme */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 4px 20px rgba(196, 162, 101, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition-fast: 150ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base: 300ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 600ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Section Padding */
  --section-padding: clamp(4rem, 8vw, 8rem);

  /* Z-Index */
  --z-behind: -1;
  --z-base: 0;
  --z-above: 1;
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;

  /* Layout */
  --header-height: 72px;
}
