:root {
  --plum: #714B67;
  --plum-dark: #55374F;
  --teal: #017E84;
  --amber: #F2BB62;
  --text: #111827;
  --muted: #374151;
  --bg: #F9F9F9;
  --line: #E5E7EB;
  --plum-wash: #F3EDF1;
}
* { box-sizing: border-box; }
html { font-size: 18px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
a { color: var(--plum); }
.container { width: min(1080px, calc(100% - 40px)); margin-inline: auto; }
header.site, footer.site { background: var(--plum); color: #fff; }
header.site a, footer.site a { color: #fff; }
.site-bar, .footer-bar {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 16px; padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 7px; background: var(--amber);
}
nav ul { display: flex; flex-wrap: wrap; gap: 8px 18px; list-style: none; margin: 0; padding: 0; }
nav a { text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.hero { padding: 56px 0 40px; }
h1 { font-size: 2.4rem; line-height: 1.15; margin: 0 0 12px; }
h2 { font-size: 1.55rem; line-height: 1.25; margin: 0 0 12px; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 12px 24px; border-radius: 4px;
  background: var(--plum); color: #fff; text-decoration: none; font-weight: 600;
}
.btn-soft { background: var(--plum-wash); color: var(--plum); }
section { padding: 40px 0; }
section.soft { background: var(--bg); }
.grid { display: grid; gap: 16px; }
.grid.c3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  display: block; padding: 20px; border: 1px solid var(--line); border-radius: 8px;
  text-decoration: none; color: inherit; background: #fff;
}
.card strong { display: block; margin-bottom: 6px; }
.small, .muted { color: var(--muted); font-size: 0.9375rem; }
footer.site { margin-top: 48px; }
footer .legal { padding: 12px 0 28px; font-size: 0.875rem; color: #e5d6e0; }
@media (max-width: 900px) {
  .grid.c3 { grid-template-columns: 1fr; }
  h1 { font-size: 1.85rem; }
  header.site { position: static; }
}
