:root {
  --color-forest: #0A2F1F;
  --color-forest-mid: #0F4A2E;
  --color-forest-light: #1A6B42;
  --color-gold: #C8A951;
  --color-gold-hover: #B8993D;
  --color-gold-light: #F0E4B8;
  
  --color-white: #FFFFFF;
  --color-off-white: #F7F9F7;
  --color-sage-light: #E8F0E8;
  --color-text: #1A1A1A;
  --color-text-muted: #4A5568;
  --color-text-light: #718096;
  
  --color-border: #D4E0D4;
  --color-border-dark: #2A4A38;
  
  --text-display: clamp(3.5rem, 7vw, 6rem);
  --text-hero: clamp(2.5rem, 5vw, 4rem);
  --text-h1: clamp(2rem, 4vw, 3rem);
  --text-h2: clamp(1.5rem, 3vw, 2.25rem);
  --text-h3: clamp(1.2rem, 2vw, 1.5rem);
  --text-h4: 1.125rem;
  
  --text-xl: 1.25rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
  
  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-loose: 1.8;
  
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  --section-padding-y: clamp(4rem, 8vw, 7rem);
  --section-padding-x: clamp(1.5rem, 5vw, 4rem);
  
  --container-max: 1280px;
  --container-wide: 1440px;
  --container-narrow: 800px;
  
  --border-radius: 8px;
}

@import url('https://fonts.bunny.net/css?family=cabinet-grotesk:400,500,600,700,800&display=swap');
@import url('https://fonts.bunny.net/css?family=satoshi:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Satoshi', 'Inter', sans-serif; color: var(--color-text); line-height: var(--leading-normal); }
h1, h2, h3, h4, h5, h6 { font-family: 'Cabinet Grotesk', 'Inter', sans-serif; line-height: var(--leading-tight); font-weight: 800; letter-spacing: -0.02em; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--section-padding-x); }
section { padding: var(--section-padding-y) 0; }
