:root {
  --bg: #f4f2ed;
  --ink: #171817;
  --muted: #69655d;
  --line: #ddd5c9;
  --surface: #fffefa;
  --teal: #0b6f66;
  --coral: #c64f3d;
  --blue: #315d9e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

a { color: inherit; }

.site-header,
.page-shell,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #fff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
}

.hero {
  padding: 72px 0 54px;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  font-weight: 850;
  color: var(--teal);
}

.band {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.band h2 {
  max-width: 720px;
  margin: 0 0 24px;
  font-size: 32px;
  letter-spacing: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--surface);
}

.grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: 0;
}

.grid p,
.content p,
.content li {
  color: var(--muted);
  line-height: 1.65;
}

.content {
  max-width: 780px;
}

.content h2 {
  margin-top: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p { margin-bottom: 0; }

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; padding: 18px 0; }
  .site-nav { gap: 12px; }
  .site-nav > a:not(.button) { display: none; }
  .hero { padding-top: 50px; }
  h1 { font-size: 42px; }
  .grid { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
}
