:root {
  color-scheme: light;
  --brand-gray: #5a6770;
  --brand-orange: #ef8400;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--brand-gray);
  background: #fff;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 280px; }
.page { margin: 0 5%; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
.masthead { display: flex; justify-content: flex-start; padding-top: clamp(32px, 4vw, 64px); }
.logo {
  position: relative;
  overflow: hidden;
  width: 20vw;
  aspect-ratio: 1930 / 372;
}
/* Frame the supplied logo's ink, preserving the original image file. */
.logo img {
  position: absolute;
  display: block;
  width: 112.53886%;
  height: auto;
  max-width: none;
  left: -5.80311%;
  top: -47.31183%;
}
.divider {
  flex-shrink: 0;
  height: 9px;
  border: 0;
  border-radius: 5px;
  margin: clamp(28px, 3vw, 44px) 0 22px;
  background: var(--brand-gray);
}
.projects {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(1.2rem, 1.74vw, 1.575rem);
  line-height: 1.5;
}
.projects li { display: flex; align-items: center; white-space: nowrap; }
.projects li + li::before { content: "|"; margin: 0 clamp(12px, 1.4vw, 24px); color: var(--brand-gray); }
.projects a, .projects span { padding: 10px 0; }
.projects a { color: inherit; text-decoration: none; text-underline-offset: 5px; }
.projects a:hover { color: #b95f00; text-decoration: underline; }
.projects a:focus-visible { outline: 2px solid var(--brand-orange); outline-offset: 5px; border-radius: 1px; }
.headquarters { flex: 1; display: flex; align-items: center; justify-content: center; padding: 32px 0; }
.headquarters figure { width: min(100%, 640px); margin: 0; text-align: center; }
.headquarters img { display: block; width: 100%; height: auto; }
.headquarters figcaption { margin-top: 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.125rem, 1.6vw, 1.375rem); line-height: 1.45; }
.footer { margin-top: auto; padding: 24px 0 32px; font-size: 0.875rem; line-height: 1.7; text-align: left; }
.footer-divider { width: 100%; height: 4.5px; margin: 0 0 18px; }
.footer p { margin: 0; }
.footer-copy { display: inline-block; max-width: 100%; }
.footer-intro { font-size: 0.9625rem; }
.footer .locations { width: 0; min-width: 100%; margin-top: 6px; white-space: nowrap; }
@media (max-width: 720px) {
  .page { margin: 0 7%; }
  .logo { width: 42vw; max-width: 235px; }
  .divider { height: 8px; margin-top: 30px; margin-bottom: 18px; }
  .projects { display: grid; grid-template-columns: 1fr 1fr; font-size: 1.2rem; }
  .projects li { justify-content: flex-start; }
  .projects li + li::before { content: none; }
  .projects li:nth-child(even) { border-left: 1px solid var(--brand-gray); padding-left: 16px; }
  .projects a, .projects span { padding: 12px 0; }
  .footer-divider { height: 4px; margin: 0 0 18px; }
  .footer .locations { white-space: normal; text-wrap: pretty; }
}
@media (max-width: 380px) {
  .projects { grid-template-columns: 1fr; }
  .projects li:nth-child(even) { border-left: none; padding-left: 0; }
}
