/* Capra Landing Page Theme */
:root {
  --cream: #FAF8F5;
  --cream-dark: #F0EDE6;
  --green-deep: #1A2E1A;
  --green-mid: #2D4A2D;
  --green-light: #3D6B3D;
  --amber: #C9822A;
  --amber-light: #DBA04A;
  --amber-pale: #F5E8D0;
  --charcoal: #1C1C1C;
  --text: #2A2A2A;
  --text-muted: #6B6B6B;
  --border: #E2DDD5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'DM Serif Display', serif; line-height: 1.15; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 760px; }

/* Scroll animations */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Mobile responsive */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  h1 { font-size: 38px !important; }
  h2 { font-size: 30px !important; }
}