.navPhone,
.sitePhone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  gap: 6px;
}

.phoneIcon {
  color: #e9a23b;
  font-size: .95em;
  line-height: 1;
}

.phoneLabel {
  font-weight: 600;
}

.navPhone {
  padding: 8px 10px;
  border-bottom: 2px solid #e9a23b;
}

.navPhone:hover,
.sitePhone:hover {
  color: #c97812;
}

.contactAction .sitePhone {
  margin-top: 12px;
  color: #fff;
  font-size: 1.05rem;
}

.footer .sitePhone,
.footlinks .sitePhone,
.legalFooter .sitePhone {
  min-height: 44px;
}

.footerContactGroup {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-block: 5px;
}

.footerContactGroup > a:first-child {
  min-height: 24px;
  display: flex;
  align-items: center;
  color: inherit;
  font-weight: 700;
}

.footerContactGroup .sitePhone {
  justify-content: flex-start;
  min-height: 34px;
}

.footerLegalGroup {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-block: 5px;
}

.footerGroupTitle {
  min-height: 24px;
  display: flex;
  align-items: center;
  color: inherit;
  font-weight: 700;
}

.footerLegalLinks {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.footer > div {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: end;
  align-items: start;
  column-gap: 28px;
  row-gap: 4px;
}

.footer:not(.legalFooter) > div > span:first-child:not(.footerContactGroup) {
  grid-column: 1 / -1;
  justify-self: end;
}

.footlinks {
  display: grid !important;
  grid-template-columns: auto auto;
  align-items: start !important;
  gap: 28px !important;
}

@media (max-width: 900px) {
  .footerContactGroup .sitePhone {
    min-height: 44px;
  }
}

@media (max-width: 620px) {
  .footer > div,
  .footlinks {
    grid-template-columns: 1fr;
    justify-content: start;
    justify-items: start;
    row-gap: 12px !important;
  }

  .footer:not(.legalFooter) > div > span:first-child:not(.footerContactGroup) {
    grid-column: auto;
    justify-self: start;
  }

  .footerLegalLinks {
    min-height: 44px;
  }
}

.contactPage {
  min-height: 60vh;
  padding-block: 80px 100px;
}

.contactPageGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: 64px;
  align-items: start;
}

.contactPage h1 {
  margin: 22px 0 20px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1;
}

.contactPageLead {
  max-width: 680px;
  color: #526577;
  font-size: 1.15rem;
  line-height: 1.75;
}

.contactCard {
  border: 2px solid #0e2a47;
  border-top: 5px solid #e9a23b;
  border-radius: 14px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8, 39, 70, .1);
}

.contactCard h2 {
  margin: 0 0 20px;
  font-size: 1.5rem;
}

.contactCard a {
  color: #0e2a47;
  text-underline-offset: 3px;
}

.contactCard .contactPhone {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-bottom: 14px;
  color: #145b95;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  text-decoration: none;
}

.contactCard .primaryButton {
  margin-top: 24px;
  background: #e9a23b;
  color: #0e2a47;
  border-color: #e9a23b;
}

.contactCard .primaryButton span {
  color: #0e2a47;
}

.contactCard .primaryButton:hover {
  background: #f0c482;
}

.mobileMenu {
  display: none;
}

@media (max-width: 900px) {
  .nav {
    position: relative;
  }

  .navLinks,
  .navlinks {
    display: none !important;
  }

  .mobileMenu {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 100;
  }

  .mobileMenu summary {
    min-width: 92px;
    min-height: 44px;
    border: 1px solid #c8d3dc;
    background: #fff;
    color: #0e2a47;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 13px;
    font-weight: 750;
    list-style: none;
  }

  .mobileMenu summary::-webkit-details-marker {
    display: none;
  }

  .mobileMenu summary b {
    color: #e39a3c;
    font-size: 18px;
    line-height: 1;
  }

  .mobileMenu[open] summary {
    border-color: #e39a3c;
  }

  .mobileMenuPanel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(310px, calc(100vw - 30px));
    border: 1px solid #c8d3dc;
    border-top: 4px solid #e39a3c;
    background: #fff;
    padding: 8px;
    box-shadow: 0 20px 46px rgba(8, 39, 70, .2);
  }

  .mobileMenuPanel a {
    min-height: 46px;
    color: #0e2a47;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 650;
  }

  .mobileMenuPanel a + a {
    border-top: 1px solid #e0e6eb;
  }

  .mobileMenuPanel .mobileMenuPhone {
    color: #145b95;
    gap: 7px;
  }

  .mobileMenuPanel .mobileMenuPhone span {
    color: #e39a3c;
  }

  .mobileMenuPanel .mobileMenuCta {
    background: #e9a23b;
    color: #0e2a47;
    justify-content: center;
    margin-top: 8px;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .journeyGrid {
    grid-template-columns: 1fr !important;
  }

  .journeyGrid article,
  .journeyGrid article:last-child:nth-child(7) {
    grid-column: auto !important;
    min-height: 0;
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .navPhone {
    display: none !important;
  }

  .contactPageGrid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 620px) {
  .contactPage {
    padding-block: 54px 72px;
  }

  .contactCard {
    padding: 24px;
  }
}
