.brand {
  display: flex;
  align-items: center;
  color: #06633f;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.11em;
}

@media (max-width: 560px) {
  .brand {
    font-size: 23px;
  }
}

.business-info {
  max-width: 760px;
}

.business-info p {
  margin: 3px 0;
}

.business-info b {
  color: #394640;
  margin-right: 4px;
}

.business-info span {
  margin: 0 6px;
  color: #a7b0ac;
}

.header-cta,
.button,
.submit-button,
.feature-grid article,
.project-card,
.process-grid article {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}

.header-cta:hover,
.button:hover,
.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7, 63, 50, .18);
  background: #0b5b47;
}

.button.ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .8);
  box-shadow: none;
}

.feature-grid article:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 63, 50, .26);
  box-shadow: 0 18px 38px rgba(10, 43, 35, .12);
}

.process-grid article:hover {
  background: #f8fbfa;
  transform: translateY(-3px);
}

.site-header nav a {
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #0b5b47;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
}
