.brand-mark {
  width: 58px;
  height: 52px;
  object-fit: contain;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.related-services {
  background: #fff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.related-grid a {
  display: grid;
  gap: 12px;
  padding: 30px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  box-shadow: 0 12px 30px rgba(26, 40, 59, .06);
  transition: transform .2s, box-shadow .2s;
}

.related-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(26, 40, 59, .1);
}

.related-grid span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.related-grid strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 26px;
}

.related-grid small {
  color: var(--muted);
  font-size: 14px;
}

.about {
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 58px;
}

.about-photo {
  position: relative;
}

.about-photo::after {
  position: absolute;
  right: -14px;
  bottom: -14px;
  z-index: -1;
  width: 65%;
  height: 65%;
  background: var(--gold);
  content: "";
}

.about-photo img {
  display: block;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: 61% center;
}

.about-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.about-copy aside {
  margin-top: 28px;
}

.growth-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: center;
  padding: 70px clamp(24px, 7vw, 110px);
  color: #fff;
  background: var(--teal);
}

.growth-note h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
}

.growth-note > p {
  margin: 0;
  color: #eefafa;
  font-size: 17px;
}

.locations {
  display: grid;
  gap: 3px;
  padding: 15px 2px 0;
  color: var(--muted);
  font-size: 14px;
}

.locations strong {
  color: var(--navy);
}

@media (max-width: 1000px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about,
  .growth-note { grid-template-columns: 1fr; }
  .about-photo { max-width: 660px; }
}

@media (max-width: 640px) {
  .brand-mark { width: 48px; height: 44px; }
  .service-grid,
  .related-grid { grid-template-columns: 1fr; }
  .about-photo img { min-height: 360px; }
}
