:root {
  --forest: #214235;
  --forest-2: #2f5b49;
  --leaf: #7ca982;
  --mint: #eaf4eb;
  --cream: #fbf7ef;
  --ink: #1f2a25;
  --muted: #607069;
  --white: #ffffff;
  --line: rgba(33, 66, 53, 0.16);
  --shadow: 0 22px 70px rgba(20, 46, 35, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--forest); color: white; padding: 10px 14px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.03em; color: var(--forest); font-size: 1.35rem; }
.brand-logo { width: 42px; height: 42px; border-radius: 12px; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 0.95rem; font-weight: 600; color: var(--forest); }
.nav-cta { background: var(--forest); color: white; padding: 11px 16px; border-radius: 999px; }
.nav-toggle { display: none; border: 0; background: var(--forest); color: white; border-radius: 999px; padding: 10px 16px; font-size: .9rem; font-weight: 800; }
.hero { padding: 84px 0 72px; background:
  radial-gradient(circle at top left, rgba(124, 169, 130, .28), transparent 35%),
  linear-gradient(135deg, var(--cream), #f2eadf);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--forest-2); font-weight: 800; text-transform: uppercase; letter-spacing: 0.11em; font-size: .77rem; }
h1, h2, h3 { line-height: 1.08; margin: 0; color: var(--forest); letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 7vw, 5.9rem); max-width: 760px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.03em; }
.hero-text { font-size: 1.24rem; color: var(--muted); max-width: 660px; margin: 24px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; min-height: 50px; padding: 0 22px; font-weight: 800; border: 1px solid transparent; cursor: pointer; }
.primary { background: var(--forest); color: white; box-shadow: 0 12px 24px rgba(33,66,53,.18); }
.secondary { background: rgba(255,255,255,.65); color: var(--forest); border-color: var(--line); }
.hero-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.mark { width: 64px; height: 64px; border-radius: 20px; background: var(--mint); display: grid; place-items: center; font-size: 1rem; margin-bottom: 24px; font-weight: 800; color: var(--forest); letter-spacing: .06em; }
.hero-card p, .body-copy p, .feature-grid p, .impact p, .contact-card p, .site-footer p { color: var(--muted); }
ul { padding-left: 20px; }
li { margin: 9px 0; }
.section { padding: 82px 0; }
.split-grid, .feature-grid, .impact-grid, .contact-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.body-copy { font-size: 1.08rem; }
.services { background: var(--white); }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { background: var(--cream); border: 1px solid var(--line); border-radius: 22px; padding: 28px; min-height: 220px; }
.icon { width: 54px; height: 54px; border-radius: 18px; background: var(--mint); display: grid; place-items: center; font-size: .86rem; margin-bottom: 26px; font-weight: 800; color: var(--forest); letter-spacing: .08em; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.feature-band { background: var(--forest); color: white; }
.feature-band h2, .feature-band h3, .feature-band .eyebrow { color: white; }
.feature-band p, .feature-band li { color: rgba(255,255,255,.78); }
.checklist { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 30px; }
.text-link { font-weight: 800; color: var(--forest); }
.impact { background: var(--mint); }
.contact-section { background: var(--white); }
.contact-card { background: var(--cream); border: 1px solid var(--line); border-radius: 30px; padding: 42px; box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 16px; }
label { display: grid; gap: 7px; font-weight: 700; color: var(--forest); }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; font: inherit; background: white; color: var(--ink); }
textarea { resize: vertical; }
.site-footer { background: #172c24; color: white; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .9fr; gap: 40px; }
.footer-brand { color: white; margin-bottom: 16px; }
.site-footer h3 { color: white; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { display: block; color: rgba(255,255,255,.75); margin: 8px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 38px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.6); font-size: .9rem; }
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 78px; left: 20px; right: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 14px; }
  .site-nav.open { display: flex; }
  .hero-grid, .split-grid, .feature-grid, .impact-grid, .contact-card, .footer-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .hero { padding: 62px 0; }
  .footer-bottom { flex-direction: column; }
}
.interior-hero {
  min-height: 0;
  padding-top: 8rem;
}

.soft-band {
  background: #f8f4ec;
}
.soft-band h2,
.soft-band h3,
.soft-band .eyebrow {
  color: var(--forest);
}
.soft-band p,
.soft-band li {
  color: var(--muted);
}
.soft-band .checklist {
  background: rgba(33, 66, 53, 0.06);
  border-color: var(--line);
}

.static-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.static-contact p {
  margin: 0;
  color: var(--muted);
}