/* Shared footer; isolated from page layouts and the former footer styles. */
.site-footer {
  background: #102e47;
  color: #fff;
  padding: 46px 0 20px;
  font-size: 1rem;
  line-height: 1.6;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.site-footer a:focus-visible {
  outline: 3px solid #f4cc80;
  outline-offset: 4px;
  border-radius: 2px;
}
.site-footer p {
  max-width: none;
  margin: 0;
}
.site-footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 1fr;
  gap: clamp(30px, 4vw, 58px);
  padding-bottom: 34px;
  align-items: start;
}
.site-footer-main > * {
  min-width: 0;
}
.site-footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  gap: 9px;
  padding-block: 3px;
  margin-bottom: 20px;
}
.site-footer-brand:hover {
  text-decoration: none !important;
}
.site-footer-wordmark {
  font: 400 1.75rem/1.1 var(--serif);
  letter-spacing: 0.17em;
  white-space: nowrap;
}
.site-footer-brand-detail {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #c6d8e5;
}
.site-footer .site-footer-role {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #c6d8e5;
  max-width: 34ch;
}
.site-footer-phone {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding-block: 9px;
  margin-top: 18px;
}
.site-footer-phone > span {
  font-size: 0.875rem;
  color: #c6d8e5;
}
.site-footer-phone > strong {
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
.site-footer-phone > strong > span {
  display: inline-block;
  margin-left: 8px;
}
.site-footer-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* Override the site's large editorial H2 treatment inside this utility area. */
body .site-footer h2 {
  font: 600 0.875rem/1.5 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #c6d8e5;
}
.site-footer-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer-navigation li {
  margin: 0;
  padding: 0;
}
.site-footer-navigation a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-block: 9px;
  font-size: 1rem;
  line-height: 1.5;
}
.site-footer-office-details > p {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.site-footer-office address {
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.7;
  color: #c6d8e5;
  max-width: 29ch;
}
.site-footer-profile {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding-block: 9px;
  margin-top: 9px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.site-footer-profile > span {
  flex: none;
}
.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 23px;
  margin-top: 9px;
}
.site-footer-social a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  padding-block: 9px;
  font-size: 0.875rem;
}
.site-footer-record {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  padding-block: 24px;
  border-top: 1px solid #496174;
}
.site-footer-record strong,
.site-footer-record span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.7;
}
.site-footer-record strong {
  font-weight: 500;
  margin-bottom: 4px;
}
.site-footer-record span {
  color: #c6d8e5;
}
.site-footer-disclosure {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 23px;
}
.site-footer-disclosure > p {
  font-size: 0.875rem;
  color: #c6d8e5;
  line-height: 1.7;
  max-width: 93ch;
}
.site-footer-disclosure > .site-footer-housing {
  color: white;
  max-width: 19ch;
  flex-shrink: 0;
}
.site-footer-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 30px;
  border-top: 1px solid #496174;
  padding-top: 12px;
}
.site-footer-utility > p {
  font-size: 0.875rem;
  color: #c6d8e5;
}
.site-footer-utility nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 25px;
}
.site-footer-utility a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 9px;
  font-size: 0.875rem;
}
@media (max-width: 1100px) {
  .site-footer-main {
    grid-template-columns: 1fr 1.25fr;
    gap: 32px 50px;
  }
  .site-footer-office {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 0 50px;
    align-items: start;
    padding-top: 23px;
    border-top: 1px solid #496174;
  }
  .site-footer-office h2 {
    grid-column: 1;
  }
  .site-footer-office-details {
    grid-column: 1;
  }
  .site-footer-office address {
    max-width: 38ch;
  }
  .site-footer-social {
    grid-column: 2;
    grid-row: 1/3;
    margin-top: 0;
  }
  .site-footer-phone > strong {
    font-size: 1.5rem;
  }
  .site-footer-utility {
    align-items: start;
  }
  .site-footer-utility nav {
    justify-content: end;
  }
}
@media (max-width: 700px) {
  .site-footer {
    padding-block: 34px 18px;
  }
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-bottom: 25px;
  }
  .site-footer-brand {
    margin-bottom: 16px;
  }
  .site-footer-wordmark {
    font-size: 1.75rem;
  }
  .site-footer .site-footer-role {
    max-width: 45ch;
  }
  .site-footer-phone {
    margin-top: 14px;
  }
  .site-footer-phone > strong {
    font-size: 1.55rem;
  }
  .site-footer-navigation {
    gap: 22px;
    padding-top: 26px;
    border-top: 1px solid #496174;
  }
  body .site-footer h2 {
    margin-bottom: 10px;
  }
  .site-footer-office {
    display: block;
    padding-top: 26px;
  }
  .site-footer-social {
    margin-top: 7px;
  }
  .site-footer-record {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 23px;
  }
  .site-footer-disclosure {
    display: block;
    padding-bottom: 22px;
  }
  .site-footer-disclosure > .site-footer-housing {
    margin-top: 17px;
    max-width: none;
  }
  .site-footer-utility {
    flex-direction: column;
    align-items: start;
    gap: 8px;
    padding-top: 20px;
  }
  .site-footer-utility nav {
    justify-content: start;
    gap: 0 22px;
  }
}
@media print {
  .site-footer {
    display: none;
  }
}
