:root {
  --primary-50: #e6f7f0;
  --primary-500: #00a35c;
  --primary-700: #00703e;
  --accent-500: #d4941f;
  --accent-600: #b67d1a;
  --neutral-50: #f8f7f5;
  --neutral-700: #545145;
  --neutral-900: #1e1f1d;
  --surface-light: #fefdfb;
  --surface-cream: #f8f7f5;
  --font-display: 'Playfair Display', georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.65rem + 1.125vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.95rem + 1.5vw, 3rem);
  --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
  --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;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --shadow-sm: 0 1px 3px 0 rgb(30 31 29 / 10%);
  --shadow-md: 0 4px 6px -1px rgb(30 31 29 / 10%);
  --shadow-lg: 0 10px 15px -3px rgb(30 31 29 / 10%);
  --shadow-xl: 0 20px 25px -5px rgb(30 31 29 / 10%);
  --shadow-primary: 0 4px 14px 0 rgb(0 163 92 / 20%);
  --shadow-accent: 0 4px 14px 0 rgb(212 148 31 / 20%);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 500;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--neutral-900);
  background: var(--surface-cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--primary-50);
  color: var(--neutral-900);
}

:focus-visible {
  outline: 3px solid var(--primary-500);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
