/* Company metrics: four columns on desktop, two on smaller screens. */
.facts-bar .facts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.facts-bar .fact {
  gap: 16px;
}
@media (max-width: 1199px) {
  .facts-bar .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }
  .facts-bar .fact:nth-child(2n) { border-right: 0; }
}

/* Left-cropped architectural panorama fading horizontally into a white surface. */
#about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  min-height: 680px;
  padding-block: 80px;
  background: #fff;
  color: #071f3b;
}
#about .about-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
#about .about-backdrop > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crop the empty sky on the left without enlarging the building. */
  object-position: calc(0px - clamp(180px, 16vw, 320px)) center;
}
#about .about-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 25%,
    rgba(255,255,255,.62) 43%,
    rgba(255,255,255,.96) 57%,
    #fff 76%);
}
#about .about-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
#about .about-copy { grid-column: 2; max-width: 530px; }
#about .eyebrow { color: #126bb8; font-size: 11px; letter-spacing: .18em; }
#about .about-copy .section-title {
  margin-top: 20px;
  color: #071f3b;
  font-size: clamp(34px, 2.9vw, 44px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .01em;
}
#about .section-title span { display: block; }
#about .about-copy p { margin: 20px 0; color: #52667b; font-size: 16px; line-height: 1.9; text-wrap: pretty; }
#about .about-tags {
  margin: 28px 0 18px;
  padding-top: 22px;
  border-top: 1px solid #d7e4ed;
  gap: 12px 28px;
}
#about .about-tags span { color: #23435f; border-left-color: #1778be; font-size: 13px; }
#about .text-link {
  color: #126bb8;
  border-bottom-color: #b7d5ec;
  padding-block: 10px;
  gap: 36px;
  transition: color .2s, border-color .2s;
}
#about .text-link:hover { color: #071f3b; border-bottom-color: #071f3b; }
#about .text-link:focus-visible { outline: 2px solid #126bb8; outline-offset: 6px; }
@media (max-width: 1023px) {
  #about .about-grid { grid-template-columns: .65fr 1fr; gap: 36px; }
  #about .about-backdrop > img { object-position: -240px center; }
  #about .about-backdrop::after {
    background: linear-gradient(90deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,.42) 24%,
      rgba(255,255,255,.94) 46%,
      #fff 78%);
  }
}
@media (max-width: 767px) {
  #about { min-height: 0; padding-block: 64px; }
  #about .about-grid { grid-template-columns: 1fr; gap: 0; }
  #about .about-copy { grid-column: 1; }
  #about .about-copy .section-title { font-size: clamp(28px, 7.7vw, 38px); }
  #about .about-tags { gap: 12px 24px; }
  #about .about-backdrop > img { object-position: -230px center; }
  #about .about-backdrop::after {
    background: linear-gradient(90deg,
      rgba(255,255,255,.85) 0%,
      rgba(255,255,255,.93) 48%,
      rgba(255,255,255,.99) 100%);
  }
}
