:root {
  --ink: #1c2b2d;
  --accent: #2f7a6b;
  --bg: #fdfdfb;
  --muted: #5a6b6d;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e3e3e0;
}
.site-header .brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 1.25rem; color: var(--accent); text-decoration: none; }
.site-header .brand img { height: 40px; width: auto; }
.site-header .brand span { display: block; font-size: 0.7rem; font-weight: 400; color: var(--muted); }
.site-header nav a { margin-left: 1rem; color: var(--ink); text-decoration: none; font-size: 0.9rem; }
.site-header nav a:hover { color: var(--accent); }
main { max-width: 780px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.teasers { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin: 2rem 0; }
.teasers article { padding: 1.25rem; border: 1px solid #e3e3e0; border-radius: 8px; }
.testimonial { border-left: 3px solid var(--accent); margin: 1.5rem 0; padding: 0.25rem 1rem; }
.testimonial footer { margin-top: 0.5rem; color: var(--muted); font-size: 0.9rem; }
.cta a {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.site-footer {
  border-top: 1px solid #e3e3e0;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.site-footer a { color: var(--muted); }
main img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; }
