:root {
  /* Colors */
  --color-bg:        #F7F5F0;
  --color-surface:   #FFFFFF;
  --color-surface-2: #F0EDE6;
  --color-border:    #E4E0D8;

  --color-ink:       #18181B;
  --color-ink-2:     #52525B;
  --color-ink-3:     #A1A1AA;

  --color-accent:    #1D4ED8;
  --color-accent-2:  #3B82F6;
  --color-accent-bg: #EFF6FF;
  --color-accent-border: #BFDBFE;

  --color-gold:      #D97706;
  --color-gold-bg:   #FFFBEB;
  --color-gold-border: #FDE68A;

  --color-green:     #16A34A;
  --color-green-bg:  #F0FDF4;
  --color-green-border: #BBF7D0;

  --color-red:       #DC2626;

  /* Typography */
  --font-display: 'Geologica', sans-serif;
  --font-body:    'Manrope', sans-serif;

  /* Font sizes - fluid mobile-first */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   22px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  48px;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

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

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);

  /* Transitions */
  --transition: 0.18s ease;

  /* Container */
  --container-max: 680px;
  --container-pad: 16px;
}

@media (min-width: 480px) {
  :root {
    --container-pad: 24px;
    --text-xl:  32px;
    --text-2xl: 42px;
    --text-3xl: 56px;
  }
}

@media (min-width: 768px) {
  :root {
    --container-pad: 32px;
  }
}
