@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&display=swap');

:root {
  --green: #228b22;
  --green-dark: #1a6b1a;
  --green-deep: #0f4a0f;
  --blue: #1e5aa8;
  --blue-dark: #16457f;
  --navy: #1c3d2d;
  --ink: #1c2833;
  --muted: #5c6b73;
  --line: #d5ddd8;
  --paper: #f4f7f4;
  --white: #ffffff;
  --water: #4da6ff;
  --bar-h: 56px;
  --safe: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-x: max(env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  --max: 1140px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: clip;
  padding-left: var(--safe-x);
  padding-right: var(--safe-x);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--green-dark);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--green-dark);
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin: 0 0 0.5rem;
}
h2 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  margin: 0 0 0.6rem;
}
h3 {
  font-size: 1.1rem;
  text-transform: none;
}
p {
  margin: 0 0 0.9rem;
  overflow-wrap: break-word;
}
.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.topbar {
  background: var(--green-deep);
  color: #e8f3ec;
  font-size: 0.82rem;
  padding: 0.35rem 0;
  padding-top: max(0.35rem, var(--safe-t));
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;
}
.topbar a {
  color: #fff;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 4px solid var(--green);
}
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  min-width: 48px;
  min-height: 48px;
  padding: 0.55rem 0.85rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}
.menu-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.menu-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  position: relative;
}
.logo {
  min-width: 0;
  flex: 1 1 auto;
}
.logo img {
  height: clamp(56px, 9vw, 100px);
  width: auto;
  max-width: min(100%, 540px);
  object-fit: contain;
  object-position: left center;
  border-radius: var(--radius-sm);
}
.nav {
  display: flex;
  gap: 0.85rem 1.05rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green);
  text-decoration: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--green);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.2rem;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  min-height: 44px;
  transition: background 0.15s ease;
}
.btn:hover {
  background: var(--green-dark);
}
.btn-green {
  background: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
}
.btn-ghost {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn-outline {
  background: var(--paper);
  color: var(--green-dark) !important;
  border: 1px solid var(--line);
}
.btn-outline:hover {
  background: var(--line);
  color: var(--green-deep) !important;
}
.btn-blue {
  background: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(400px, 68svh);
  color: #fff;
  display: grid;
  align-items: end;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 74, 15, 0.25) 0%, rgba(15, 74, 15, 0.55) 50%, rgba(15, 74, 15, 0.8) 100%);
}
.hero h1,
.hero p.lede,
.hero .kicker,
.hero .crumbs,
.hero .crumbs a {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.2rem;
}
.hero h1 {
  color: #fff;
  max-width: 20ch;
}
.hero p.lede {
  max-width: 50ch;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.kicker {
  color: #90ee90;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.page-hero {
  min-height: min(260px, 44svh);
}
.page-hero h1 {
  max-width: 24ch;
}

.section {
  padding: 2.5rem 0;
}
.section.alt {
  background: var(--paper);
}
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}
.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(34, 139, 34, 0.12);
  transform: translateY(-2px);
}
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.card .pad,
.pad {
  padding: 0.9rem 1rem 1rem;
}
.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.card h3 a {
  color: var(--green-dark);
}
.card h3 a:hover {
  color: var(--green);
  text-decoration: none;
}
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}
.list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}
.cta-band {
  background: var(--green);
  color: #fff;
  padding: 2rem 0;
}
.cta-band h2 {
  color: #fff;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

form.lead {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}
label {
  font-weight: 600;
  font-size: 0.88rem;
}
input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  background: #fff;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.hp {
  position: absolute;
  left: -9999px;
}
.form-status {
  font-weight: 600;
}

.site-footer {
  background: var(--navy);
  color: #d9e2ea;
  padding: 2.4rem 0 1.4rem;
  font-size: 0.92rem;
}
.site-footer a {
  color: #fff;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.4rem;
}
.site-footer h3 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 0.28rem 0;
}
.copy {
  border-top: 1px solid #3d5163;
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  font-size: 0.8rem;
}

.app-bar {
  display: none;
}
.nav-drawer-head,
.menu-backdrop {
  display: none;
}
body.menu-lock {
  overflow: hidden;
}

.crumbs {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.7rem;
}
.crumbs a {
  color: rgba(255, 255, 255, 0.8);
}
.prose {
  max-width: 68ch;
  min-width: 0;
}
.media {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
}
.media img,
img.media {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.logo-mark {
  height: clamp(56px, 12vw, 90px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  margin-bottom: 0.55rem;
  background: #fff;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--green-dark);
  font-family: var(--font-display);
}
.blog-meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

/* Dense service grid (Spring/MSR style) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0.85rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.service-card:hover {
  box-shadow: 0 3px 12px rgba(34, 139, 34, 0.1);
  border-color: var(--green);
}
.service-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.service-card h3 a {
  color: var(--green-dark);
}
.service-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Tablet/phone: slide-out drawer from the right */
@media (max-width: 1080px) {
  .topbar {
    display: none;
  }
  .site-header {
    padding-top: var(--safe-t);
  }
  .menu-btn {
    display: inline-flex;
  }
  .menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(15, 74, 15, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }
  body.menu-lock .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.2rem 0 0.8rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.4rem;
  }
  .nav-drawer-head p {
    margin: 0;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--green-dark);
    text-transform: uppercase;
  }
  .menu-close {
    border: 0;
    background: var(--paper);
    color: var(--navy);
    font: inherit;
    font-weight: 700;
    padding: 0.45rem 0.75rem;
    min-height: 44px;
    border-radius: var(--radius-sm);
    cursor: pointer;
  }
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(22rem, 88vw);
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 1rem 1.1rem calc(1.2rem + var(--bar-h) + var(--safe));
    box-shadow: -12px 0 32px rgba(15, 74, 15, 0.2);
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease, visibility 0.24s;
  }
  .site-header.is-open .nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav a {
    padding: 0.8rem 0.4rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    min-height: 44px;
  }
  .nav a.btn {
    margin-top: 0.9rem;
    border-bottom: 0;
    text-align: center;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .app-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    height: calc(var(--bar-h) + var(--safe));
    padding-bottom: var(--safe);
    background: var(--green-deep);
    border-top: 2px solid var(--green);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    color: #fff;
    overflow: hidden;
  }
  .app-bar a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    gap: 0.12rem;
    min-height: 44px;
  }
  .app-bar a.call {
    background: var(--green);
    border-radius: var(--radius-sm);
    margin: 6px 4px;
  }
  .app-bar svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }
  .site-footer {
    padding-bottom: calc(1.4rem + var(--bar-h) + var(--safe));
  }
  .cta-band .hero-actions .btn {
    flex: 1 1 12rem;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), calc(100% - 1.25rem));
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: min(300px, 64svh);
  }
  .page-hero {
    min-height: min(200px, 38svh);
  }
  .hero .wrap {
    padding: 1.8rem 0 1.5rem;
  }
  .section {
    padding: 1.8rem 0;
  }
  .logo img {
    height: clamp(44px, 16vw, 60px);
    max-width: calc(100vw - 7.5rem);
  }
  .menu-btn {
    padding: 0.5rem 0.7rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn,
  .cta-band .hero-actions .btn {
    width: 100%;
    flex: 1 1 auto;
  }
  .topbar {
    font-size: 0.75rem;
  }
  .card img {
    height: 120px;
  }
}

@media (max-width: 380px) {
  .menu-btn span,
  .menu-btn {
    font-size: 0.85rem;
  }
  .app-bar a {
    font-size: 0.62rem;
  }
}

/* balance-fix 2026-09-23 */
.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0.85rem;
  width: 100%;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1rem;
  width: 100%;
}
.prose {
  max-width: none;
  width: 100%;
}
.hero .wrap {
  max-width: min(var(--max), calc(100% - 2rem));
}
.hero h1 {
  max-width: min(28ch, 100%);
}
.hero p.lede {
  max-width: min(62ch, 100%);
}
