.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .015em;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: #ff7518;
}

.header-hours {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  white-space: nowrap;
}

.social-links {
  gap: 8px;
}

.social-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: rgba(255, 255, 255, .88);
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: #fff;
  border-color: #ff7518;
  background: #ff7518;
  transform: translateY(-1px);
}

.lead-direct-call {
  margin-top: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.lead-direct-call a {
  display: inline-block;
  margin-left: 5px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #ff7518;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 600px) {
  .topbar-inner {
    justify-content: center;
  }

  .header-contact {
    width: 100%;
    justify-content: center;
  }

  .header-hours,
  .topbar .social-links {
    display: none;
  }

  .header-phone {
    padding: 3px 0;
    font-size: 16px;
  }
}
