:root {
  --ink: #17362f;
  --muted: #5f706b;
  --paper: #f8faf7;
  --white: #ffffff;
  --accent: #e5a93d;
  --accent-dark: #bd7f13;
  --soft: #e9f1ed;
  --line: #d6e0db;
  --max: 1120px;
}

* { 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(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248,250,247,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font-size: .82rem; }
nav { display: flex; gap: 24px; }
nav a { text-decoration: none; font-weight: 650; font-size: .95rem; }
.hero { padding: 92px 0 80px; background: radial-gradient(circle at top right, #eef6e7 0, transparent 42%), linear-gradient(180deg, #fbfcf8 0%, #f3f7f2 100%); }
.hero-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 64px; align-items: center; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; font-weight: 800; color: var(--accent-dark); }
h1, h2, h3 { line-height: 1.13; letter-spacing: -.035em; }
h1 { margin: 0; max-width: 760px; font-size: clamp(2.7rem, 6vw, 5.2rem); }
h2 { margin: 0 0 24px; font-size: clamp(2rem, 3.6vw, 3.25rem); }
h3 { margin: 0 0 12px; font-size: 1.3rem; }
.lead { max-width: 720px; font-size: 1.2rem; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-block; padding: 12px 18px; border-radius: 999px; font-weight: 800; text-decoration: none; }
.primary { background: var(--ink); color: var(--white); }
.secondary { border: 1px solid var(--ink); }
.hero-card, .card, .contact-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 18px 50px rgba(23,54,47,.07); }
.hero-card { padding: 30px; }
.hero-card h2 { font-size: 1.35rem; margin-bottom: 16px; }
.hero-card ul { padding-left: 20px; margin: 0; }
.section { padding: 88px 0; }
.alt { background: var(--soft); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.card { padding: 28px; }
.card p, .split p, .contact-section p { color: var(--muted); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.contact-section { background: var(--ink); color: var(--white); }
.contact-section .eyebrow { color: #f1c56d; }
.contact-section p { color: #d7e0dc; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: start; }
.contact-card { padding: 28px; color: var(--ink); }
.contact-card p { color: var(--muted); margin: 7px 0; }
.small { font-size: .86rem; }
footer { padding: 26px 0; background: #102923; color: #d7e0dc; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; }
.footer-wrap p { margin: 0; }
@media (max-width: 800px) {
  nav { display: none; }
  .hero { padding-top: 64px; }
  .hero-grid, .cards, .split, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 66px 0; }
  .footer-wrap { flex-direction: column; }
}
