:root {
  --ink: #16211f;
  --muted: #5c6763;
  --line: #dfe7e2;
  --paper: #ffffff;
  --soft: #f5f8f2;
  --green: #1d6d4b;
  --green-dark: #124832;
  --amber: #d99a22;
  --teal: #0f766e;
  --shadow: 0 18px 55px rgba(15, 35, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  color: #eef8f2;
  background: var(--green-dark);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 242px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 242px;
  max-width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.site-nav {
  flex: 1;
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
}

.site-menu a {
  display: block;
  padding: 12px 0;
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.header-call,
.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-secondary {
  color: var(--green-dark);
  background: #fff;
  border-color: var(--line);
}

.btn-light {
  color: var(--green-dark);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 72, 50, 0.9), rgba(18, 72, 50, 0.55) 52%, rgba(18, 72, 50, 0.18)),
    var(--hero-image) center / cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.12;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 34px;
}

.hero-text {
  max-width: 660px;
  margin: 0 0 28px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-panel {
  margin-bottom: 70px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-panel span {
  color: var(--muted);
  font-weight: 700;
}

.quick-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--green-dark);
  font-size: 28px;
}

.service-band,
.content-section {
  padding: 72px 0;
}

.service-band {
  background: var(--soft);
}

.section-head {
  max-width: 700px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 45, 33, 0.06);
}

.service-card span {
  display: block;
  width: 42px;
  height: 6px;
  margin-bottom: 22px;
  background: var(--teal);
  border-radius: 8px;
}

.service-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.service-card p,
.trust-section p,
.prose p,
.side-cta p,
.site-footer p {
  color: var(--muted);
}

.trust-section {
  padding: 72px 0;
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border-left: 5px solid var(--amber);
  background: var(--soft);
  border-radius: 8px;
  font-weight: 700;
}

.page-hero {
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(120deg, var(--green-dark), #175f65);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.prose {
  font-size: 18px;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 28px;
}

.prose a {
  color: var(--green);
  font-weight: 800;
}

.side-cta {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.side-cta strong {
  font-size: 22px;
}

.cta-strip {
  padding: 44px 0;
  color: #fff;
  background: var(--green-dark);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner p {
  margin: 0;
  color: #dfeee5;
}

.site-footer {
  padding: 48px 0 92px;
  color: #eaf4ee;
  background: #101917;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-grid p {
  color: #b8c7c0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  gap: 10px;
}

.sticky-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.archive-list {
  display: grid;
  gap: 18px;
}

.archive-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .nav-row {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 58px);
  }

  .brand-logo {
    width: 190px;
    max-height: 54px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-menu {
    display: grid;
    gap: 4px;
    justify-content: stretch;
  }

  .site-menu a {
    padding: 12px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .trust-grid,
  .page-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 68px 0 22px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .quick-panel {
    margin-bottom: 44px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .side-cta {
    position: static;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-actions {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .sticky-actions a {
    flex: 1;
    justify-content: center;
  }
}
