.company {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 7vw;
  align-items: center;
  padding: 110px 0 12px;
}

.company-photo {
  position: relative;
  aspect-ratio: 4 / 3;
}

.company-photo::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--orange);
  pointer-events: none;
}

.company-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.02);
}

.company-copy h2 {
  margin: 0 0 27px;
  font-size: clamp(35px, 4.2vw, 59px);
  line-height: 1.02;
}

.company-copy h2 span {
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 400;
}

.company-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 15px;
  color: var(--ink-soft);
  font-size: 15px;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.company-facts div { display: flex; flex-direction: column; }
.company-facts strong { font-size: 21px; }
.company-facts span {
  margin-top: 5px;
  color: var(--ink-soft);
  font: 9px var(--mono);
  text-transform: uppercase;
}

.footer-inner { grid-template-columns: auto 1fr minmax(330px, auto); }
.footer-meta { align-items: center; }
.footer-meta span { white-space: nowrap; }

@media (max-width: 980px) {
  .footer-inner { grid-template-columns: auto 1fr; }
  .footer-meta { grid-column: 1 / -1; justify-content: space-between; }
}

@media (max-width: 850px) {
  .company { grid-template-columns: 1fr; gap: 42px; padding: 78px 0 0; }
  .company-photo { order: 2; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-meta { grid-column: auto; align-items: flex-start; gap: 14px; }
  .footer-meta span { white-space: normal; }
}

@media (max-width: 520px) {
  .company-facts { gap: 8px; }
  .company-facts strong { font-size: 18px; }
}
