:root {
  --navy: #0F1B2D;
  --muted: #6B6457;
  --orange: #F26A1F;
  --cream: #FBF7F0;
  --paper: #F4EEE2;
  --line: #E6DECD;
}

body .site-footer {
  display: none;
}

.pphc-footer {
  color: var(--navy);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.pphc-footer-inner {
  width: min(calc(100% - 44px), 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, .7fr) minmax(220px, .8fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 6vw, 72px) 0 34px;
}

.pphc-footer img {
  width: min(260px, 100%);
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.pphc-footer p,
.pphc-footer address {
  margin: 0 0 14px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--orange);
  font-weight: 900;
  text-decoration: none !important;
}

.pphc-footer-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.pphc-footer-nav a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.pphc-footer-contact strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
}

.pphc-footer-bottom {
  width: min(calc(100% - 44px), 1180px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 820px) {
  .pphc-footer-inner {
    grid-template-columns: 1fr;
  }
  .pphc-footer-bottom {
    display: grid;
  }
}
