/* 1‑file baseline: gray/white palette + Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

:root {
  --fg: #222;
  --bg: #fafafa;
  --accent: #6d8060; /* muted earthy green */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }
header { text-align: center; padding: 3rem 1rem; }
.logo { width: 72px; height: auto; margin-bottom: 1rem; }
.tagline { opacity: .7; }
nav { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
nav a { text-decoration: none; color: var(--fg); font-weight: 600; }
.hero { text-align: center; padding: 4rem 1rem; }
.btn { display: inline-block; margin-top: 1.5rem; padding: .75rem 1.5rem; background: var(--accent); color: #fff; border-radius: 4px; text-decoration: none; }
footer { text-align: center; padding: 2rem 1rem; font-size: .9rem; opacity: .7; }