
:root {
  --cream: #F4F2EE;
  --teal: #2F6F6A;
  --ink: #1C1B19;
  --muted: #6B6862;
  --white: #fff;
  --foot: #ECE9E2;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--teal); letter-spacing: 3px; font-weight: 650; font-size: 15px; text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
nav { display: flex; gap: 28px; }
nav a { color: var(--muted); font-weight: 500; font-size: 14px; text-decoration: none; }
nav a:hover { color: var(--teal); }
.hero { padding: 48px 0 64px; }
.kicker { color: var(--teal); font-weight: 500; font-size: 14px; letter-spacing: 1px; margin: 0 0 12px; }
h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; margin: 0 0 16px; font-weight: 650; }
.lede { font-size: 20px; color: var(--muted); max-width: 640px; line-height: 1.5; margin: 0 0 24px; }
.row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-block; background: var(--teal); color: #fff;
  border-radius: 999px; padding: 14px 22px; font-weight: 650; font-size: 14px;
  text-decoration: none;
}
.btn:hover { text-decoration: none; opacity: .92; }
.section { padding: 0 0 72px; }
.section h2 { font-size: 32px; margin: 8px 0 24px; font-weight: 650; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--white); border-radius: 16px; padding: 24px; }
.card .bar { width: 28px; height: 3px; background: var(--teal); border-radius: 2px; margin-bottom: 10px; }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
article { max-width: 720px; padding: 40px 0 80px; }
article h2 { font-size: 18px; margin: 28px 0 8px; }
article p { color: var(--muted); font-size: 15px; line-height: 1.6; }
footer {
  background: var(--foot);
  padding: 28px 0 36px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted);
}
footer nav { gap: 20px; }
@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
