:root {
  --teal: #485030;
  --teal-dark: #31371f;
  --teal-light: #edefe3;
  --ink: #26291c;
  --muted: #64685a;
  --bg: #ffffff;
  --bg-soft: #f7f8f3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
}

img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.topbar {
  background: var(--teal-dark);
  color: #ffffff;
  font-size: 14px;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar a { color: #ffffff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

header.site {
  background: #ffffff;
  border-bottom: 1px solid #e6e8dd;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand { text-decoration: none; display: flex; align-items: center; }
.brand img.logo { height: 66px; width: auto; }
.brand .name {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.5px;
}
.brand .tag {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
nav.main { display: flex; gap: 6px; flex-wrap: wrap; }
nav.main a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
}
nav.main a:hover { background: var(--teal-light); color: var(--teal-dark); }
nav.main a.active { background: var(--teal); color: #ffffff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 30%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 32, 16, 0.78) 0%, rgba(28, 32, 16, 0.15) 55%, rgba(0,0,0,0) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px;
  color: #ffffff;
  width: 100%;
}
.hero-content h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.2;
  font-weight: 700;
}
.hero-content p.sub {
  font-size: clamp(17px, 2.5vw, 22px);
  margin-top: 10px;
  color: #e0e2d3;
}
.hero-content .creds {
  font-size: 14px;
  margin-top: 14px;
  color: #c8ccb4;
  letter-spacing: 0.4px;
}

/* Page banner (service pages) */
.banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 32, 16, 0.8) 0%, rgba(28, 32, 16, 0.1) 60%);
}
.banner .hero-content { padding: 36px 20px; }

/* ---------- Sections ---------- */
section { padding: 56px 20px; }
.wrap { max-width: 1080px; margin: 0 auto; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }

h2 {
  color: var(--teal-dark);
  font-size: 28px;
  margin-bottom: 18px;
  line-height: 1.3;
}
h3 {
  color: var(--teal);
  font-size: 20px;
  margin: 26px 0 10px;
}
p + p { margin-top: 14px; }
.soft { background: var(--bg-soft); }

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}
.two-col img { border-radius: 12px; }
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Service cards on home */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.card {
  background: #ffffff;
  border: 1px solid #e6e8dd;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(50, 56, 26, 0.14); }
.card .thumb { height: 170px; background-size: cover; background-position: center; }
.card .body { padding: 18px 20px 22px; }
.card .body strong { color: var(--teal-dark); font-size: 18px; display: block; margin-bottom: 6px; }
.card .body span { font-size: 14.5px; color: var(--muted); }

/* Checklist */
ul.checklist { list-style: none; margin-top: 12px; }
ul.checklist li {
  padding: 7px 0 7px 32px;
  position: relative;
}
ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.cta {
  background: var(--teal);
  color: #ffffff;
  text-align: center;
}
.cta h2 { color: #ffffff; }
.cta p { color: #e0e2d3; max-width: 560px; margin: 0 auto; }
.cta .buttons { margin-top: 26px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.btn-light { background: #ffffff; color: var(--teal-dark); }
.btn-light:hover { background: #eff1e6; }
.btn-outline { border: 2px solid #ffffff; color: #ffffff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-teal { background: var(--teal); color: #ffffff; }
.btn-teal:hover { background: var(--teal-dark); }

/* ---------- Footer ---------- */
footer {
  background: var(--teal-dark);
  color: #d8dbc9;
  padding: 44px 20px 28px;
  font-size: 14.5px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: start;
}
footer .f-title { color: #ffffff; font-weight: 700; font-size: 16px; margin-bottom: 10px; }
footer a { color: #c3c9a3; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .acpat { display: flex; align-items: center; gap: 14px; }
footer .acpat img { width: 74px; border-radius: 8px; background: #ffffff; padding: 4px; }
.footnote {
  max-width: 1080px;
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: #a6ab8e;
  text-align: center;
}

/* ---------- Mobile refinements ---------- */
@media (max-width: 640px) {
  header.site { position: static; }
  .topbar {
    padding: 7px 12px;
    gap: 4px 18px;
    font-size: 13px;
  }
  .header-inner {
    padding: 10px 14px 8px;
    justify-content: center;
  }
  .brand img.logo { height: 52px; }
  nav.main {
    width: 100%;
    justify-content: center;
    gap: 0;
  }
  nav.main a {
    font-size: 13.5px;
    padding: 7px 9px;
  }
  .hero { min-height: 400px; }
  .hero-content { padding: 32px 16px; }
  .banner { min-height: 240px; }
  section { padding: 40px 16px; }
  h2 { font-size: 24px; }
  .cta .buttons { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; }
  footer .acpat { flex-direction: row; }
}

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid #e6e8dd;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #ffffff;
}
.faq summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 16px;
  list-style-position: inside;
}
.faq summary:hover { background: var(--bg-soft); border-radius: 10px; }
.faq details[open] summary { border-bottom: 1px solid #e6e8dd; }
.faq details p {
  padding: 12px 18px 16px;
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Areas covered strip ---------- */
footer .areas {
  max-width: 1080px;
  margin: 26px auto 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #a6ab8e;
}
