:root {
  --forest: #173f32;
  --pine: #0f2c23;
  --grass: #77a44a;
  --sand: #f5f1e7;
  --paper: #fffdf7;
  --ink: #1e2b26;
  --muted: #5e6b65;
  --line: #d9dfd7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; color: white; background: var(--forest); border-radius: 50%; }
.header-call { font-weight: 750; color: var(--forest); text-underline-offset: 5px; }
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 86px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 58px;
  align-items: center;
}
.hero h1 { max-width: 800px; margin: 10px 0 22px; font-family: Georgia, serif; font-size: clamp(3rem, 7vw, 6.4rem); line-height: .96; letter-spacing: -.055em; color: var(--pine); }
.eyebrow { margin: 0; color: var(--grass); font-size: .79rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.lede { max-width: 690px; font-size: 1.17rem; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 14px; }
.button { display: inline-flex; min-height: 50px; padding: 13px 20px; align-items: center; justify-content: center; border-radius: 8px; font-weight: 800; text-decoration: none; }
.primary { color: white; background: var(--forest); }
.secondary { color: var(--forest); border: 2px solid var(--forest); }
.button:hover { transform: translateY(-1px); }
.microcopy { font-size: .85rem; color: var(--muted); }
.service-card { padding: 32px; color: white; background: var(--forest); border-radius: 10px; box-shadow: 16px 16px 0 var(--grass); }
.service-card h2 { margin: 6px 0 20px; font-family: Georgia, serif; font-size: 2rem; }
.card-label { margin: 0; color: #c9dfb4; font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-card ul { padding-left: 20px; margin: 0; }
.service-card li + li { margin-top: 9px; }
.section { padding: 82px max(28px, calc((100vw - 1124px) / 2)); }
.section h2 { margin: 8px 0 28px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; color: var(--pine); }
.steps { background: var(--sand); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-grid article { padding-top: 22px; border-top: 1px solid #c8cfbf; }
.step-grid span { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: white; background: var(--forest); font-weight: 800; }
.step-grid h3 { margin: 16px 0 6px; font-size: 1.14rem; }
.step-grid p { margin: 0; color: var(--muted); }
.local { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.local h2 { margin-bottom: 0; }
.local > p { font-size: 1.08rem; color: var(--muted); }
.contact { text-align: center; color: white; background: var(--pine); }
.contact h2 { color: white; }
.contact > p:not(.eyebrow) { max-width: 720px; margin: 0 auto; color: #d2ddd8; }
.centered { justify-content: center; }
.light { color: var(--pine); background: white; }
.outline { color: white; border: 2px solid rgba(255,255,255,.65); overflow-wrap: anywhere; }
.privacy { padding-top: 56px; padding-bottom: 56px; }
.privacy h2 { font-size: 1.5rem; margin-bottom: 10px; }
.privacy p { max-width: 900px; color: var(--muted); font-size: .94rem; }
footer { padding: 34px max(28px, calc((100vw - 1124px) / 2)); display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: center; color: #dce8e2; background: #091d17; font-size: .84rem; }
footer p { margin: 0; }
footer a { text-underline-offset: 4px; }

@media (max-width: 800px) {
  .site-header { padding: 15px 20px; }
  .brand span:last-child { max-width: 180px; line-height: 1.2; }
  .header-call { font-size: .88rem; }
  .hero { padding: 52px 22px 70px; grid-template-columns: 1fr; gap: 42px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .service-card { margin-right: 12px; }
  .section { padding: 64px 22px; }
  .step-grid, .local { grid-template-columns: 1fr; gap: 28px; }
  .actions .button { width: 100%; }
  footer { grid-template-columns: 1fr; gap: 14px; }
}
