:root {
  --gw-shell-green: #5e9f3a;
  --gw-shell-green-deep: #4a7d2c;
  --gw-shell-ink: #1c1b18;
  --gw-shell-bg: #f7f4ed;
  --gw-shell-line: rgba(17, 17, 17, .12);
}
.gw-shell-header {
  --gw-shell-green: #5e9f3a;
  --gw-shell-green-deep: #4a7d2c;
  --gw-shell-ink: #1c1b18;
  --gw-shell-bg: #f7f4ed;
  --gw-shell-line: rgba(17, 17, 17, .12);
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 86px;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  color: #fff;
  font-family: Manrope, Arial, sans-serif;
  transition: background-color .3s ease, border-color .3s ease, padding .3s ease, color .3s ease;
}
.gw-shell-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(17, 17, 17, .54), transparent);
  transition: opacity .3s ease;
}
.gw-shell-header.is-scrolled {
  min-height: 72px;
  padding: 14px 0;
  border-color: var(--gw-shell-line);
  background: rgba(248, 246, 241, .94);
  color: var(--gw-shell-ink);
  backdrop-filter: saturate(140%) blur(12px);
}
.gw-shell-header.is-scrolled::before { opacity: 0; }
.gw-shell-header *, .gw-footer-v2 * { box-sizing: border-box; }
.gw-shell-header a, .gw-footer-v2 a { color: inherit; text-decoration: none; }
.gw-shell-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}
.gw-shell-brand { display: flex; flex: 0 0 auto; align-items: center; }
.gw-shell-brand img { display: block; width: auto; height: 42px; object-fit: contain; }
.gw-shell-nav { display: flex; flex: 1; align-items: center; justify-content: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.gw-shell-nav > li { position: relative; margin: 0; padding: 0; }
.gw-shell-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, .94);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease;
}
.gw-shell-header.is-scrolled .gw-shell-nav > li > a { color: var(--gw-shell-ink); }
.gw-shell-nav > li > a:hover, .gw-shell-nav > li > a[aria-current="page"] { color: #cfe7b4; }
.gw-shell-header.is-scrolled .gw-shell-nav > li > a:hover,
.gw-shell-header.is-scrolled .gw-shell-nav > li > a[aria-current="page"] { color: var(--gw-shell-green-deep); }
.gw-shell-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.gw-shell-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--gw-shell-line);
  background: #fbfaf6;
  box-shadow: 0 24px 60px -28px rgba(17, 17, 17, .35);
  color: var(--gw-shell-ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.gw-shell-has-drop:hover .gw-shell-dropdown,
.gw-shell-has-drop:focus-within .gw-shell-dropdown { opacity: 1; visibility: visible; transform: translateY(6px); }
.gw-shell-dropdown a { display: block; padding: 11px 15px; color: var(--gw-shell-ink); font-size: 14px; font-weight: 600; line-height: 1.25; }
.gw-shell-dropdown a:hover { background: #eef3e7; color: var(--gw-shell-green-deep); }
.gw-shell-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 18px; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.24); }
.gw-shell-header.is-scrolled .gw-shell-actions { border-left-color: var(--gw-shell-line); }
.gw-shell-project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 24px;
  background: var(--gw-shell-green);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.gw-shell-project-button:hover { background: var(--gw-shell-green-deep); }
.gw-shell-menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: inherit; }
.gw-shell-menu-toggle span { display: block; width: 24px; height: 1.5px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.gw-shell-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
.gw-shell-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gw-shell-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }
.gw-shell-mobile-menu { display: none; }
.gw-shell-sentinel { position: absolute; top: 86px; left: 0; width: 1px; height: 1px; pointer-events: none; }

.gw-footer-v2 {
  --gwf-bg: #0e1210;
  --gwf-green: #86c437;
  --gwf-white: #f5f6f2;
  --gwf-muted: #aeb4af;
  --gwf-line: rgba(255,255,255,.15);
  margin: 0;
  background: var(--gwf-bg);
  color: var(--gwf-white);
  font-family: Arial, Helvetica, sans-serif;
}
.gw-footer-v2 .gwf-shell { width: min(1640px, calc(100% - 120px)); margin: auto; }
.gw-footer-v2 .gwf-action { display: grid; grid-template-columns: minmax(460px,1.15fr) minmax(360px,.8fr) auto; gap: 72px; align-items: center; padding: 54px 0; border-bottom: 1px solid var(--gwf-line); }
.gw-footer-v2 .gwf-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; color: var(--gwf-green); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.gw-footer-v2 .gwf-kicker::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.gw-footer-v2 .gwf-action h2 { max-width: 620px; margin: 0; color: var(--gwf-white); font-family: Georgia, "Times New Roman", serif; font-size: 46px; font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.gw-footer-v2 .gwf-action p { max-width: 470px; margin: 0; color: var(--gwf-muted); font-size: 15px; line-height: 1.65; }
.gw-footer-v2 .gwf-action-button { display: flex; align-items: center; justify-content: space-between; gap: 54px; min-width: 300px; padding: 23px 26px; background: #4f8f37; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.gw-footer-v2 .gwf-action-button:hover { background: #3f792c; }
.gw-footer-v2 .gwf-action-button span:last-child { font-size: 20px; font-weight: 400; }
.gw-footer-v2 .gwf-directory { display: grid; grid-template-columns: 1.35fr repeat(4,.68fr); gap: 54px; align-items: start; padding: 44px 0 40px; }
.gw-footer-v2 .gwf-wordmark { display: block; width: max-content; line-height: .78; text-transform: uppercase; }
.gw-footer-v2 .gwf-wordmark strong { font-size: 50px; letter-spacing: -.07em; }
.gw-footer-v2 .gwf-wordmark strong span { color: var(--gwf-green); }
.gw-footer-v2 .gwf-wordmark small { display: block; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: .36em; text-align: center; }
.gw-footer-v2 .gwf-brand p { max-width: 340px; margin: 28px 0 20px; color: var(--gwf-muted); font-size: 13px; line-height: 1.6; }
.gw-footer-v2 .gwf-social { display: flex; flex-wrap: wrap; gap: 18px; color: #dfe3df; font-size: 11px; }
.gw-footer-v2 .gwf-social a { padding-bottom: 3px; border-bottom: 1px solid transparent; }
.gw-footer-v2 .gwf-social a:hover { border-color: var(--gwf-green); }
.gw-footer-v2 .gwf-col h3 { height: 16px; margin: 3px 0 18px; color: var(--gwf-green); font-size: 11px; line-height: 16px; letter-spacing: .16em; text-transform: uppercase; }
.gw-footer-v2 .gwf-col nav { display: grid; grid-auto-rows: 26px; gap: 0; color: #d5d9d5; font-size: 12px; }
.gw-footer-v2 .gwf-col nav > a { display: flex; align-items: center; min-width: 0; line-height: 1.25; }
.gw-footer-v2 .gwf-col a:hover { color: #fff; }
.gw-footer-v2 .gwf-contact a { display: grid !important; grid-template-columns: 18px 70px minmax(0,1fr); column-gap: 8px; align-items: center; height: 26px; padding: 0; border: 0; }
.gw-footer-v2 .gwf-contact-icon { display: grid; place-items: center; width: 16px; height: 16px; border: 1px solid var(--gwf-green); border-radius: 50%; color: var(--gwf-green); font-size: 8px; font-weight: 700; line-height: 1; }
.gw-footer-v2 .gwf-contact-label { color: #8e968f; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.gw-footer-v2 .gwf-contact b { font-size: 10px; font-weight: 400; line-height: 1.2; overflow-wrap: anywhere; }
.gw-footer-v2 .gwf-legal { display: flex; justify-content: space-between; align-items: center; padding: 21px 0 24px; border-top: 1px solid var(--gwf-line); color: #8f9690; font-size: 10px; }
.gw-footer-v2 .gwf-legal nav { display: flex; gap: 24px; }
.wa-float { position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(clamp(170px, 20vh, 230px), env(safe-area-inset-bottom)); z-index: 900; display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.wa-float .wa-icon { position: relative; display: block; width: 58px; height: 58px; border-radius: 0; background: transparent; box-shadow: none; }
.wa-float .wa-icon img { display: block; width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 1050px) {
  .gw-shell-nav { gap: 0; }
  .gw-shell-nav > li > a { padding-inline: 9px; font-size: 13px; }
  .gw-shell-project-button { padding-inline: 17px; }
}
/* Keep the static product shell on the same breakpoint and mobile-menu
   treatment as the WordPress pages.  The product routes are static HTML,
   but customers should experience one navigation system across the site. */
@media (max-width: 1180px) {
  .gw-shell-header { min-height: 70px; padding: 13px 0; }
  .gw-shell-nav-inner { width: calc(100% - 36px); }
  .gw-shell-brand img { height: 40px; }
  .gw-shell-nav, .gw-shell-project-button { display: none; }
  .gw-shell-actions { margin-left: auto; padding-left: 0; border: 0; }
  .gw-shell-menu-toggle { display: block; }
  .gw-shell-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    padding: 112px clamp(20px, 5vw, 72px) 40px;
    overflow-y: auto;
    background: var(--gw-shell-bg);
    color: var(--gw-shell-ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: opacity .2s ease, visibility .2s ease, transform .5s ease;
  }
  .gw-shell-mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
  .gw-shell-mobile-menu > a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--gw-shell-line);
    color: var(--gw-shell-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 4vw, 36px);
    line-height: 1.2;
  }
  .gw-shell-mobile-menu .gw-shell-mobile-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    padding: 8px 0 8px 18px;
    border-bottom: 1px solid var(--gw-shell-line);
  }
  .gw-shell-mobile-menu .gw-shell-mobile-sub a {
    display: block;
    padding: 0;
    border: 0;
    color: #66675f;
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
  }
  .gw-shell-mobile-menu .gw-shell-mobile-cta {
    margin-top: 28px;
    border: 0;
    background: var(--gw-shell-green);
    color: #fff;
    font-family: Manrope, Arial, sans-serif;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
  }
  .gw-footer-v2 .gwf-shell { width: calc(100% - 36px); }
  .gw-footer-v2 .gwf-action { grid-template-columns: 1fr; gap: 22px; padding: 38px 0; }
  .gw-footer-v2 .gwf-action h2 { max-width: 340px; font-size: 37px; }
  .gw-footer-v2 .gwf-action p { font-size: 14px; }
  .gw-footer-v2 .gwf-action-button { width: 100%; min-width: 0; padding: 20px 21px; }
  .gw-footer-v2 .gwf-directory { grid-template-columns: 1fr 1fr; gap: 34px 24px; padding: 36px 0; }
  .gw-footer-v2 .gwf-brand { grid-column: 1 / -1; padding-bottom: 28px; border-bottom: 1px solid var(--gwf-line); }
  .gw-footer-v2 .gwf-wordmark strong { font-size: 44px; }
  .gw-footer-v2 .gwf-contact { grid-column: 1 / -1; padding-top: 3px; }
  .gw-footer-v2 .gwf-contact nav { grid-template-columns: 1fr; }
  .gw-footer-v2 .gwf-contact a { grid-template-columns: 18px 76px minmax(0,1fr); }
  .gw-footer-v2 .gwf-legal { display: grid; gap: 13px; line-height: 1.5; }
  .gw-footer-v2 .gwf-legal nav { gap: 18px; }
  .wa-float { right: max(14px, env(safe-area-inset-right)); bottom: max(clamp(160px, 20vh, 190px), env(safe-area-inset-bottom)); }
  .wa-float .wa-icon { width: 48px; height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  .gw-shell-header, .gw-shell-dropdown, .gw-shell-mobile-menu, .gw-shell-menu-toggle span { transition: none; }
}
