/* ─── Design Tokens ─── */
:root {
  --clr-primary:   #1e4d34;
  --clr-accent:    #c89a2f;
  --clr-bg:        #f3ece1;
  --clr-bg-card:   #fbf6ec;
  --clr-cream:     #f5ecd9;
  --clr-text:      #1f1f1f;
  --clr-muted:     #6c6a64;
  --radius-card:   14px;
  --radius-btn:    4px;
  --ease:          0.2s ease;
  --shadow-gold:   0 8px 22px rgba(200, 154, 47, 0.38);
  --shadow-green:  0 5px 16px rgba(30, 77, 52, 0.28);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: 'Montserrat', system-ui, sans-serif;
}
a   { text-decoration: none; }
img { display: block; }
p   { margin: 0; }

/* ─── Page wrapper ─── */
.site-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
