:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 1.125rem;
  --line-height-base: 1.6;

  --max-w: 1200px;
  --space-x: 2rem;
  --space-y: 1.25rem;
  --gap: 1rem;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-sm: 4px;

  --shadow-sm: 0 2px 4px rgba(94, 60, 40, 0.1);
  --shadow-md: 0 4px 8px rgba(94, 60, 40, 0.15);
  --shadow-lg: 0 8px 16px rgba(94, 60, 40, 0.2);

  --overlay: rgba(94, 60, 40, 0.7);
  --anim-duration: 300ms;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 2;

  --brand: #8B4513;
  --brand-contrast: #F5E9DE;
  --accent: #D2691E;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F5F2;
  --neutral-300: #D7CCC8;
  --neutral-600: #8D6E63;
  --neutral-800: #5E3C28;
  --neutral-900: #3E2723;

  --bg-page: #FDFCFB;
  --fg-on-page: #3E2723;

  --bg-alt: #F5F0EB;
  --fg-on-alt: #5E3C28;

  --surface-1: #FFFFFF;
  --surface-2: #F8F5F2;
  --fg-on-surface: #3E2723;
  --border-on-surface: #D7CCC8;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #5E3C28;
  --border-on-surface-light: #E8DFD9;

  --bg-primary: #8B4513;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #72380F;
  --ring: #D2691E;

  --bg-accent: #F5E9DE;
  --fg-on-accent: #5E3C28;
  --bg-accent-hover: #B35917;

  --link: #8B4513;
  --link-hover: #5E3C28;

  --gradient-hero: linear-gradient(135deg, #F5E9DE 0%, #D7CCC8 100%);
  --gradient-accent: linear-gradient(90deg, #8B4513 0%, #D2691E 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}