:root {
  --z-bg: #f7f6f2;
  --z-surface: #ffffff;
  --z-text: #1f2a1f;
  --z-muted: #5c6b5c;
  --z-primary: #2f6b3a;
  --z-primary-hover: #24522d;
  --z-accent: #c4a35a;
  --z-border: #e2e6e2;
  --z-radius: 12px;
  --z-font: "Outfit", system-ui, -apple-system, sans-serif;
  --z-space-1: 0.5rem;
  --z-space-2: 1rem;
  --z-space-3: 1.5rem;
  --z-space-4: 2.5rem;
}

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

body {
  font-family: var(--z-font);
  background-color: var(--z-bg);
  color: var(--z-text);
  line-height: 1.6;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: var(--z-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--z-primary-hover);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--z-space-2);
}
