:root{
  --bg: #fbfaf7;
  --alt: #f1efe7;
  --text: #1f2a24;
  --muted: #5a6a60;
  --card: #ffffff;
  --border: #e2ded2;
  --accent: #2f6b4f;
  --accent2: #a36b2a;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 18px;
  --container: 1060px;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 18px; }

.site-header{
  position: sticky;
  top: 0;
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width: 42px; height: 42px;
  display:grid; place-items:center;
  background: var(--alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 20px;
}
.brand-name{ font-weight: 800; letter-spacing: .3px; }
.brand-tagline{ color: var(--muted); font-size: 12.5px; }

.nav{ display:flex; gap: 14px; }
.nav-link{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
}
.nav-link:hover{
  border-color: var(--border);
  background: #fff;
  color: var(--text);
}

.hero{ padding: 42px 0 28px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 22px;
  align-items: start;
}
h1{ font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin: 0 0 12px; }
.lead{ font-size: 18px; color: var(--muted); margin: 0 0 18px; }

.cta-row{ display:flex; gap:12px; flex-wrap: wrap; margin: 10px 0 16px; }
.btn{
  display:inline-block;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
}
.btn:hover{ filter: brightness(.96); }
.btn-ghost{
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}

.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; }
.badge{
  font-size: 12.5px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 10px;
  border-radius: 999px;
}

.section{ padding: 24px 0 40px; }
.section.alt{ background: var(--alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
h2{ margin: 0 0 14px; font-size: 24px; }
h3{ margin: 0 0 8px; font-size: 18px; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-card .card-title{ margin: 0 0 6px; }
.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

.list{ padding-left: 18px; margin: 12px 0 0; }

.tile{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display:block;
}
.tile:hover{ transform: translateY(-1px); transition: transform .15s ease; }
.tile-icon{ font-size: 26px; }
.tile-title{ font-weight: 800; margin-top: 8px; }
.tile-text{ color: var(--muted); margin-top: 4px; font-size: 14px; }

.site-footer{
  padding: 26px 0;
  border-top: 1px solid var(--border);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-brand{ font-weight: 800; }

@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .nav{ gap: 8px; }
}
