:root {
  --bg: #faf8f5;
  --surface: #fff;
  --text: #2a2420;
  --text-muted: #6b655e;
  --accent: #c4704a;
  --border: #e8e2d8;
  --max: 960px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.01em;
}
nav { display: flex; gap: 1.5rem; }
nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
}
nav a:hover { color: var(--accent); }

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 2rem;
}

.hero {
  text-align: center;
  padding: 2rem 0 3rem;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
h2 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--accent);
}
.lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

a { color: var(--accent); }
a:hover { text-decoration: underline; }

footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}
