.site-footer {
  padding: 0;
  color: rgba(255,255,255,.76);
  background: #0b1720;
  border-top: 5px solid var(--red);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr .8fr;
  gap: clamp(3rem, 7vw, 7rem);
  padding-top: 5rem;
  padding-bottom: 4rem;
}
.footer-contact .brand { margin-bottom: 2rem; }
.footer-contact address { white-space: pre-line; margin-bottom: 1.25rem; font-style: normal; color: rgba(255,255,255,.65); }
.footer-contact p { margin-bottom: 1.5rem; }
.footer-contact a:hover, .footer-links a:hover { color: white; }
.footer-socials { display: flex; flex-wrap: wrap; gap: .7rem; }
.footer-socials a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.24); }
.footer-socials a:hover { border-color: var(--red); background: var(--red); }
.social-icon { font-weight: 900; font-size: .85rem; letter-spacing: -.04em; color: white; }
.social-icon-instagram { font-size: 1.35rem; }
.social-icon-what3words { letter-spacing: -.18em; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: .8rem; }
.footer-links h2 { margin: 0 0 1.2rem; color: white; font-size: 1rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.68); border-bottom: 1px solid transparent; }
.footer-statement { display: flex; align-items: flex-start; justify-content: flex-end; }
.footer-statement p { max-width: 240px; margin: 0; color: white; font-size: clamp(1.5rem, 2.5vw, 2.4rem); font-weight: 850; line-height: 1.05; text-align: right; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.4rem; padding-bottom: 1.4rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.52); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.content-page-hero { padding-top: max(180px, calc(84px + 6rem)); }
.content-page-hero h1 { max-width: 950px; }
.content-page-grid { display: grid; grid-template-columns: minmax(0, 820px); justify-content: center; }
.content-page-body { font-size: 1.05rem; }
.content-page-body h2 { margin-top: 3.5rem; font-size: clamp(2rem, 3vw, 3.2rem); }
.content-page-body h3 { margin-top: 2.5rem; }
.content-page-body p, .content-page-body li { color: #465760; }
.content-page-body a { color: var(--blue); text-decoration: underline; text-underline-offset: .18em; }
.content-page-body blockquote { margin: 3rem 0 0; padding: 1.5rem 1.8rem; border-left: 5px solid var(--infrastructure); background: var(--paper-2); }
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-statement { grid-column: 1 / -1; justify-content: flex-start; }
  .footer-statement p { text-align: left; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; padding-top: 3.5rem; }
  .footer-statement { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .content-page-hero { padding-top: 140px; }
}