:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --text: #18212f;
  --muted: #657184;
  --line: #e4ded4;
  --brand: #2f5d62;
  --brand-dark: #1e4247;
  --accent: #c79c4f;
  --accent-soft: #f4ead7;
  --shadow: 0 18px 48px rgba(24,33,47,.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, #fffaf0 0, var(--bg) 34%, #eef4f3 100%);
  line-height: 1.65;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246,244,239,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,222,212,.72);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text);
  font-size: 19px;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: var(--shadow);
  font-weight: 900;
  font-size: 13px;
}
.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #263243;
  font-weight: 750;
  font-size: 14px;
}
.nav-links a:hover {
  background: #fff;
  text-decoration: none;
}
.hero {
  padding: 70px 0 42px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  align-items: stretch;
}
.card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(228,222,212,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 42px; }
.side-card { padding: 30px; background: rgba(255,255,255,.78); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #684c18;
  font-weight: 850;
  font-size: 13px;
  margin-bottom: 18px;
}
h1, h2, h3 { line-height: 1.13; letter-spacing: -.035em; margin: 0 0 16px; }
h1 { font-size: clamp(38px, 6vw, 68px); max-width: 880px; }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 23px; }
.lead { font-size: 19px; color: #3f4b5d; max-width: 760px; }
.muted { color: var(--muted); }
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 850;
  border: 1px solid transparent;
}
.button:hover { background: var(--brand-dark); text-decoration: none; }
.button.secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--line);
}
.button.secondary:hover { background: var(--surface-soft); }
.stat-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.stat {
  padding: 15px;
  border-radius: 17px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}
.stat strong { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--brand-dark); }
.section { padding: 42px 0; }
.section-head { max-width: 780px; margin-bottom: 22px; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
}
.tile p { margin-bottom: 0; color: var(--muted); }
.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
}
.list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}
.breadcrumbs {
  padding-top: 26px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a { color: var(--muted); }
.page-main { padding: 34px 0 56px; }
.page-card {
  padding: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.article {
  max-width: 840px;
}
.article p, .article li { color: #425064; }
.article h2 { margin-top: 34px; }
.resource-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.resource-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}
.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: rgba(255,255,255,.45);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items: start;
}
.footer-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.small { font-size: 14px; color: var(--muted); }
@media (max-width: 820px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { justify-content: flex-start; }
  .hero-grid, .grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .hero-card, .side-card, .page-card { padding: 26px; }
  .footer-links { justify-content: flex-start; }
}
