/* CSS Variables - Soft Ash Theme */

:root {
  /* Base */
  --bg: #EDEAE5;
  --bg-alt: #E6E2DC;
  --bg-card: #F0EDE8;
  --bg-card-hover: #F5F2EE;

  /* Text */
  --text: #1A1714;
  --text-muted: #6B6560;
  --text-faint: #A09890;

  /* Accent — copper/bronze */
  --accent: #A0522D;
  --accent-light: rgba(160,82,45,0.09);
  --accent-dark: #7D3F20;
  --accent-glow: rgba(160,82,45,0.12);

  /* Category colors */
  --green: #3A6B4A;
  --green-light: rgba(58,107,74,0.1);
  --blue: #2F5373;
  --blue-light: rgba(47,83,115,0.1);
  --amber: #A0522D;
  --amber-light: rgba(160,82,45,0.1);
  --teal: #0F766E;
  --teal-light: rgba(15,118,110,0.1);

  /* Borders */
  --border: rgba(26,23,20,0.08);
  --border-hover: rgba(160,82,45,0.25);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,23,20,0.06), 0 1px 2px rgba(26,23,20,0.04);
  --shadow-md: 0 4px 16px rgba(26,23,20,0.08), 0 2px 6px rgba(26,23,20,0.05);
  --shadow-lg: 0 16px 48px rgba(26,23,20,0.10), 0 4px 12px rgba(26,23,20,0.06);
  --shadow-xl: 0 32px 64px rgba(26,23,20,0.12);
  --glow-gold: 0 0 30px rgba(160,82,45,0.1);

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  /* Layout */
  --section-pad: 120px;
  --container-max: 1100px;
  --navbar-height: 72px;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

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

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.3s;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-padding: 1.5rem;
}
