:root {
  --black: #0a0a0a;
  --cream: #f5f0e8;
  --green: #3d6b4f;
  --gray: #aaaaaa;
  --gray-dark: #444444;
  --border: #2a2a2a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Lora', serif;
  --font-ui: system-ui, -apple-system, sans-serif;
  --nav-height: 72px;
  --nav-height-scrolled: 52px;
  --max-width: 1160px;
  --section-pad: 88px 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.anim-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--green);
  margin-bottom: 8px;
}

.accent-line {
  width: 48px;
  height: 2px;
  background: var(--green);
}
